@membranehq/sdk 0.7.0 → 0.7.1
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 +10 -638
- package/dist/dts/orgs/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +0 -3
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +0 -12
- package/dist/dts/workspace-elements/api/flows-api.d.ts +10 -623
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +0 -3
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +0 -3
- package/dist/index.d.ts +11 -644
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +11 -644
- package/dist/index.module.mjs +7 -3
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -42,7 +42,6 @@ export declare const BaseActionInstance: z.ZodObject<{
|
|
|
42
42
|
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
43
43
|
config: z.ZodOptional<z.ZodAny>;
|
|
44
44
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
45
|
-
isOutdated: z.ZodOptional<z.ZodBoolean>;
|
|
46
45
|
}, "strip", z.ZodTypeAny, {
|
|
47
46
|
id: string;
|
|
48
47
|
name: string;
|
|
@@ -65,7 +64,6 @@ export declare const BaseActionInstance: z.ZodObject<{
|
|
|
65
64
|
parentRevision?: string | undefined;
|
|
66
65
|
outputSchema?: any;
|
|
67
66
|
universalParentId?: string | undefined;
|
|
68
|
-
isOutdated?: boolean | undefined;
|
|
69
67
|
}, {
|
|
70
68
|
id: string;
|
|
71
69
|
name: string;
|
|
@@ -88,6 +86,5 @@ export declare const BaseActionInstance: z.ZodObject<{
|
|
|
88
86
|
parentRevision?: string | undefined;
|
|
89
87
|
outputSchema?: any;
|
|
90
88
|
universalParentId?: string | undefined;
|
|
91
|
-
isOutdated?: boolean | undefined;
|
|
92
89
|
}>;
|
|
93
90
|
export type BaseActionInstance = z.infer<typeof BaseActionInstance>;
|
|
@@ -26,7 +26,6 @@ export declare const BaseFlowInstance: z.ZodObject<{
|
|
|
26
26
|
createdAt: z.ZodString;
|
|
27
27
|
updatedAt: z.ZodString;
|
|
28
28
|
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
29
|
-
outdated: z.ZodOptional<z.ZodBoolean>;
|
|
30
29
|
customized: z.ZodOptional<z.ZodObject<{
|
|
31
30
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
32
31
|
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -66,7 +65,6 @@ export declare const BaseFlowInstance: z.ZodObject<{
|
|
|
66
65
|
universalFlowId?: string | undefined;
|
|
67
66
|
nodes?: Record<string, any> | undefined;
|
|
68
67
|
flowId?: string | undefined;
|
|
69
|
-
outdated?: boolean | undefined;
|
|
70
68
|
}, {
|
|
71
69
|
id: string;
|
|
72
70
|
name: string;
|
|
@@ -95,7 +93,6 @@ export declare const BaseFlowInstance: z.ZodObject<{
|
|
|
95
93
|
universalFlowId?: string | undefined;
|
|
96
94
|
nodes?: Record<string, any> | undefined;
|
|
97
95
|
flowId?: string | undefined;
|
|
98
|
-
outdated?: boolean | undefined;
|
|
99
96
|
}>;
|
|
100
97
|
export type BaseFlowInstance = z.infer<typeof BaseFlowInstance>;
|
|
101
98
|
export declare enum FlowInstanceNodeState {
|