@membranehq/sdk 0.22.2 → 0.22.4
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 +20 -0
- package/dist/bundle.js +3 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/agent/session.d.ts +9 -5
- package/dist/dts/agent/worker-contracts.d.ts +4 -0
- package/dist/dts/index.browser.d.ts +1 -1
- package/dist/dts/membrane-instances/types.d.ts +19 -0
- package/dist/dts/orgs/types.d.ts +0 -1
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +1 -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/base/external-event-subscriptions/index.d.ts +1 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
- package/dist/dts/workspaces/types.d.ts +0 -4
- package/dist/index.browser.d.mts +91 -18
- package/dist/index.browser.d.ts +91 -18
- package/dist/index.browser.js +18 -13
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +16 -11
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +91 -18
- package/dist/index.node.d.ts +91 -18
- package/dist/index.node.js +18 -13
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +16 -11
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/dts/clusters/types.d.ts +0 -19
|
@@ -56,6 +56,7 @@ export declare const BaseExternalEventSubscription: z.ZodObject<{
|
|
|
56
56
|
requiresFullSync: z.ZodOptional<z.ZodBoolean>;
|
|
57
57
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
58
58
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
59
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
59
60
|
stateData: z.ZodOptional<z.ZodAny>;
|
|
60
61
|
nextPullEventsTimestamp: z.ZodOptional<z.ZodNumber>;
|
|
61
62
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -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,7 +288,6 @@ 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
|
-
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
292
291
|
}, z.core.$strip>;
|
|
293
292
|
export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
294
293
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -296,7 +295,6 @@ export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
|
296
295
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
297
296
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
298
297
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
299
|
-
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
300
298
|
}, z.core.$strip>;
|
|
301
299
|
export declare const WorkspacePublicKey: z.ZodObject<{
|
|
302
300
|
name: z.ZodString;
|
|
@@ -522,7 +520,6 @@ export declare const Workspace: z.ZodObject<{
|
|
|
522
520
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
523
521
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
524
522
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
525
|
-
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
526
523
|
}, z.core.$strip>>;
|
|
527
524
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
528
525
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -791,7 +788,6 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
791
788
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
792
789
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
793
790
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
794
|
-
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
795
791
|
}, z.core.$strip>>;
|
|
796
792
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
797
793
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|