@membranehq/sdk 0.22.3 → 0.22.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +19 -0
- package/dist/bundle.js +3 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/membrane-instances/types.d.ts +14 -0
- package/dist/dts/org-instances/types.d.ts +32 -0
- package/dist/dts/orgs/types.d.ts +15 -0
- package/dist/dts/workspace-elements/base/connectors/auth.d.ts +26 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +38 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
- package/dist/dts/workspaces/types.d.ts +4 -0
- package/dist/index.browser.d.mts +131 -1
- package/dist/index.browser.d.ts +131 -1
- package/dist/index.browser.js +39 -3
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +36 -4
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +131 -1
- package/dist/index.node.d.ts +131 -1
- package/dist/index.node.js +39 -3
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +36 -4
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ export interface WorkspaceElementSpec {
|
|
|
30
30
|
relatedActivityLogElements?: WorkspaceElementType[];
|
|
31
31
|
isAgentic?: boolean;
|
|
32
32
|
agentName?: AgentName;
|
|
33
|
+
remoteRepositories?: boolean;
|
|
33
34
|
}
|
|
34
35
|
export interface WorkspaceElements {
|
|
35
36
|
flows?: Record<string, CreateFlowRequest>;
|
|
@@ -288,6 +288,7 @@ export declare const WorkspaceSettingsSchema: z.ZodObject<{
|
|
|
288
288
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
289
289
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
290
290
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
291
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
291
292
|
}, z.core.$strip>;
|
|
292
293
|
export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
293
294
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -295,6 +296,7 @@ export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
|
295
296
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
296
297
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
297
298
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
299
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
298
300
|
}, z.core.$strip>;
|
|
299
301
|
export declare const WorkspacePublicKey: z.ZodObject<{
|
|
300
302
|
name: z.ZodString;
|
|
@@ -520,6 +522,7 @@ export declare const Workspace: z.ZodObject<{
|
|
|
520
522
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
521
523
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
522
524
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
525
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
523
526
|
}, z.core.$strip>>;
|
|
524
527
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
525
528
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -788,6 +791,7 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
788
791
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
789
792
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
790
793
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
794
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
791
795
|
}, z.core.$strip>>;
|
|
792
796
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
793
797
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|