@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.
@@ -7003,7 +7003,6 @@ declare const BaseFlowInstance: z.ZodObject<{
7003
7003
  createdAt: z.ZodString;
7004
7004
  updatedAt: z.ZodString;
7005
7005
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
7006
- outdated: z.ZodOptional<z.ZodBoolean>;
7007
7006
  customized: z.ZodOptional<z.ZodObject<{
7008
7007
  name: z.ZodOptional<z.ZodBoolean>;
7009
7008
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -7043,7 +7042,6 @@ declare const BaseFlowInstance: z.ZodObject<{
7043
7042
  universalFlowId?: string | undefined;
7044
7043
  nodes?: Record<string, any> | undefined;
7045
7044
  flowId?: string | undefined;
7046
- outdated?: boolean | undefined;
7047
7045
  }, {
7048
7046
  id: string;
7049
7047
  name: string;
@@ -7072,7 +7070,6 @@ declare const BaseFlowInstance: z.ZodObject<{
7072
7070
  universalFlowId?: string | undefined;
7073
7071
  nodes?: Record<string, any> | undefined;
7074
7072
  flowId?: string | undefined;
7075
- outdated?: boolean | undefined;
7076
7073
  }>;
7077
7074
  type BaseFlowInstance = z.infer<typeof BaseFlowInstance>;
7078
7075
  declare enum FlowInstanceNodeState {
@@ -7442,7 +7439,6 @@ declare const BaseActionInstance: z.ZodObject<{
7442
7439
  inputSchema: z.ZodOptional<z.ZodAny>;
7443
7440
  config: z.ZodOptional<z.ZodAny>;
7444
7441
  outputSchema: z.ZodOptional<z.ZodAny>;
7445
- isOutdated: z.ZodOptional<z.ZodBoolean>;
7446
7442
  }, "strip", z.ZodTypeAny, {
7447
7443
  id: string;
7448
7444
  name: string;
@@ -7465,7 +7461,6 @@ declare const BaseActionInstance: z.ZodObject<{
7465
7461
  parentRevision?: string | undefined;
7466
7462
  outputSchema?: any;
7467
7463
  universalParentId?: string | undefined;
7468
- isOutdated?: boolean | undefined;
7469
7464
  }, {
7470
7465
  id: string;
7471
7466
  name: string;
@@ -7488,7 +7483,6 @@ declare const BaseActionInstance: z.ZodObject<{
7488
7483
  parentRevision?: string | undefined;
7489
7484
  outputSchema?: any;
7490
7485
  universalParentId?: string | undefined;
7491
- isOutdated?: boolean | undefined;
7492
7486
  }>;
7493
7487
  type BaseActionInstance = z.infer<typeof BaseActionInstance>;
7494
7488
 
@@ -9767,7 +9761,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
9767
9761
  inputSchema: z.ZodOptional<z.ZodAny>;
9768
9762
  config: z.ZodOptional<z.ZodAny>;
9769
9763
  outputSchema: z.ZodOptional<z.ZodAny>;
9770
- isOutdated: z.ZodOptional<z.ZodBoolean>;
9771
9764
  } & {
9772
9765
  user: z.ZodOptional<z.ZodObject<{
9773
9766
  id: z.ZodString;
@@ -9905,7 +9898,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
9905
9898
  parentRevision?: string | undefined;
9906
9899
  outputSchema?: any;
9907
9900
  universalParentId?: string | undefined;
9908
- isOutdated?: boolean | undefined;
9909
9901
  parent?: {
9910
9902
  key: string;
9911
9903
  id: string;
@@ -9963,7 +9955,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
9963
9955
  parentRevision?: string | undefined;
9964
9956
  outputSchema?: any;
9965
9957
  universalParentId?: string | undefined;
9966
- isOutdated?: boolean | undefined;
9967
9958
  parent?: {
9968
9959
  key: string;
9969
9960
  id: string;
@@ -12122,163 +12113,19 @@ declare const FlowApiResponse: z.ZodObject<{
12122
12113
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
12123
12114
  element: z.ZodObject<{
12124
12115
  id: z.ZodString;
12125
- key: z.ZodOptional<z.ZodString>;
12126
- uuid: z.ZodOptional<z.ZodString>;
12127
- description: z.ZodOptional<z.ZodString>;
12128
- name: z.ZodString;
12129
- state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
12130
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
12131
- createdAt: z.ZodOptional<z.ZodString>;
12132
- updatedAt: z.ZodOptional<z.ZodString>;
12133
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
12134
- } & {
12135
12116
  integrationId: z.ZodOptional<z.ZodString>;
12136
- universalFlowId: z.ZodOptional<z.ZodString>;
12137
- universalFlowRevision: z.ZodOptional<z.ZodString>;
12138
- parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
12139
- nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
12140
- type: z.ZodOptional<z.ZodString>;
12141
- version: z.ZodOptional<z.ZodNumber>;
12142
- name: z.ZodOptional<z.ZodString>;
12143
- description: z.ZodOptional<z.ZodString>;
12144
- config: z.ZodOptional<z.ZodAny>;
12145
- concurrency: z.ZodOptional<z.ZodNumber>;
12146
- onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
12147
- ui: z.ZodOptional<z.ZodAny>;
12148
- inputSchema: z.ZodOptional<z.ZodAny>;
12149
- outputSchema: z.ZodOptional<z.ZodAny>;
12150
- outputExample: z.ZodOptional<z.ZodAny>;
12151
- links: z.ZodOptional<z.ZodArray<z.ZodObject<{
12152
- key: z.ZodOptional<z.ZodString>;
12153
- filter: z.ZodOptional<z.ZodAny>;
12154
- name: z.ZodOptional<z.ZodString>;
12155
- }, "strip", z.ZodTypeAny, {
12156
- key?: string | undefined;
12157
- filter?: any;
12158
- name?: string | undefined;
12159
- }, {
12160
- key?: string | undefined;
12161
- filter?: any;
12162
- name?: string | undefined;
12163
- }>, "many">>;
12164
- isCustomized: z.ZodOptional<z.ZodBoolean>;
12165
- }, "strip", z.ZodTypeAny, {
12166
- concurrency?: number | undefined;
12167
- type?: string | undefined;
12168
- name?: string | undefined;
12169
- description?: string | undefined;
12170
- inputSchema?: any;
12171
- config?: any;
12172
- isCustomized?: boolean | undefined;
12173
- outputSchema?: any;
12174
- version?: number | undefined;
12175
- onError?: "stop" | "continue" | undefined;
12176
- ui?: any;
12177
- outputExample?: any;
12178
- links?: {
12179
- key?: string | undefined;
12180
- filter?: any;
12181
- name?: string | undefined;
12182
- }[] | undefined;
12183
- }, {
12184
- concurrency?: number | undefined;
12185
- type?: string | undefined;
12186
- name?: string | undefined;
12187
- description?: string | undefined;
12188
- inputSchema?: any;
12189
- config?: any;
12190
- isCustomized?: boolean | undefined;
12191
- outputSchema?: any;
12192
- version?: number | undefined;
12193
- onError?: "stop" | "continue" | undefined;
12194
- ui?: any;
12195
- outputExample?: any;
12196
- links?: {
12197
- key?: string | undefined;
12198
- filter?: any;
12199
- name?: string | undefined;
12200
- }[] | undefined;
12201
- }>>>;
12202
- autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
12203
- archivedAt: z.ZodOptional<z.ZodString>;
12204
- revision: z.ZodString;
12205
12117
  customized: z.ZodOptional<z.ZodBoolean>;
12118
+ universalFlowId: z.ZodOptional<z.ZodString>;
12206
12119
  }, "strip", z.ZodTypeAny, {
12207
12120
  id: string;
12208
- name: string;
12209
- revision: string;
12210
- key?: string | undefined;
12211
- uuid?: string | undefined;
12212
- description?: string | undefined;
12213
- state?: WorkspaceElementState | undefined;
12214
- errors?: ErrorDataSchema[] | undefined;
12215
- createdAt?: string | undefined;
12216
- updatedAt?: string | undefined;
12217
- archivedAt?: string | undefined;
12218
- isDeactivated?: boolean | undefined;
12219
12121
  integrationId?: string | undefined;
12220
12122
  customized?: boolean | undefined;
12221
- parametersSchema?: DataSchema | undefined;
12222
12123
  universalFlowId?: string | undefined;
12223
- universalFlowRevision?: string | undefined;
12224
- nodes?: Record<string, {
12225
- concurrency?: number | undefined;
12226
- type?: string | undefined;
12227
- name?: string | undefined;
12228
- description?: string | undefined;
12229
- inputSchema?: any;
12230
- config?: any;
12231
- isCustomized?: boolean | undefined;
12232
- outputSchema?: any;
12233
- version?: number | undefined;
12234
- onError?: "stop" | "continue" | undefined;
12235
- ui?: any;
12236
- outputExample?: any;
12237
- links?: {
12238
- key?: string | undefined;
12239
- filter?: any;
12240
- name?: string | undefined;
12241
- }[] | undefined;
12242
- }> | undefined;
12243
- autoCreateInstances?: boolean | undefined;
12244
12124
  }, {
12245
12125
  id: string;
12246
- name: string;
12247
- revision: string;
12248
- key?: string | undefined;
12249
- uuid?: string | undefined;
12250
- description?: string | undefined;
12251
- state?: WorkspaceElementState | undefined;
12252
- errors?: ErrorDataSchema[] | undefined;
12253
- createdAt?: string | undefined;
12254
- updatedAt?: string | undefined;
12255
- archivedAt?: string | undefined;
12256
- isDeactivated?: boolean | undefined;
12257
12126
  integrationId?: string | undefined;
12258
12127
  customized?: boolean | undefined;
12259
- parametersSchema?: DataSchema | undefined;
12260
12128
  universalFlowId?: string | undefined;
12261
- universalFlowRevision?: string | undefined;
12262
- nodes?: Record<string, {
12263
- concurrency?: number | undefined;
12264
- type?: string | undefined;
12265
- name?: string | undefined;
12266
- description?: string | undefined;
12267
- inputSchema?: any;
12268
- config?: any;
12269
- isCustomized?: boolean | undefined;
12270
- outputSchema?: any;
12271
- version?: number | undefined;
12272
- onError?: "stop" | "continue" | undefined;
12273
- ui?: any;
12274
- outputExample?: any;
12275
- links?: {
12276
- key?: string | undefined;
12277
- filter?: any;
12278
- name?: string | undefined;
12279
- }[] | undefined;
12280
- }> | undefined;
12281
- autoCreateInstances?: boolean | undefined;
12282
12129
  }>;
12283
12130
  integration: z.ZodObject<{
12284
12131
  id: z.ZodString;
@@ -12410,42 +12257,9 @@ declare const FlowApiResponse: z.ZodObject<{
12410
12257
  };
12411
12258
  element: {
12412
12259
  id: string;
12413
- name: string;
12414
- revision: string;
12415
- key?: string | undefined;
12416
- uuid?: string | undefined;
12417
- description?: string | undefined;
12418
- state?: WorkspaceElementState | undefined;
12419
- errors?: ErrorDataSchema[] | undefined;
12420
- createdAt?: string | undefined;
12421
- updatedAt?: string | undefined;
12422
- archivedAt?: string | undefined;
12423
- isDeactivated?: boolean | undefined;
12424
12260
  integrationId?: string | undefined;
12425
12261
  customized?: boolean | undefined;
12426
- parametersSchema?: DataSchema | undefined;
12427
12262
  universalFlowId?: string | undefined;
12428
- universalFlowRevision?: string | undefined;
12429
- nodes?: Record<string, {
12430
- concurrency?: number | undefined;
12431
- type?: string | undefined;
12432
- name?: string | undefined;
12433
- description?: string | undefined;
12434
- inputSchema?: any;
12435
- config?: any;
12436
- isCustomized?: boolean | undefined;
12437
- outputSchema?: any;
12438
- version?: number | undefined;
12439
- onError?: "stop" | "continue" | undefined;
12440
- ui?: any;
12441
- outputExample?: any;
12442
- links?: {
12443
- key?: string | undefined;
12444
- filter?: any;
12445
- name?: string | undefined;
12446
- }[] | undefined;
12447
- }> | undefined;
12448
- autoCreateInstances?: boolean | undefined;
12449
12263
  };
12450
12264
  }, {
12451
12265
  integration: {
@@ -12482,44 +12296,12 @@ declare const FlowApiResponse: z.ZodObject<{
12482
12296
  };
12483
12297
  element: {
12484
12298
  id: string;
12485
- name: string;
12486
- revision: string;
12487
- key?: string | undefined;
12488
- uuid?: string | undefined;
12489
- description?: string | undefined;
12490
- state?: WorkspaceElementState | undefined;
12491
- errors?: ErrorDataSchema[] | undefined;
12492
- createdAt?: string | undefined;
12493
- updatedAt?: string | undefined;
12494
- archivedAt?: string | undefined;
12495
- isDeactivated?: boolean | undefined;
12496
12299
  integrationId?: string | undefined;
12497
12300
  customized?: boolean | undefined;
12498
- parametersSchema?: DataSchema | undefined;
12499
12301
  universalFlowId?: string | undefined;
12500
- universalFlowRevision?: string | undefined;
12501
- nodes?: Record<string, {
12502
- concurrency?: number | undefined;
12503
- type?: string | undefined;
12504
- name?: string | undefined;
12505
- description?: string | undefined;
12506
- inputSchema?: any;
12507
- config?: any;
12508
- isCustomized?: boolean | undefined;
12509
- outputSchema?: any;
12510
- version?: number | undefined;
12511
- onError?: "stop" | "continue" | undefined;
12512
- ui?: any;
12513
- outputExample?: any;
12514
- links?: {
12515
- key?: string | undefined;
12516
- filter?: any;
12517
- name?: string | undefined;
12518
- }[] | undefined;
12519
- }> | undefined;
12520
- autoCreateInstances?: boolean | undefined;
12521
12302
  };
12522
12303
  }>, "many">>;
12304
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
12523
12305
  }, "strip", z.ZodTypeAny, {
12524
12306
  id: string;
12525
12307
  name: string;
@@ -12603,44 +12385,12 @@ declare const FlowApiResponse: z.ZodObject<{
12603
12385
  };
12604
12386
  element: {
12605
12387
  id: string;
12606
- name: string;
12607
- revision: string;
12608
- key?: string | undefined;
12609
- uuid?: string | undefined;
12610
- description?: string | undefined;
12611
- state?: WorkspaceElementState | undefined;
12612
- errors?: ErrorDataSchema[] | undefined;
12613
- createdAt?: string | undefined;
12614
- updatedAt?: string | undefined;
12615
- archivedAt?: string | undefined;
12616
- isDeactivated?: boolean | undefined;
12617
12388
  integrationId?: string | undefined;
12618
12389
  customized?: boolean | undefined;
12619
- parametersSchema?: DataSchema | undefined;
12620
12390
  universalFlowId?: string | undefined;
12621
- universalFlowRevision?: string | undefined;
12622
- nodes?: Record<string, {
12623
- concurrency?: number | undefined;
12624
- type?: string | undefined;
12625
- name?: string | undefined;
12626
- description?: string | undefined;
12627
- inputSchema?: any;
12628
- config?: any;
12629
- isCustomized?: boolean | undefined;
12630
- outputSchema?: any;
12631
- version?: number | undefined;
12632
- onError?: "stop" | "continue" | undefined;
12633
- ui?: any;
12634
- outputExample?: any;
12635
- links?: {
12636
- key?: string | undefined;
12637
- filter?: any;
12638
- name?: string | undefined;
12639
- }[] | undefined;
12640
- }> | undefined;
12641
- autoCreateInstances?: boolean | undefined;
12642
12391
  };
12643
12392
  }[] | undefined;
12393
+ dependencies?: any[] | undefined;
12644
12394
  universalFlowId?: string | undefined;
12645
12395
  universalFlowRevision?: string | undefined;
12646
12396
  nodes?: Record<string, {
@@ -12746,44 +12496,12 @@ declare const FlowApiResponse: z.ZodObject<{
12746
12496
  };
12747
12497
  element: {
12748
12498
  id: string;
12749
- name: string;
12750
- revision: string;
12751
- key?: string | undefined;
12752
- uuid?: string | undefined;
12753
- description?: string | undefined;
12754
- state?: WorkspaceElementState | undefined;
12755
- errors?: ErrorDataSchema[] | undefined;
12756
- createdAt?: string | undefined;
12757
- updatedAt?: string | undefined;
12758
- archivedAt?: string | undefined;
12759
- isDeactivated?: boolean | undefined;
12760
12499
  integrationId?: string | undefined;
12761
12500
  customized?: boolean | undefined;
12762
- parametersSchema?: DataSchema | undefined;
12763
12501
  universalFlowId?: string | undefined;
12764
- universalFlowRevision?: string | undefined;
12765
- nodes?: Record<string, {
12766
- concurrency?: number | undefined;
12767
- type?: string | undefined;
12768
- name?: string | undefined;
12769
- description?: string | undefined;
12770
- inputSchema?: any;
12771
- config?: any;
12772
- isCustomized?: boolean | undefined;
12773
- outputSchema?: any;
12774
- version?: number | undefined;
12775
- onError?: "stop" | "continue" | undefined;
12776
- ui?: any;
12777
- outputExample?: any;
12778
- links?: {
12779
- key?: string | undefined;
12780
- filter?: any;
12781
- name?: string | undefined;
12782
- }[] | undefined;
12783
- }> | undefined;
12784
- autoCreateInstances?: boolean | undefined;
12785
12502
  };
12786
12503
  }[] | undefined;
12504
+ dependencies?: any[] | undefined;
12787
12505
  universalFlowId?: string | undefined;
12788
12506
  universalFlowRevision?: string | undefined;
12789
12507
  nodes?: Record<string, {
@@ -12833,7 +12551,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
12833
12551
  createdAt: z.ZodString;
12834
12552
  updatedAt: z.ZodString;
12835
12553
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
12836
- outdated: z.ZodOptional<z.ZodBoolean>;
12837
12554
  customized: z.ZodOptional<z.ZodObject<{
12838
12555
  name: z.ZodOptional<z.ZodBoolean>;
12839
12556
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -13090,163 +12807,19 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13090
12807
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
13091
12808
  element: z.ZodObject<{
13092
12809
  id: z.ZodString;
13093
- key: z.ZodOptional<z.ZodString>;
13094
- uuid: z.ZodOptional<z.ZodString>;
13095
- description: z.ZodOptional<z.ZodString>;
13096
- name: z.ZodString;
13097
- state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
13098
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
13099
- createdAt: z.ZodOptional<z.ZodString>;
13100
- updatedAt: z.ZodOptional<z.ZodString>;
13101
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
13102
- } & {
13103
12810
  integrationId: z.ZodOptional<z.ZodString>;
13104
- universalFlowId: z.ZodOptional<z.ZodString>;
13105
- universalFlowRevision: z.ZodOptional<z.ZodString>;
13106
- parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
13107
- nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13108
- type: z.ZodOptional<z.ZodString>;
13109
- version: z.ZodOptional<z.ZodNumber>;
13110
- name: z.ZodOptional<z.ZodString>;
13111
- description: z.ZodOptional<z.ZodString>;
13112
- config: z.ZodOptional<z.ZodAny>;
13113
- concurrency: z.ZodOptional<z.ZodNumber>;
13114
- onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
13115
- ui: z.ZodOptional<z.ZodAny>;
13116
- inputSchema: z.ZodOptional<z.ZodAny>;
13117
- outputSchema: z.ZodOptional<z.ZodAny>;
13118
- outputExample: z.ZodOptional<z.ZodAny>;
13119
- links: z.ZodOptional<z.ZodArray<z.ZodObject<{
13120
- key: z.ZodOptional<z.ZodString>;
13121
- filter: z.ZodOptional<z.ZodAny>;
13122
- name: z.ZodOptional<z.ZodString>;
13123
- }, "strip", z.ZodTypeAny, {
13124
- key?: string | undefined;
13125
- filter?: any;
13126
- name?: string | undefined;
13127
- }, {
13128
- key?: string | undefined;
13129
- filter?: any;
13130
- name?: string | undefined;
13131
- }>, "many">>;
13132
- isCustomized: z.ZodOptional<z.ZodBoolean>;
13133
- }, "strip", z.ZodTypeAny, {
13134
- concurrency?: number | undefined;
13135
- type?: string | undefined;
13136
- name?: string | undefined;
13137
- description?: string | undefined;
13138
- inputSchema?: any;
13139
- config?: any;
13140
- isCustomized?: boolean | undefined;
13141
- outputSchema?: any;
13142
- version?: number | undefined;
13143
- onError?: "stop" | "continue" | undefined;
13144
- ui?: any;
13145
- outputExample?: any;
13146
- links?: {
13147
- key?: string | undefined;
13148
- filter?: any;
13149
- name?: string | undefined;
13150
- }[] | undefined;
13151
- }, {
13152
- concurrency?: number | undefined;
13153
- type?: string | undefined;
13154
- name?: string | undefined;
13155
- description?: string | undefined;
13156
- inputSchema?: any;
13157
- config?: any;
13158
- isCustomized?: boolean | undefined;
13159
- outputSchema?: any;
13160
- version?: number | undefined;
13161
- onError?: "stop" | "continue" | undefined;
13162
- ui?: any;
13163
- outputExample?: any;
13164
- links?: {
13165
- key?: string | undefined;
13166
- filter?: any;
13167
- name?: string | undefined;
13168
- }[] | undefined;
13169
- }>>>;
13170
- autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
13171
- archivedAt: z.ZodOptional<z.ZodString>;
13172
- revision: z.ZodString;
13173
12811
  customized: z.ZodOptional<z.ZodBoolean>;
12812
+ universalFlowId: z.ZodOptional<z.ZodString>;
13174
12813
  }, "strip", z.ZodTypeAny, {
13175
12814
  id: string;
13176
- name: string;
13177
- revision: string;
13178
- key?: string | undefined;
13179
- uuid?: string | undefined;
13180
- description?: string | undefined;
13181
- state?: WorkspaceElementState | undefined;
13182
- errors?: ErrorDataSchema[] | undefined;
13183
- createdAt?: string | undefined;
13184
- updatedAt?: string | undefined;
13185
- archivedAt?: string | undefined;
13186
- isDeactivated?: boolean | undefined;
13187
12815
  integrationId?: string | undefined;
13188
12816
  customized?: boolean | undefined;
13189
- parametersSchema?: DataSchema | undefined;
13190
12817
  universalFlowId?: string | undefined;
13191
- universalFlowRevision?: string | undefined;
13192
- nodes?: Record<string, {
13193
- concurrency?: number | undefined;
13194
- type?: string | undefined;
13195
- name?: string | undefined;
13196
- description?: string | undefined;
13197
- inputSchema?: any;
13198
- config?: any;
13199
- isCustomized?: boolean | undefined;
13200
- outputSchema?: any;
13201
- version?: number | undefined;
13202
- onError?: "stop" | "continue" | undefined;
13203
- ui?: any;
13204
- outputExample?: any;
13205
- links?: {
13206
- key?: string | undefined;
13207
- filter?: any;
13208
- name?: string | undefined;
13209
- }[] | undefined;
13210
- }> | undefined;
13211
- autoCreateInstances?: boolean | undefined;
13212
12818
  }, {
13213
12819
  id: string;
13214
- name: string;
13215
- revision: string;
13216
- key?: string | undefined;
13217
- uuid?: string | undefined;
13218
- description?: string | undefined;
13219
- state?: WorkspaceElementState | undefined;
13220
- errors?: ErrorDataSchema[] | undefined;
13221
- createdAt?: string | undefined;
13222
- updatedAt?: string | undefined;
13223
- archivedAt?: string | undefined;
13224
- isDeactivated?: boolean | undefined;
13225
12820
  integrationId?: string | undefined;
13226
12821
  customized?: boolean | undefined;
13227
- parametersSchema?: DataSchema | undefined;
13228
12822
  universalFlowId?: string | undefined;
13229
- universalFlowRevision?: string | undefined;
13230
- nodes?: Record<string, {
13231
- concurrency?: number | undefined;
13232
- type?: string | undefined;
13233
- name?: string | undefined;
13234
- description?: string | undefined;
13235
- inputSchema?: any;
13236
- config?: any;
13237
- isCustomized?: boolean | undefined;
13238
- outputSchema?: any;
13239
- version?: number | undefined;
13240
- onError?: "stop" | "continue" | undefined;
13241
- ui?: any;
13242
- outputExample?: any;
13243
- links?: {
13244
- key?: string | undefined;
13245
- filter?: any;
13246
- name?: string | undefined;
13247
- }[] | undefined;
13248
- }> | undefined;
13249
- autoCreateInstances?: boolean | undefined;
13250
12823
  }>;
13251
12824
  integration: z.ZodObject<{
13252
12825
  id: z.ZodString;
@@ -13378,42 +12951,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13378
12951
  };
13379
12952
  element: {
13380
12953
  id: string;
13381
- name: string;
13382
- revision: string;
13383
- key?: string | undefined;
13384
- uuid?: string | undefined;
13385
- description?: string | undefined;
13386
- state?: WorkspaceElementState | undefined;
13387
- errors?: ErrorDataSchema[] | undefined;
13388
- createdAt?: string | undefined;
13389
- updatedAt?: string | undefined;
13390
- archivedAt?: string | undefined;
13391
- isDeactivated?: boolean | undefined;
13392
12954
  integrationId?: string | undefined;
13393
12955
  customized?: boolean | undefined;
13394
- parametersSchema?: DataSchema | undefined;
13395
12956
  universalFlowId?: string | undefined;
13396
- universalFlowRevision?: string | undefined;
13397
- nodes?: Record<string, {
13398
- concurrency?: number | undefined;
13399
- type?: string | undefined;
13400
- name?: string | undefined;
13401
- description?: string | undefined;
13402
- inputSchema?: any;
13403
- config?: any;
13404
- isCustomized?: boolean | undefined;
13405
- outputSchema?: any;
13406
- version?: number | undefined;
13407
- onError?: "stop" | "continue" | undefined;
13408
- ui?: any;
13409
- outputExample?: any;
13410
- links?: {
13411
- key?: string | undefined;
13412
- filter?: any;
13413
- name?: string | undefined;
13414
- }[] | undefined;
13415
- }> | undefined;
13416
- autoCreateInstances?: boolean | undefined;
13417
12957
  };
13418
12958
  }, {
13419
12959
  integration: {
@@ -13450,44 +12990,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13450
12990
  };
13451
12991
  element: {
13452
12992
  id: string;
13453
- name: string;
13454
- revision: string;
13455
- key?: string | undefined;
13456
- uuid?: string | undefined;
13457
- description?: string | undefined;
13458
- state?: WorkspaceElementState | undefined;
13459
- errors?: ErrorDataSchema[] | undefined;
13460
- createdAt?: string | undefined;
13461
- updatedAt?: string | undefined;
13462
- archivedAt?: string | undefined;
13463
- isDeactivated?: boolean | undefined;
13464
12993
  integrationId?: string | undefined;
13465
12994
  customized?: boolean | undefined;
13466
- parametersSchema?: DataSchema | undefined;
13467
12995
  universalFlowId?: string | undefined;
13468
- universalFlowRevision?: string | undefined;
13469
- nodes?: Record<string, {
13470
- concurrency?: number | undefined;
13471
- type?: string | undefined;
13472
- name?: string | undefined;
13473
- description?: string | undefined;
13474
- inputSchema?: any;
13475
- config?: any;
13476
- isCustomized?: boolean | undefined;
13477
- outputSchema?: any;
13478
- version?: number | undefined;
13479
- onError?: "stop" | "continue" | undefined;
13480
- ui?: any;
13481
- outputExample?: any;
13482
- links?: {
13483
- key?: string | undefined;
13484
- filter?: any;
13485
- name?: string | undefined;
13486
- }[] | undefined;
13487
- }> | undefined;
13488
- autoCreateInstances?: boolean | undefined;
13489
12996
  };
13490
12997
  }>, "many">>;
12998
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
13491
12999
  }, "strip", z.ZodTypeAny, {
13492
13000
  id: string;
13493
13001
  name: string;
@@ -13571,44 +13079,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13571
13079
  };
13572
13080
  element: {
13573
13081
  id: string;
13574
- name: string;
13575
- revision: string;
13576
- key?: string | undefined;
13577
- uuid?: string | undefined;
13578
- description?: string | undefined;
13579
- state?: WorkspaceElementState | undefined;
13580
- errors?: ErrorDataSchema[] | undefined;
13581
- createdAt?: string | undefined;
13582
- updatedAt?: string | undefined;
13583
- archivedAt?: string | undefined;
13584
- isDeactivated?: boolean | undefined;
13585
13082
  integrationId?: string | undefined;
13586
13083
  customized?: boolean | undefined;
13587
- parametersSchema?: DataSchema | undefined;
13588
13084
  universalFlowId?: string | undefined;
13589
- universalFlowRevision?: string | undefined;
13590
- nodes?: Record<string, {
13591
- concurrency?: number | undefined;
13592
- type?: string | undefined;
13593
- name?: string | undefined;
13594
- description?: string | undefined;
13595
- inputSchema?: any;
13596
- config?: any;
13597
- isCustomized?: boolean | undefined;
13598
- outputSchema?: any;
13599
- version?: number | undefined;
13600
- onError?: "stop" | "continue" | undefined;
13601
- ui?: any;
13602
- outputExample?: any;
13603
- links?: {
13604
- key?: string | undefined;
13605
- filter?: any;
13606
- name?: string | undefined;
13607
- }[] | undefined;
13608
- }> | undefined;
13609
- autoCreateInstances?: boolean | undefined;
13610
13085
  };
13611
13086
  }[] | undefined;
13087
+ dependencies?: any[] | undefined;
13612
13088
  universalFlowId?: string | undefined;
13613
13089
  universalFlowRevision?: string | undefined;
13614
13090
  nodes?: Record<string, {
@@ -13714,44 +13190,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13714
13190
  };
13715
13191
  element: {
13716
13192
  id: string;
13717
- name: string;
13718
- revision: string;
13719
- key?: string | undefined;
13720
- uuid?: string | undefined;
13721
- description?: string | undefined;
13722
- state?: WorkspaceElementState | undefined;
13723
- errors?: ErrorDataSchema[] | undefined;
13724
- createdAt?: string | undefined;
13725
- updatedAt?: string | undefined;
13726
- archivedAt?: string | undefined;
13727
- isDeactivated?: boolean | undefined;
13728
13193
  integrationId?: string | undefined;
13729
13194
  customized?: boolean | undefined;
13730
- parametersSchema?: DataSchema | undefined;
13731
13195
  universalFlowId?: string | undefined;
13732
- universalFlowRevision?: string | undefined;
13733
- nodes?: Record<string, {
13734
- concurrency?: number | undefined;
13735
- type?: string | undefined;
13736
- name?: string | undefined;
13737
- description?: string | undefined;
13738
- inputSchema?: any;
13739
- config?: any;
13740
- isCustomized?: boolean | undefined;
13741
- outputSchema?: any;
13742
- version?: number | undefined;
13743
- onError?: "stop" | "continue" | undefined;
13744
- ui?: any;
13745
- outputExample?: any;
13746
- links?: {
13747
- key?: string | undefined;
13748
- filter?: any;
13749
- name?: string | undefined;
13750
- }[] | undefined;
13751
- }> | undefined;
13752
- autoCreateInstances?: boolean | undefined;
13753
13196
  };
13754
13197
  }[] | undefined;
13198
+ dependencies?: any[] | undefined;
13755
13199
  universalFlowId?: string | undefined;
13756
13200
  universalFlowRevision?: string | undefined;
13757
13201
  nodes?: Record<string, {
@@ -13982,44 +13426,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13982
13426
  };
13983
13427
  element: {
13984
13428
  id: string;
13985
- name: string;
13986
- revision: string;
13987
- key?: string | undefined;
13988
- uuid?: string | undefined;
13989
- description?: string | undefined;
13990
- state?: WorkspaceElementState | undefined;
13991
- errors?: ErrorDataSchema[] | undefined;
13992
- createdAt?: string | undefined;
13993
- updatedAt?: string | undefined;
13994
- archivedAt?: string | undefined;
13995
- isDeactivated?: boolean | undefined;
13996
13429
  integrationId?: string | undefined;
13997
13430
  customized?: boolean | undefined;
13998
- parametersSchema?: DataSchema | undefined;
13999
13431
  universalFlowId?: string | undefined;
14000
- universalFlowRevision?: string | undefined;
14001
- nodes?: Record<string, {
14002
- concurrency?: number | undefined;
14003
- type?: string | undefined;
14004
- name?: string | undefined;
14005
- description?: string | undefined;
14006
- inputSchema?: any;
14007
- config?: any;
14008
- isCustomized?: boolean | undefined;
14009
- outputSchema?: any;
14010
- version?: number | undefined;
14011
- onError?: "stop" | "continue" | undefined;
14012
- ui?: any;
14013
- outputExample?: any;
14014
- links?: {
14015
- key?: string | undefined;
14016
- filter?: any;
14017
- name?: string | undefined;
14018
- }[] | undefined;
14019
- }> | undefined;
14020
- autoCreateInstances?: boolean | undefined;
14021
13432
  };
14022
13433
  }[] | undefined;
13434
+ dependencies?: any[] | undefined;
14023
13435
  universalFlowId?: string | undefined;
14024
13436
  universalFlowRevision?: string | undefined;
14025
13437
  nodes?: Record<string, {
@@ -14074,7 +13486,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
14074
13486
  universalFlowId?: string | undefined;
14075
13487
  nodes?: Record<string, any> | undefined;
14076
13488
  flowId?: string | undefined;
14077
- outdated?: boolean | undefined;
14078
13489
  }, {
14079
13490
  id: string;
14080
13491
  name: string;
@@ -14219,44 +13630,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
14219
13630
  };
14220
13631
  element: {
14221
13632
  id: string;
14222
- name: string;
14223
- revision: string;
14224
- key?: string | undefined;
14225
- uuid?: string | undefined;
14226
- description?: string | undefined;
14227
- state?: WorkspaceElementState | undefined;
14228
- errors?: ErrorDataSchema[] | undefined;
14229
- createdAt?: string | undefined;
14230
- updatedAt?: string | undefined;
14231
- archivedAt?: string | undefined;
14232
- isDeactivated?: boolean | undefined;
14233
13633
  integrationId?: string | undefined;
14234
13634
  customized?: boolean | undefined;
14235
- parametersSchema?: DataSchema | undefined;
14236
13635
  universalFlowId?: string | undefined;
14237
- universalFlowRevision?: string | undefined;
14238
- nodes?: Record<string, {
14239
- concurrency?: number | undefined;
14240
- type?: string | undefined;
14241
- name?: string | undefined;
14242
- description?: string | undefined;
14243
- inputSchema?: any;
14244
- config?: any;
14245
- isCustomized?: boolean | undefined;
14246
- outputSchema?: any;
14247
- version?: number | undefined;
14248
- onError?: "stop" | "continue" | undefined;
14249
- ui?: any;
14250
- outputExample?: any;
14251
- links?: {
14252
- key?: string | undefined;
14253
- filter?: any;
14254
- name?: string | undefined;
14255
- }[] | undefined;
14256
- }> | undefined;
14257
- autoCreateInstances?: boolean | undefined;
14258
13636
  };
14259
13637
  }[] | undefined;
13638
+ dependencies?: any[] | undefined;
14260
13639
  universalFlowId?: string | undefined;
14261
13640
  universalFlowRevision?: string | undefined;
14262
13641
  nodes?: Record<string, {
@@ -14311,7 +13690,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
14311
13690
  universalFlowId?: string | undefined;
14312
13691
  nodes?: Record<string, any> | undefined;
14313
13692
  flowId?: string | undefined;
14314
- outdated?: boolean | undefined;
14315
13693
  }>;
14316
13694
  type FlowInstanceApiResponse = z.infer<typeof FlowInstanceApiResponse>;
14317
13695
  type FlowInstance = FlowInstanceApiResponse;
@@ -18060,7 +17438,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18060
17438
  createdAt: z.ZodString;
18061
17439
  updatedAt: z.ZodString;
18062
17440
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
18063
- outdated: z.ZodOptional<z.ZodBoolean>;
18064
17441
  customized: z.ZodOptional<z.ZodObject<{
18065
17442
  name: z.ZodOptional<z.ZodBoolean>;
18066
17443
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -18100,7 +17477,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18100
17477
  universalFlowId?: string | undefined;
18101
17478
  nodes?: Record<string, any> | undefined;
18102
17479
  flowId?: string | undefined;
18103
- outdated?: boolean | undefined;
18104
17480
  }, {
18105
17481
  id: string;
18106
17482
  name: string;
@@ -18129,7 +17505,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18129
17505
  universalFlowId?: string | undefined;
18130
17506
  nodes?: Record<string, any> | undefined;
18131
17507
  flowId?: string | undefined;
18132
- outdated?: boolean | undefined;
18133
17508
  }>>;
18134
17509
  connection: z.ZodOptional<z.ZodObject<{
18135
17510
  id: z.ZodString;
@@ -18435,7 +17810,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18435
17810
  universalFlowId?: string | undefined;
18436
17811
  nodes?: Record<string, any> | undefined;
18437
17812
  flowId?: string | undefined;
18438
- outdated?: boolean | undefined;
18439
17813
  } | undefined;
18440
17814
  }, {
18441
17815
  id: string;
@@ -18553,7 +17927,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18553
17927
  universalFlowId?: string | undefined;
18554
17928
  nodes?: Record<string, any> | undefined;
18555
17929
  flowId?: string | undefined;
18556
- outdated?: boolean | undefined;
18557
17930
  } | undefined;
18558
17931
  }>;
18559
17932
  type FlowRunApiResponse = z.infer<typeof FlowRunApiResponse>;
@@ -18623,7 +17996,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18623
17996
  createdAt: z.ZodString;
18624
17997
  updatedAt: z.ZodString;
18625
17998
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
18626
- outdated: z.ZodOptional<z.ZodBoolean>;
18627
17999
  customized: z.ZodOptional<z.ZodObject<{
18628
18000
  name: z.ZodOptional<z.ZodBoolean>;
18629
18001
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -18663,7 +18035,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18663
18035
  universalFlowId?: string | undefined;
18664
18036
  nodes?: Record<string, any> | undefined;
18665
18037
  flowId?: string | undefined;
18666
- outdated?: boolean | undefined;
18667
18038
  }, {
18668
18039
  id: string;
18669
18040
  name: string;
@@ -18692,7 +18063,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18692
18063
  universalFlowId?: string | undefined;
18693
18064
  nodes?: Record<string, any> | undefined;
18694
18065
  flowId?: string | undefined;
18695
- outdated?: boolean | undefined;
18696
18066
  }>>;
18697
18067
  connection: z.ZodOptional<z.ZodObject<{
18698
18068
  id: z.ZodString;
@@ -18998,7 +18368,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18998
18368
  universalFlowId?: string | undefined;
18999
18369
  nodes?: Record<string, any> | undefined;
19000
18370
  flowId?: string | undefined;
19001
- outdated?: boolean | undefined;
19002
18371
  } | undefined;
19003
18372
  }, {
19004
18373
  id: string;
@@ -19116,7 +18485,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
19116
18485
  universalFlowId?: string | undefined;
19117
18486
  nodes?: Record<string, any> | undefined;
19118
18487
  flowId?: string | undefined;
19119
- outdated?: boolean | undefined;
19120
18488
  } | undefined;
19121
18489
  }>, "many">;
19122
18490
  cursor: z.ZodOptional<z.ZodString>;
@@ -19237,7 +18605,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
19237
18605
  universalFlowId?: string | undefined;
19238
18606
  nodes?: Record<string, any> | undefined;
19239
18607
  flowId?: string | undefined;
19240
- outdated?: boolean | undefined;
19241
18608
  } | undefined;
19242
18609
  }[];
19243
18610
  cursor?: string | undefined;
@@ -19358,7 +18725,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
19358
18725
  universalFlowId?: string | undefined;
19359
18726
  nodes?: Record<string, any> | undefined;
19360
18727
  flowId?: string | undefined;
19361
- outdated?: boolean | undefined;
19362
18728
  } | undefined;
19363
18729
  }[];
19364
18730
  cursor?: string | undefined;
@@ -27786,6 +27152,7 @@ interface Org {
27786
27152
  limits?: OrgLimits;
27787
27153
  lastThirtyDayUsagePercent?: number;
27788
27154
  todayUsagePercent?: number;
27155
+ featureFlags?: string[];
27789
27156
  }
27790
27157
  declare enum OrgUserRole {
27791
27158
  Admin = "admin",