@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
package/dist/bundle.d.ts
CHANGED
|
@@ -2670,7 +2670,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
2670
2670
|
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
2671
2671
|
config: z.ZodOptional<z.ZodAny>;
|
|
2672
2672
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
2673
|
-
isOutdated: z.ZodOptional<z.ZodBoolean>;
|
|
2674
2673
|
} & {
|
|
2675
2674
|
user: z.ZodOptional<z.ZodObject<{
|
|
2676
2675
|
id: z.ZodString;
|
|
@@ -2808,7 +2807,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
2808
2807
|
parentRevision?: string | undefined;
|
|
2809
2808
|
outputSchema?: any;
|
|
2810
2809
|
universalParentId?: string | undefined;
|
|
2811
|
-
isOutdated?: boolean | undefined;
|
|
2812
2810
|
parent?: {
|
|
2813
2811
|
key: string;
|
|
2814
2812
|
id: string;
|
|
@@ -2866,7 +2864,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
2866
2864
|
parentRevision?: string | undefined;
|
|
2867
2865
|
outputSchema?: any;
|
|
2868
2866
|
universalParentId?: string | undefined;
|
|
2869
|
-
isOutdated?: boolean | undefined;
|
|
2870
2867
|
parent?: {
|
|
2871
2868
|
key: string;
|
|
2872
2869
|
id: string;
|
|
@@ -4965,163 +4962,19 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
4965
4962
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4966
4963
|
element: z.ZodObject<{
|
|
4967
4964
|
id: z.ZodString;
|
|
4968
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4969
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
4970
|
-
description: z.ZodOptional<z.ZodString>;
|
|
4971
|
-
name: z.ZodString;
|
|
4972
|
-
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
4973
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
|
|
4974
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
4975
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4976
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4977
|
-
} & {
|
|
4978
4965
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4979
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
4980
|
-
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
4981
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
4982
|
-
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4983
|
-
type: z.ZodOptional<z.ZodString>;
|
|
4984
|
-
version: z.ZodOptional<z.ZodNumber>;
|
|
4985
|
-
name: z.ZodOptional<z.ZodString>;
|
|
4986
|
-
description: z.ZodOptional<z.ZodString>;
|
|
4987
|
-
config: z.ZodOptional<z.ZodAny>;
|
|
4988
|
-
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
4989
|
-
onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
|
|
4990
|
-
ui: z.ZodOptional<z.ZodAny>;
|
|
4991
|
-
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
4992
|
-
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
4993
|
-
outputExample: z.ZodOptional<z.ZodAny>;
|
|
4994
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4995
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4996
|
-
filter: z.ZodOptional<z.ZodAny>;
|
|
4997
|
-
name: z.ZodOptional<z.ZodString>;
|
|
4998
|
-
}, "strip", z.ZodTypeAny, {
|
|
4999
|
-
key?: string | undefined;
|
|
5000
|
-
filter?: any;
|
|
5001
|
-
name?: string | undefined;
|
|
5002
|
-
}, {
|
|
5003
|
-
key?: string | undefined;
|
|
5004
|
-
filter?: any;
|
|
5005
|
-
name?: string | undefined;
|
|
5006
|
-
}>, "many">>;
|
|
5007
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
5008
|
-
}, "strip", z.ZodTypeAny, {
|
|
5009
|
-
concurrency?: number | undefined;
|
|
5010
|
-
type?: string | undefined;
|
|
5011
|
-
name?: string | undefined;
|
|
5012
|
-
description?: string | undefined;
|
|
5013
|
-
inputSchema?: any;
|
|
5014
|
-
config?: any;
|
|
5015
|
-
isCustomized?: boolean | undefined;
|
|
5016
|
-
outputSchema?: any;
|
|
5017
|
-
version?: number | undefined;
|
|
5018
|
-
onError?: "stop" | "continue" | undefined;
|
|
5019
|
-
ui?: any;
|
|
5020
|
-
outputExample?: any;
|
|
5021
|
-
links?: {
|
|
5022
|
-
key?: string | undefined;
|
|
5023
|
-
filter?: any;
|
|
5024
|
-
name?: string | undefined;
|
|
5025
|
-
}[] | undefined;
|
|
5026
|
-
}, {
|
|
5027
|
-
concurrency?: number | undefined;
|
|
5028
|
-
type?: string | undefined;
|
|
5029
|
-
name?: string | undefined;
|
|
5030
|
-
description?: string | undefined;
|
|
5031
|
-
inputSchema?: any;
|
|
5032
|
-
config?: any;
|
|
5033
|
-
isCustomized?: boolean | undefined;
|
|
5034
|
-
outputSchema?: any;
|
|
5035
|
-
version?: number | undefined;
|
|
5036
|
-
onError?: "stop" | "continue" | undefined;
|
|
5037
|
-
ui?: any;
|
|
5038
|
-
outputExample?: any;
|
|
5039
|
-
links?: {
|
|
5040
|
-
key?: string | undefined;
|
|
5041
|
-
filter?: any;
|
|
5042
|
-
name?: string | undefined;
|
|
5043
|
-
}[] | undefined;
|
|
5044
|
-
}>>>;
|
|
5045
|
-
autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
|
|
5046
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
5047
|
-
revision: z.ZodString;
|
|
5048
4966
|
customized: z.ZodOptional<z.ZodBoolean>;
|
|
4967
|
+
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
5049
4968
|
}, "strip", z.ZodTypeAny, {
|
|
5050
4969
|
id: string;
|
|
5051
|
-
name: string;
|
|
5052
|
-
revision: string;
|
|
5053
|
-
key?: string | undefined;
|
|
5054
|
-
uuid?: string | undefined;
|
|
5055
|
-
description?: string | undefined;
|
|
5056
|
-
state?: WorkspaceElementState | undefined;
|
|
5057
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5058
|
-
createdAt?: string | undefined;
|
|
5059
|
-
updatedAt?: string | undefined;
|
|
5060
|
-
archivedAt?: string | undefined;
|
|
5061
|
-
isDeactivated?: boolean | undefined;
|
|
5062
4970
|
integrationId?: string | undefined;
|
|
5063
4971
|
customized?: boolean | undefined;
|
|
5064
|
-
parametersSchema?: DataSchema | undefined;
|
|
5065
4972
|
universalFlowId?: string | undefined;
|
|
5066
|
-
universalFlowRevision?: string | undefined;
|
|
5067
|
-
nodes?: Record<string, {
|
|
5068
|
-
concurrency?: number | undefined;
|
|
5069
|
-
type?: string | undefined;
|
|
5070
|
-
name?: string | undefined;
|
|
5071
|
-
description?: string | undefined;
|
|
5072
|
-
inputSchema?: any;
|
|
5073
|
-
config?: any;
|
|
5074
|
-
isCustomized?: boolean | undefined;
|
|
5075
|
-
outputSchema?: any;
|
|
5076
|
-
version?: number | undefined;
|
|
5077
|
-
onError?: "stop" | "continue" | undefined;
|
|
5078
|
-
ui?: any;
|
|
5079
|
-
outputExample?: any;
|
|
5080
|
-
links?: {
|
|
5081
|
-
key?: string | undefined;
|
|
5082
|
-
filter?: any;
|
|
5083
|
-
name?: string | undefined;
|
|
5084
|
-
}[] | undefined;
|
|
5085
|
-
}> | undefined;
|
|
5086
|
-
autoCreateInstances?: boolean | undefined;
|
|
5087
4973
|
}, {
|
|
5088
4974
|
id: string;
|
|
5089
|
-
name: string;
|
|
5090
|
-
revision: string;
|
|
5091
|
-
key?: string | undefined;
|
|
5092
|
-
uuid?: string | undefined;
|
|
5093
|
-
description?: string | undefined;
|
|
5094
|
-
state?: WorkspaceElementState | undefined;
|
|
5095
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5096
|
-
createdAt?: string | undefined;
|
|
5097
|
-
updatedAt?: string | undefined;
|
|
5098
|
-
archivedAt?: string | undefined;
|
|
5099
|
-
isDeactivated?: boolean | undefined;
|
|
5100
4975
|
integrationId?: string | undefined;
|
|
5101
4976
|
customized?: boolean | undefined;
|
|
5102
|
-
parametersSchema?: DataSchema | undefined;
|
|
5103
4977
|
universalFlowId?: string | undefined;
|
|
5104
|
-
universalFlowRevision?: string | undefined;
|
|
5105
|
-
nodes?: Record<string, {
|
|
5106
|
-
concurrency?: number | undefined;
|
|
5107
|
-
type?: string | undefined;
|
|
5108
|
-
name?: string | undefined;
|
|
5109
|
-
description?: string | undefined;
|
|
5110
|
-
inputSchema?: any;
|
|
5111
|
-
config?: any;
|
|
5112
|
-
isCustomized?: boolean | undefined;
|
|
5113
|
-
outputSchema?: any;
|
|
5114
|
-
version?: number | undefined;
|
|
5115
|
-
onError?: "stop" | "continue" | undefined;
|
|
5116
|
-
ui?: any;
|
|
5117
|
-
outputExample?: any;
|
|
5118
|
-
links?: {
|
|
5119
|
-
key?: string | undefined;
|
|
5120
|
-
filter?: any;
|
|
5121
|
-
name?: string | undefined;
|
|
5122
|
-
}[] | undefined;
|
|
5123
|
-
}> | undefined;
|
|
5124
|
-
autoCreateInstances?: boolean | undefined;
|
|
5125
4978
|
}>;
|
|
5126
4979
|
integration: z.ZodObject<{
|
|
5127
4980
|
id: z.ZodString;
|
|
@@ -5253,42 +5106,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5253
5106
|
};
|
|
5254
5107
|
element: {
|
|
5255
5108
|
id: string;
|
|
5256
|
-
name: string;
|
|
5257
|
-
revision: string;
|
|
5258
|
-
key?: string | undefined;
|
|
5259
|
-
uuid?: string | undefined;
|
|
5260
|
-
description?: string | undefined;
|
|
5261
|
-
state?: WorkspaceElementState | undefined;
|
|
5262
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5263
|
-
createdAt?: string | undefined;
|
|
5264
|
-
updatedAt?: string | undefined;
|
|
5265
|
-
archivedAt?: string | undefined;
|
|
5266
|
-
isDeactivated?: boolean | undefined;
|
|
5267
5109
|
integrationId?: string | undefined;
|
|
5268
5110
|
customized?: boolean | undefined;
|
|
5269
|
-
parametersSchema?: DataSchema | undefined;
|
|
5270
5111
|
universalFlowId?: string | undefined;
|
|
5271
|
-
universalFlowRevision?: string | undefined;
|
|
5272
|
-
nodes?: Record<string, {
|
|
5273
|
-
concurrency?: number | undefined;
|
|
5274
|
-
type?: string | undefined;
|
|
5275
|
-
name?: string | undefined;
|
|
5276
|
-
description?: string | undefined;
|
|
5277
|
-
inputSchema?: any;
|
|
5278
|
-
config?: any;
|
|
5279
|
-
isCustomized?: boolean | undefined;
|
|
5280
|
-
outputSchema?: any;
|
|
5281
|
-
version?: number | undefined;
|
|
5282
|
-
onError?: "stop" | "continue" | undefined;
|
|
5283
|
-
ui?: any;
|
|
5284
|
-
outputExample?: any;
|
|
5285
|
-
links?: {
|
|
5286
|
-
key?: string | undefined;
|
|
5287
|
-
filter?: any;
|
|
5288
|
-
name?: string | undefined;
|
|
5289
|
-
}[] | undefined;
|
|
5290
|
-
}> | undefined;
|
|
5291
|
-
autoCreateInstances?: boolean | undefined;
|
|
5292
5112
|
};
|
|
5293
5113
|
}, {
|
|
5294
5114
|
integration: {
|
|
@@ -5325,44 +5145,12 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5325
5145
|
};
|
|
5326
5146
|
element: {
|
|
5327
5147
|
id: string;
|
|
5328
|
-
name: string;
|
|
5329
|
-
revision: string;
|
|
5330
|
-
key?: string | undefined;
|
|
5331
|
-
uuid?: string | undefined;
|
|
5332
|
-
description?: string | undefined;
|
|
5333
|
-
state?: WorkspaceElementState | undefined;
|
|
5334
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5335
|
-
createdAt?: string | undefined;
|
|
5336
|
-
updatedAt?: string | undefined;
|
|
5337
|
-
archivedAt?: string | undefined;
|
|
5338
|
-
isDeactivated?: boolean | undefined;
|
|
5339
5148
|
integrationId?: string | undefined;
|
|
5340
5149
|
customized?: boolean | undefined;
|
|
5341
|
-
parametersSchema?: DataSchema | undefined;
|
|
5342
5150
|
universalFlowId?: string | undefined;
|
|
5343
|
-
universalFlowRevision?: string | undefined;
|
|
5344
|
-
nodes?: Record<string, {
|
|
5345
|
-
concurrency?: number | undefined;
|
|
5346
|
-
type?: string | undefined;
|
|
5347
|
-
name?: string | undefined;
|
|
5348
|
-
description?: string | undefined;
|
|
5349
|
-
inputSchema?: any;
|
|
5350
|
-
config?: any;
|
|
5351
|
-
isCustomized?: boolean | undefined;
|
|
5352
|
-
outputSchema?: any;
|
|
5353
|
-
version?: number | undefined;
|
|
5354
|
-
onError?: "stop" | "continue" | undefined;
|
|
5355
|
-
ui?: any;
|
|
5356
|
-
outputExample?: any;
|
|
5357
|
-
links?: {
|
|
5358
|
-
key?: string | undefined;
|
|
5359
|
-
filter?: any;
|
|
5360
|
-
name?: string | undefined;
|
|
5361
|
-
}[] | undefined;
|
|
5362
|
-
}> | undefined;
|
|
5363
|
-
autoCreateInstances?: boolean | undefined;
|
|
5364
5151
|
};
|
|
5365
5152
|
}>, "many">>;
|
|
5153
|
+
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
5366
5154
|
}, "strip", z.ZodTypeAny, {
|
|
5367
5155
|
id: string;
|
|
5368
5156
|
name: string;
|
|
@@ -5446,44 +5234,12 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5446
5234
|
};
|
|
5447
5235
|
element: {
|
|
5448
5236
|
id: string;
|
|
5449
|
-
name: string;
|
|
5450
|
-
revision: string;
|
|
5451
|
-
key?: string | undefined;
|
|
5452
|
-
uuid?: string | undefined;
|
|
5453
|
-
description?: string | undefined;
|
|
5454
|
-
state?: WorkspaceElementState | undefined;
|
|
5455
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5456
|
-
createdAt?: string | undefined;
|
|
5457
|
-
updatedAt?: string | undefined;
|
|
5458
|
-
archivedAt?: string | undefined;
|
|
5459
|
-
isDeactivated?: boolean | undefined;
|
|
5460
5237
|
integrationId?: string | undefined;
|
|
5461
5238
|
customized?: boolean | undefined;
|
|
5462
|
-
parametersSchema?: DataSchema | undefined;
|
|
5463
5239
|
universalFlowId?: string | undefined;
|
|
5464
|
-
universalFlowRevision?: string | undefined;
|
|
5465
|
-
nodes?: Record<string, {
|
|
5466
|
-
concurrency?: number | undefined;
|
|
5467
|
-
type?: string | undefined;
|
|
5468
|
-
name?: string | undefined;
|
|
5469
|
-
description?: string | undefined;
|
|
5470
|
-
inputSchema?: any;
|
|
5471
|
-
config?: any;
|
|
5472
|
-
isCustomized?: boolean | undefined;
|
|
5473
|
-
outputSchema?: any;
|
|
5474
|
-
version?: number | undefined;
|
|
5475
|
-
onError?: "stop" | "continue" | undefined;
|
|
5476
|
-
ui?: any;
|
|
5477
|
-
outputExample?: any;
|
|
5478
|
-
links?: {
|
|
5479
|
-
key?: string | undefined;
|
|
5480
|
-
filter?: any;
|
|
5481
|
-
name?: string | undefined;
|
|
5482
|
-
}[] | undefined;
|
|
5483
|
-
}> | undefined;
|
|
5484
|
-
autoCreateInstances?: boolean | undefined;
|
|
5485
5240
|
};
|
|
5486
5241
|
}[] | undefined;
|
|
5242
|
+
dependencies?: any[] | undefined;
|
|
5487
5243
|
universalFlowId?: string | undefined;
|
|
5488
5244
|
universalFlowRevision?: string | undefined;
|
|
5489
5245
|
nodes?: Record<string, {
|
|
@@ -5589,44 +5345,12 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5589
5345
|
};
|
|
5590
5346
|
element: {
|
|
5591
5347
|
id: string;
|
|
5592
|
-
name: string;
|
|
5593
|
-
revision: string;
|
|
5594
|
-
key?: string | undefined;
|
|
5595
|
-
uuid?: string | undefined;
|
|
5596
|
-
description?: string | undefined;
|
|
5597
|
-
state?: WorkspaceElementState | undefined;
|
|
5598
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5599
|
-
createdAt?: string | undefined;
|
|
5600
|
-
updatedAt?: string | undefined;
|
|
5601
|
-
archivedAt?: string | undefined;
|
|
5602
|
-
isDeactivated?: boolean | undefined;
|
|
5603
5348
|
integrationId?: string | undefined;
|
|
5604
5349
|
customized?: boolean | undefined;
|
|
5605
|
-
parametersSchema?: DataSchema | undefined;
|
|
5606
5350
|
universalFlowId?: string | undefined;
|
|
5607
|
-
universalFlowRevision?: string | undefined;
|
|
5608
|
-
nodes?: Record<string, {
|
|
5609
|
-
concurrency?: number | undefined;
|
|
5610
|
-
type?: string | undefined;
|
|
5611
|
-
name?: string | undefined;
|
|
5612
|
-
description?: string | undefined;
|
|
5613
|
-
inputSchema?: any;
|
|
5614
|
-
config?: any;
|
|
5615
|
-
isCustomized?: boolean | undefined;
|
|
5616
|
-
outputSchema?: any;
|
|
5617
|
-
version?: number | undefined;
|
|
5618
|
-
onError?: "stop" | "continue" | undefined;
|
|
5619
|
-
ui?: any;
|
|
5620
|
-
outputExample?: any;
|
|
5621
|
-
links?: {
|
|
5622
|
-
key?: string | undefined;
|
|
5623
|
-
filter?: any;
|
|
5624
|
-
name?: string | undefined;
|
|
5625
|
-
}[] | undefined;
|
|
5626
|
-
}> | undefined;
|
|
5627
|
-
autoCreateInstances?: boolean | undefined;
|
|
5628
5351
|
};
|
|
5629
5352
|
}[] | undefined;
|
|
5353
|
+
dependencies?: any[] | undefined;
|
|
5630
5354
|
universalFlowId?: string | undefined;
|
|
5631
5355
|
universalFlowRevision?: string | undefined;
|
|
5632
5356
|
nodes?: Record<string, {
|
|
@@ -5676,7 +5400,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
5676
5400
|
createdAt: z.ZodString;
|
|
5677
5401
|
updatedAt: z.ZodString;
|
|
5678
5402
|
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
5679
|
-
outdated: z.ZodOptional<z.ZodBoolean>;
|
|
5680
5403
|
customized: z.ZodOptional<z.ZodObject<{
|
|
5681
5404
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
5682
5405
|
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5933,163 +5656,19 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
5933
5656
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5934
5657
|
element: z.ZodObject<{
|
|
5935
5658
|
id: z.ZodString;
|
|
5936
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5937
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
5938
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5939
|
-
name: z.ZodString;
|
|
5940
|
-
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
5941
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
|
|
5942
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5943
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5944
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
5945
|
-
} & {
|
|
5946
5659
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5947
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
5948
|
-
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
5949
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
5950
|
-
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5951
|
-
type: z.ZodOptional<z.ZodString>;
|
|
5952
|
-
version: z.ZodOptional<z.ZodNumber>;
|
|
5953
|
-
name: z.ZodOptional<z.ZodString>;
|
|
5954
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5955
|
-
config: z.ZodOptional<z.ZodAny>;
|
|
5956
|
-
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
5957
|
-
onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
|
|
5958
|
-
ui: z.ZodOptional<z.ZodAny>;
|
|
5959
|
-
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
5960
|
-
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
5961
|
-
outputExample: z.ZodOptional<z.ZodAny>;
|
|
5962
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5963
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5964
|
-
filter: z.ZodOptional<z.ZodAny>;
|
|
5965
|
-
name: z.ZodOptional<z.ZodString>;
|
|
5966
|
-
}, "strip", z.ZodTypeAny, {
|
|
5967
|
-
key?: string | undefined;
|
|
5968
|
-
filter?: any;
|
|
5969
|
-
name?: string | undefined;
|
|
5970
|
-
}, {
|
|
5971
|
-
key?: string | undefined;
|
|
5972
|
-
filter?: any;
|
|
5973
|
-
name?: string | undefined;
|
|
5974
|
-
}>, "many">>;
|
|
5975
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
5976
|
-
}, "strip", z.ZodTypeAny, {
|
|
5977
|
-
concurrency?: number | undefined;
|
|
5978
|
-
type?: string | undefined;
|
|
5979
|
-
name?: string | undefined;
|
|
5980
|
-
description?: string | undefined;
|
|
5981
|
-
inputSchema?: any;
|
|
5982
|
-
config?: any;
|
|
5983
|
-
isCustomized?: boolean | undefined;
|
|
5984
|
-
outputSchema?: any;
|
|
5985
|
-
version?: number | undefined;
|
|
5986
|
-
onError?: "stop" | "continue" | undefined;
|
|
5987
|
-
ui?: any;
|
|
5988
|
-
outputExample?: any;
|
|
5989
|
-
links?: {
|
|
5990
|
-
key?: string | undefined;
|
|
5991
|
-
filter?: any;
|
|
5992
|
-
name?: string | undefined;
|
|
5993
|
-
}[] | undefined;
|
|
5994
|
-
}, {
|
|
5995
|
-
concurrency?: number | undefined;
|
|
5996
|
-
type?: string | undefined;
|
|
5997
|
-
name?: string | undefined;
|
|
5998
|
-
description?: string | undefined;
|
|
5999
|
-
inputSchema?: any;
|
|
6000
|
-
config?: any;
|
|
6001
|
-
isCustomized?: boolean | undefined;
|
|
6002
|
-
outputSchema?: any;
|
|
6003
|
-
version?: number | undefined;
|
|
6004
|
-
onError?: "stop" | "continue" | undefined;
|
|
6005
|
-
ui?: any;
|
|
6006
|
-
outputExample?: any;
|
|
6007
|
-
links?: {
|
|
6008
|
-
key?: string | undefined;
|
|
6009
|
-
filter?: any;
|
|
6010
|
-
name?: string | undefined;
|
|
6011
|
-
}[] | undefined;
|
|
6012
|
-
}>>>;
|
|
6013
|
-
autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
|
|
6014
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
6015
|
-
revision: z.ZodString;
|
|
6016
5660
|
customized: z.ZodOptional<z.ZodBoolean>;
|
|
5661
|
+
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
6017
5662
|
}, "strip", z.ZodTypeAny, {
|
|
6018
5663
|
id: string;
|
|
6019
|
-
name: string;
|
|
6020
|
-
revision: string;
|
|
6021
|
-
key?: string | undefined;
|
|
6022
|
-
uuid?: string | undefined;
|
|
6023
|
-
description?: string | undefined;
|
|
6024
|
-
state?: WorkspaceElementState | undefined;
|
|
6025
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6026
|
-
createdAt?: string | undefined;
|
|
6027
|
-
updatedAt?: string | undefined;
|
|
6028
|
-
archivedAt?: string | undefined;
|
|
6029
|
-
isDeactivated?: boolean | undefined;
|
|
6030
5664
|
integrationId?: string | undefined;
|
|
6031
5665
|
customized?: boolean | undefined;
|
|
6032
|
-
parametersSchema?: DataSchema | undefined;
|
|
6033
5666
|
universalFlowId?: string | undefined;
|
|
6034
|
-
universalFlowRevision?: string | undefined;
|
|
6035
|
-
nodes?: Record<string, {
|
|
6036
|
-
concurrency?: number | undefined;
|
|
6037
|
-
type?: string | undefined;
|
|
6038
|
-
name?: string | undefined;
|
|
6039
|
-
description?: string | undefined;
|
|
6040
|
-
inputSchema?: any;
|
|
6041
|
-
config?: any;
|
|
6042
|
-
isCustomized?: boolean | undefined;
|
|
6043
|
-
outputSchema?: any;
|
|
6044
|
-
version?: number | undefined;
|
|
6045
|
-
onError?: "stop" | "continue" | undefined;
|
|
6046
|
-
ui?: any;
|
|
6047
|
-
outputExample?: any;
|
|
6048
|
-
links?: {
|
|
6049
|
-
key?: string | undefined;
|
|
6050
|
-
filter?: any;
|
|
6051
|
-
name?: string | undefined;
|
|
6052
|
-
}[] | undefined;
|
|
6053
|
-
}> | undefined;
|
|
6054
|
-
autoCreateInstances?: boolean | undefined;
|
|
6055
5667
|
}, {
|
|
6056
5668
|
id: string;
|
|
6057
|
-
name: string;
|
|
6058
|
-
revision: string;
|
|
6059
|
-
key?: string | undefined;
|
|
6060
|
-
uuid?: string | undefined;
|
|
6061
|
-
description?: string | undefined;
|
|
6062
|
-
state?: WorkspaceElementState | undefined;
|
|
6063
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6064
|
-
createdAt?: string | undefined;
|
|
6065
|
-
updatedAt?: string | undefined;
|
|
6066
|
-
archivedAt?: string | undefined;
|
|
6067
|
-
isDeactivated?: boolean | undefined;
|
|
6068
5669
|
integrationId?: string | undefined;
|
|
6069
5670
|
customized?: boolean | undefined;
|
|
6070
|
-
parametersSchema?: DataSchema | undefined;
|
|
6071
5671
|
universalFlowId?: string | undefined;
|
|
6072
|
-
universalFlowRevision?: string | undefined;
|
|
6073
|
-
nodes?: Record<string, {
|
|
6074
|
-
concurrency?: number | undefined;
|
|
6075
|
-
type?: string | undefined;
|
|
6076
|
-
name?: string | undefined;
|
|
6077
|
-
description?: string | undefined;
|
|
6078
|
-
inputSchema?: any;
|
|
6079
|
-
config?: any;
|
|
6080
|
-
isCustomized?: boolean | undefined;
|
|
6081
|
-
outputSchema?: any;
|
|
6082
|
-
version?: number | undefined;
|
|
6083
|
-
onError?: "stop" | "continue" | undefined;
|
|
6084
|
-
ui?: any;
|
|
6085
|
-
outputExample?: any;
|
|
6086
|
-
links?: {
|
|
6087
|
-
key?: string | undefined;
|
|
6088
|
-
filter?: any;
|
|
6089
|
-
name?: string | undefined;
|
|
6090
|
-
}[] | undefined;
|
|
6091
|
-
}> | undefined;
|
|
6092
|
-
autoCreateInstances?: boolean | undefined;
|
|
6093
5672
|
}>;
|
|
6094
5673
|
integration: z.ZodObject<{
|
|
6095
5674
|
id: z.ZodString;
|
|
@@ -6221,42 +5800,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6221
5800
|
};
|
|
6222
5801
|
element: {
|
|
6223
5802
|
id: string;
|
|
6224
|
-
name: string;
|
|
6225
|
-
revision: string;
|
|
6226
|
-
key?: string | undefined;
|
|
6227
|
-
uuid?: string | undefined;
|
|
6228
|
-
description?: string | undefined;
|
|
6229
|
-
state?: WorkspaceElementState | undefined;
|
|
6230
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6231
|
-
createdAt?: string | undefined;
|
|
6232
|
-
updatedAt?: string | undefined;
|
|
6233
|
-
archivedAt?: string | undefined;
|
|
6234
|
-
isDeactivated?: boolean | undefined;
|
|
6235
5803
|
integrationId?: string | undefined;
|
|
6236
5804
|
customized?: boolean | undefined;
|
|
6237
|
-
parametersSchema?: DataSchema | undefined;
|
|
6238
5805
|
universalFlowId?: string | undefined;
|
|
6239
|
-
universalFlowRevision?: string | undefined;
|
|
6240
|
-
nodes?: Record<string, {
|
|
6241
|
-
concurrency?: number | undefined;
|
|
6242
|
-
type?: string | undefined;
|
|
6243
|
-
name?: string | undefined;
|
|
6244
|
-
description?: string | undefined;
|
|
6245
|
-
inputSchema?: any;
|
|
6246
|
-
config?: any;
|
|
6247
|
-
isCustomized?: boolean | undefined;
|
|
6248
|
-
outputSchema?: any;
|
|
6249
|
-
version?: number | undefined;
|
|
6250
|
-
onError?: "stop" | "continue" | undefined;
|
|
6251
|
-
ui?: any;
|
|
6252
|
-
outputExample?: any;
|
|
6253
|
-
links?: {
|
|
6254
|
-
key?: string | undefined;
|
|
6255
|
-
filter?: any;
|
|
6256
|
-
name?: string | undefined;
|
|
6257
|
-
}[] | undefined;
|
|
6258
|
-
}> | undefined;
|
|
6259
|
-
autoCreateInstances?: boolean | undefined;
|
|
6260
5806
|
};
|
|
6261
5807
|
}, {
|
|
6262
5808
|
integration: {
|
|
@@ -6293,44 +5839,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6293
5839
|
};
|
|
6294
5840
|
element: {
|
|
6295
5841
|
id: string;
|
|
6296
|
-
name: string;
|
|
6297
|
-
revision: string;
|
|
6298
|
-
key?: string | undefined;
|
|
6299
|
-
uuid?: string | undefined;
|
|
6300
|
-
description?: string | undefined;
|
|
6301
|
-
state?: WorkspaceElementState | undefined;
|
|
6302
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6303
|
-
createdAt?: string | undefined;
|
|
6304
|
-
updatedAt?: string | undefined;
|
|
6305
|
-
archivedAt?: string | undefined;
|
|
6306
|
-
isDeactivated?: boolean | undefined;
|
|
6307
5842
|
integrationId?: string | undefined;
|
|
6308
5843
|
customized?: boolean | undefined;
|
|
6309
|
-
parametersSchema?: DataSchema | undefined;
|
|
6310
5844
|
universalFlowId?: string | undefined;
|
|
6311
|
-
universalFlowRevision?: string | undefined;
|
|
6312
|
-
nodes?: Record<string, {
|
|
6313
|
-
concurrency?: number | undefined;
|
|
6314
|
-
type?: string | undefined;
|
|
6315
|
-
name?: string | undefined;
|
|
6316
|
-
description?: string | undefined;
|
|
6317
|
-
inputSchema?: any;
|
|
6318
|
-
config?: any;
|
|
6319
|
-
isCustomized?: boolean | undefined;
|
|
6320
|
-
outputSchema?: any;
|
|
6321
|
-
version?: number | undefined;
|
|
6322
|
-
onError?: "stop" | "continue" | undefined;
|
|
6323
|
-
ui?: any;
|
|
6324
|
-
outputExample?: any;
|
|
6325
|
-
links?: {
|
|
6326
|
-
key?: string | undefined;
|
|
6327
|
-
filter?: any;
|
|
6328
|
-
name?: string | undefined;
|
|
6329
|
-
}[] | undefined;
|
|
6330
|
-
}> | undefined;
|
|
6331
|
-
autoCreateInstances?: boolean | undefined;
|
|
6332
5845
|
};
|
|
6333
5846
|
}>, "many">>;
|
|
5847
|
+
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
6334
5848
|
}, "strip", z.ZodTypeAny, {
|
|
6335
5849
|
id: string;
|
|
6336
5850
|
name: string;
|
|
@@ -6414,44 +5928,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6414
5928
|
};
|
|
6415
5929
|
element: {
|
|
6416
5930
|
id: string;
|
|
6417
|
-
name: string;
|
|
6418
|
-
revision: string;
|
|
6419
|
-
key?: string | undefined;
|
|
6420
|
-
uuid?: string | undefined;
|
|
6421
|
-
description?: string | undefined;
|
|
6422
|
-
state?: WorkspaceElementState | undefined;
|
|
6423
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6424
|
-
createdAt?: string | undefined;
|
|
6425
|
-
updatedAt?: string | undefined;
|
|
6426
|
-
archivedAt?: string | undefined;
|
|
6427
|
-
isDeactivated?: boolean | undefined;
|
|
6428
5931
|
integrationId?: string | undefined;
|
|
6429
5932
|
customized?: boolean | undefined;
|
|
6430
|
-
parametersSchema?: DataSchema | undefined;
|
|
6431
5933
|
universalFlowId?: string | undefined;
|
|
6432
|
-
universalFlowRevision?: string | undefined;
|
|
6433
|
-
nodes?: Record<string, {
|
|
6434
|
-
concurrency?: number | undefined;
|
|
6435
|
-
type?: string | undefined;
|
|
6436
|
-
name?: string | undefined;
|
|
6437
|
-
description?: string | undefined;
|
|
6438
|
-
inputSchema?: any;
|
|
6439
|
-
config?: any;
|
|
6440
|
-
isCustomized?: boolean | undefined;
|
|
6441
|
-
outputSchema?: any;
|
|
6442
|
-
version?: number | undefined;
|
|
6443
|
-
onError?: "stop" | "continue" | undefined;
|
|
6444
|
-
ui?: any;
|
|
6445
|
-
outputExample?: any;
|
|
6446
|
-
links?: {
|
|
6447
|
-
key?: string | undefined;
|
|
6448
|
-
filter?: any;
|
|
6449
|
-
name?: string | undefined;
|
|
6450
|
-
}[] | undefined;
|
|
6451
|
-
}> | undefined;
|
|
6452
|
-
autoCreateInstances?: boolean | undefined;
|
|
6453
5934
|
};
|
|
6454
5935
|
}[] | undefined;
|
|
5936
|
+
dependencies?: any[] | undefined;
|
|
6455
5937
|
universalFlowId?: string | undefined;
|
|
6456
5938
|
universalFlowRevision?: string | undefined;
|
|
6457
5939
|
nodes?: Record<string, {
|
|
@@ -6557,44 +6039,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6557
6039
|
};
|
|
6558
6040
|
element: {
|
|
6559
6041
|
id: string;
|
|
6560
|
-
name: string;
|
|
6561
|
-
revision: string;
|
|
6562
|
-
key?: string | undefined;
|
|
6563
|
-
uuid?: string | undefined;
|
|
6564
|
-
description?: string | undefined;
|
|
6565
|
-
state?: WorkspaceElementState | undefined;
|
|
6566
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6567
|
-
createdAt?: string | undefined;
|
|
6568
|
-
updatedAt?: string | undefined;
|
|
6569
|
-
archivedAt?: string | undefined;
|
|
6570
|
-
isDeactivated?: boolean | undefined;
|
|
6571
6042
|
integrationId?: string | undefined;
|
|
6572
6043
|
customized?: boolean | undefined;
|
|
6573
|
-
parametersSchema?: DataSchema | undefined;
|
|
6574
6044
|
universalFlowId?: string | undefined;
|
|
6575
|
-
universalFlowRevision?: string | undefined;
|
|
6576
|
-
nodes?: Record<string, {
|
|
6577
|
-
concurrency?: number | undefined;
|
|
6578
|
-
type?: string | undefined;
|
|
6579
|
-
name?: string | undefined;
|
|
6580
|
-
description?: string | undefined;
|
|
6581
|
-
inputSchema?: any;
|
|
6582
|
-
config?: any;
|
|
6583
|
-
isCustomized?: boolean | undefined;
|
|
6584
|
-
outputSchema?: any;
|
|
6585
|
-
version?: number | undefined;
|
|
6586
|
-
onError?: "stop" | "continue" | undefined;
|
|
6587
|
-
ui?: any;
|
|
6588
|
-
outputExample?: any;
|
|
6589
|
-
links?: {
|
|
6590
|
-
key?: string | undefined;
|
|
6591
|
-
filter?: any;
|
|
6592
|
-
name?: string | undefined;
|
|
6593
|
-
}[] | undefined;
|
|
6594
|
-
}> | undefined;
|
|
6595
|
-
autoCreateInstances?: boolean | undefined;
|
|
6596
6045
|
};
|
|
6597
6046
|
}[] | undefined;
|
|
6047
|
+
dependencies?: any[] | undefined;
|
|
6598
6048
|
universalFlowId?: string | undefined;
|
|
6599
6049
|
universalFlowRevision?: string | undefined;
|
|
6600
6050
|
nodes?: Record<string, {
|
|
@@ -6825,44 +6275,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6825
6275
|
};
|
|
6826
6276
|
element: {
|
|
6827
6277
|
id: string;
|
|
6828
|
-
name: string;
|
|
6829
|
-
revision: string;
|
|
6830
|
-
key?: string | undefined;
|
|
6831
|
-
uuid?: string | undefined;
|
|
6832
|
-
description?: string | undefined;
|
|
6833
|
-
state?: WorkspaceElementState | undefined;
|
|
6834
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6835
|
-
createdAt?: string | undefined;
|
|
6836
|
-
updatedAt?: string | undefined;
|
|
6837
|
-
archivedAt?: string | undefined;
|
|
6838
|
-
isDeactivated?: boolean | undefined;
|
|
6839
6278
|
integrationId?: string | undefined;
|
|
6840
6279
|
customized?: boolean | undefined;
|
|
6841
|
-
parametersSchema?: DataSchema | undefined;
|
|
6842
6280
|
universalFlowId?: string | undefined;
|
|
6843
|
-
universalFlowRevision?: string | undefined;
|
|
6844
|
-
nodes?: Record<string, {
|
|
6845
|
-
concurrency?: number | undefined;
|
|
6846
|
-
type?: string | undefined;
|
|
6847
|
-
name?: string | undefined;
|
|
6848
|
-
description?: string | undefined;
|
|
6849
|
-
inputSchema?: any;
|
|
6850
|
-
config?: any;
|
|
6851
|
-
isCustomized?: boolean | undefined;
|
|
6852
|
-
outputSchema?: any;
|
|
6853
|
-
version?: number | undefined;
|
|
6854
|
-
onError?: "stop" | "continue" | undefined;
|
|
6855
|
-
ui?: any;
|
|
6856
|
-
outputExample?: any;
|
|
6857
|
-
links?: {
|
|
6858
|
-
key?: string | undefined;
|
|
6859
|
-
filter?: any;
|
|
6860
|
-
name?: string | undefined;
|
|
6861
|
-
}[] | undefined;
|
|
6862
|
-
}> | undefined;
|
|
6863
|
-
autoCreateInstances?: boolean | undefined;
|
|
6864
6281
|
};
|
|
6865
6282
|
}[] | undefined;
|
|
6283
|
+
dependencies?: any[] | undefined;
|
|
6866
6284
|
universalFlowId?: string | undefined;
|
|
6867
6285
|
universalFlowRevision?: string | undefined;
|
|
6868
6286
|
nodes?: Record<string, {
|
|
@@ -6917,7 +6335,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6917
6335
|
universalFlowId?: string | undefined;
|
|
6918
6336
|
nodes?: Record<string, any> | undefined;
|
|
6919
6337
|
flowId?: string | undefined;
|
|
6920
|
-
outdated?: boolean | undefined;
|
|
6921
6338
|
}, {
|
|
6922
6339
|
id: string;
|
|
6923
6340
|
name: string;
|
|
@@ -7062,44 +6479,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
7062
6479
|
};
|
|
7063
6480
|
element: {
|
|
7064
6481
|
id: string;
|
|
7065
|
-
name: string;
|
|
7066
|
-
revision: string;
|
|
7067
|
-
key?: string | undefined;
|
|
7068
|
-
uuid?: string | undefined;
|
|
7069
|
-
description?: string | undefined;
|
|
7070
|
-
state?: WorkspaceElementState | undefined;
|
|
7071
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
7072
|
-
createdAt?: string | undefined;
|
|
7073
|
-
updatedAt?: string | undefined;
|
|
7074
|
-
archivedAt?: string | undefined;
|
|
7075
|
-
isDeactivated?: boolean | undefined;
|
|
7076
6482
|
integrationId?: string | undefined;
|
|
7077
6483
|
customized?: boolean | undefined;
|
|
7078
|
-
parametersSchema?: DataSchema | undefined;
|
|
7079
6484
|
universalFlowId?: string | undefined;
|
|
7080
|
-
universalFlowRevision?: string | undefined;
|
|
7081
|
-
nodes?: Record<string, {
|
|
7082
|
-
concurrency?: number | undefined;
|
|
7083
|
-
type?: string | undefined;
|
|
7084
|
-
name?: string | undefined;
|
|
7085
|
-
description?: string | undefined;
|
|
7086
|
-
inputSchema?: any;
|
|
7087
|
-
config?: any;
|
|
7088
|
-
isCustomized?: boolean | undefined;
|
|
7089
|
-
outputSchema?: any;
|
|
7090
|
-
version?: number | undefined;
|
|
7091
|
-
onError?: "stop" | "continue" | undefined;
|
|
7092
|
-
ui?: any;
|
|
7093
|
-
outputExample?: any;
|
|
7094
|
-
links?: {
|
|
7095
|
-
key?: string | undefined;
|
|
7096
|
-
filter?: any;
|
|
7097
|
-
name?: string | undefined;
|
|
7098
|
-
}[] | undefined;
|
|
7099
|
-
}> | undefined;
|
|
7100
|
-
autoCreateInstances?: boolean | undefined;
|
|
7101
6485
|
};
|
|
7102
6486
|
}[] | undefined;
|
|
6487
|
+
dependencies?: any[] | undefined;
|
|
7103
6488
|
universalFlowId?: string | undefined;
|
|
7104
6489
|
universalFlowRevision?: string | undefined;
|
|
7105
6490
|
nodes?: Record<string, {
|
|
@@ -7154,7 +6539,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
7154
6539
|
universalFlowId?: string | undefined;
|
|
7155
6540
|
nodes?: Record<string, any> | undefined;
|
|
7156
6541
|
flowId?: string | undefined;
|
|
7157
|
-
outdated?: boolean | undefined;
|
|
7158
6542
|
}>;
|
|
7159
6543
|
type FlowInstanceApiResponse = z.infer<typeof FlowInstanceApiResponse>;
|
|
7160
6544
|
type FlowInstance = FlowInstanceApiResponse;
|
|
@@ -8137,7 +7521,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8137
7521
|
createdAt: z.ZodString;
|
|
8138
7522
|
updatedAt: z.ZodString;
|
|
8139
7523
|
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
8140
|
-
outdated: z.ZodOptional<z.ZodBoolean>;
|
|
8141
7524
|
customized: z.ZodOptional<z.ZodObject<{
|
|
8142
7525
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
8143
7526
|
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8177,7 +7560,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8177
7560
|
universalFlowId?: string | undefined;
|
|
8178
7561
|
nodes?: Record<string, any> | undefined;
|
|
8179
7562
|
flowId?: string | undefined;
|
|
8180
|
-
outdated?: boolean | undefined;
|
|
8181
7563
|
}, {
|
|
8182
7564
|
id: string;
|
|
8183
7565
|
name: string;
|
|
@@ -8206,7 +7588,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8206
7588
|
universalFlowId?: string | undefined;
|
|
8207
7589
|
nodes?: Record<string, any> | undefined;
|
|
8208
7590
|
flowId?: string | undefined;
|
|
8209
|
-
outdated?: boolean | undefined;
|
|
8210
7591
|
}>>;
|
|
8211
7592
|
connection: z.ZodOptional<z.ZodObject<{
|
|
8212
7593
|
id: z.ZodString;
|
|
@@ -8512,7 +7893,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8512
7893
|
universalFlowId?: string | undefined;
|
|
8513
7894
|
nodes?: Record<string, any> | undefined;
|
|
8514
7895
|
flowId?: string | undefined;
|
|
8515
|
-
outdated?: boolean | undefined;
|
|
8516
7896
|
} | undefined;
|
|
8517
7897
|
}, {
|
|
8518
7898
|
id: string;
|
|
@@ -8630,7 +8010,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8630
8010
|
universalFlowId?: string | undefined;
|
|
8631
8011
|
nodes?: Record<string, any> | undefined;
|
|
8632
8012
|
flowId?: string | undefined;
|
|
8633
|
-
outdated?: boolean | undefined;
|
|
8634
8013
|
} | undefined;
|
|
8635
8014
|
}>;
|
|
8636
8015
|
type FlowRunApiResponse = z.infer<typeof FlowRunApiResponse>;
|
|
@@ -8700,7 +8079,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
8700
8079
|
createdAt: z.ZodString;
|
|
8701
8080
|
updatedAt: z.ZodString;
|
|
8702
8081
|
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
8703
|
-
outdated: z.ZodOptional<z.ZodBoolean>;
|
|
8704
8082
|
customized: z.ZodOptional<z.ZodObject<{
|
|
8705
8083
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
8706
8084
|
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8740,7 +8118,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
8740
8118
|
universalFlowId?: string | undefined;
|
|
8741
8119
|
nodes?: Record<string, any> | undefined;
|
|
8742
8120
|
flowId?: string | undefined;
|
|
8743
|
-
outdated?: boolean | undefined;
|
|
8744
8121
|
}, {
|
|
8745
8122
|
id: string;
|
|
8746
8123
|
name: string;
|
|
@@ -8769,7 +8146,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
8769
8146
|
universalFlowId?: string | undefined;
|
|
8770
8147
|
nodes?: Record<string, any> | undefined;
|
|
8771
8148
|
flowId?: string | undefined;
|
|
8772
|
-
outdated?: boolean | undefined;
|
|
8773
8149
|
}>>;
|
|
8774
8150
|
connection: z.ZodOptional<z.ZodObject<{
|
|
8775
8151
|
id: z.ZodString;
|
|
@@ -9075,7 +8451,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9075
8451
|
universalFlowId?: string | undefined;
|
|
9076
8452
|
nodes?: Record<string, any> | undefined;
|
|
9077
8453
|
flowId?: string | undefined;
|
|
9078
|
-
outdated?: boolean | undefined;
|
|
9079
8454
|
} | undefined;
|
|
9080
8455
|
}, {
|
|
9081
8456
|
id: string;
|
|
@@ -9193,7 +8568,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9193
8568
|
universalFlowId?: string | undefined;
|
|
9194
8569
|
nodes?: Record<string, any> | undefined;
|
|
9195
8570
|
flowId?: string | undefined;
|
|
9196
|
-
outdated?: boolean | undefined;
|
|
9197
8571
|
} | undefined;
|
|
9198
8572
|
}>, "many">;
|
|
9199
8573
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -9314,7 +8688,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9314
8688
|
universalFlowId?: string | undefined;
|
|
9315
8689
|
nodes?: Record<string, any> | undefined;
|
|
9316
8690
|
flowId?: string | undefined;
|
|
9317
|
-
outdated?: boolean | undefined;
|
|
9318
8691
|
} | undefined;
|
|
9319
8692
|
}[];
|
|
9320
8693
|
cursor?: string | undefined;
|
|
@@ -9435,7 +8808,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9435
8808
|
universalFlowId?: string | undefined;
|
|
9436
8809
|
nodes?: Record<string, any> | undefined;
|
|
9437
8810
|
flowId?: string | undefined;
|
|
9438
|
-
outdated?: boolean | undefined;
|
|
9439
8811
|
} | undefined;
|
|
9440
8812
|
}[];
|
|
9441
8813
|
cursor?: string | undefined;
|