@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.
@@ -20,6 +20,7 @@ export interface Org {
20
20
  limits?: OrgLimits;
21
21
  lastThirtyDayUsagePercent?: number;
22
22
  todayUsagePercent?: number;
23
+ featureFlags?: string[];
23
24
  }
24
25
  export declare enum OrgUserRole {
25
26
  Admin = "admin",
@@ -25,7 +25,6 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
25
25
  inputSchema: z.ZodOptional<z.ZodAny>;
26
26
  config: z.ZodOptional<z.ZodAny>;
27
27
  outputSchema: z.ZodOptional<z.ZodAny>;
28
- isOutdated: z.ZodOptional<z.ZodBoolean>;
29
28
  } & {
30
29
  user: z.ZodOptional<z.ZodObject<{
31
30
  id: z.ZodString;
@@ -163,7 +162,6 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
163
162
  parentRevision?: string | undefined;
164
163
  outputSchema?: any;
165
164
  universalParentId?: string | undefined;
166
- isOutdated?: boolean | undefined;
167
165
  parent?: {
168
166
  key: string;
169
167
  id: string;
@@ -221,7 +219,6 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
221
219
  parentRevision?: string | undefined;
222
220
  outputSchema?: any;
223
221
  universalParentId?: string | undefined;
224
- isOutdated?: boolean | undefined;
225
222
  parent?: {
226
223
  key: string;
227
224
  id: string;
@@ -132,7 +132,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
132
132
  createdAt: z.ZodString;
133
133
  updatedAt: z.ZodString;
134
134
  state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
135
- outdated: z.ZodOptional<z.ZodBoolean>;
136
135
  customized: z.ZodOptional<z.ZodObject<{
137
136
  name: z.ZodOptional<z.ZodBoolean>;
138
137
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -172,7 +171,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
172
171
  universalFlowId?: string | undefined;
173
172
  nodes?: Record<string, any> | undefined;
174
173
  flowId?: string | undefined;
175
- outdated?: boolean | undefined;
176
174
  }, {
177
175
  id: string;
178
176
  name: string;
@@ -201,7 +199,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
201
199
  universalFlowId?: string | undefined;
202
200
  nodes?: Record<string, any> | undefined;
203
201
  flowId?: string | undefined;
204
- outdated?: boolean | undefined;
205
202
  }>>;
206
203
  connection: z.ZodOptional<z.ZodObject<{
207
204
  id: z.ZodString;
@@ -507,7 +504,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
507
504
  universalFlowId?: string | undefined;
508
505
  nodes?: Record<string, any> | undefined;
509
506
  flowId?: string | undefined;
510
- outdated?: boolean | undefined;
511
507
  } | undefined;
512
508
  }, {
513
509
  id: string;
@@ -625,7 +621,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
625
621
  universalFlowId?: string | undefined;
626
622
  nodes?: Record<string, any> | undefined;
627
623
  flowId?: string | undefined;
628
- outdated?: boolean | undefined;
629
624
  } | undefined;
630
625
  }>;
631
626
  export type FlowRunApiResponse = z.infer<typeof FlowRunApiResponse>;
@@ -695,7 +690,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
695
690
  createdAt: z.ZodString;
696
691
  updatedAt: z.ZodString;
697
692
  state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
698
- outdated: z.ZodOptional<z.ZodBoolean>;
699
693
  customized: z.ZodOptional<z.ZodObject<{
700
694
  name: z.ZodOptional<z.ZodBoolean>;
701
695
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -735,7 +729,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
735
729
  universalFlowId?: string | undefined;
736
730
  nodes?: Record<string, any> | undefined;
737
731
  flowId?: string | undefined;
738
- outdated?: boolean | undefined;
739
732
  }, {
740
733
  id: string;
741
734
  name: string;
@@ -764,7 +757,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
764
757
  universalFlowId?: string | undefined;
765
758
  nodes?: Record<string, any> | undefined;
766
759
  flowId?: string | undefined;
767
- outdated?: boolean | undefined;
768
760
  }>>;
769
761
  connection: z.ZodOptional<z.ZodObject<{
770
762
  id: z.ZodString;
@@ -1070,7 +1062,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
1070
1062
  universalFlowId?: string | undefined;
1071
1063
  nodes?: Record<string, any> | undefined;
1072
1064
  flowId?: string | undefined;
1073
- outdated?: boolean | undefined;
1074
1065
  } | undefined;
1075
1066
  }, {
1076
1067
  id: string;
@@ -1188,7 +1179,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
1188
1179
  universalFlowId?: string | undefined;
1189
1180
  nodes?: Record<string, any> | undefined;
1190
1181
  flowId?: string | undefined;
1191
- outdated?: boolean | undefined;
1192
1182
  } | undefined;
1193
1183
  }>, "many">;
1194
1184
  cursor: z.ZodOptional<z.ZodString>;
@@ -1309,7 +1299,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
1309
1299
  universalFlowId?: string | undefined;
1310
1300
  nodes?: Record<string, any> | undefined;
1311
1301
  flowId?: string | undefined;
1312
- outdated?: boolean | undefined;
1313
1302
  } | undefined;
1314
1303
  }[];
1315
1304
  cursor?: string | undefined;
@@ -1430,7 +1419,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
1430
1419
  universalFlowId?: string | undefined;
1431
1420
  nodes?: Record<string, any> | undefined;
1432
1421
  flowId?: string | undefined;
1433
- outdated?: boolean | undefined;
1434
1422
  } | undefined;
1435
1423
  }[];
1436
1424
  cursor?: string | undefined;