@membranehq/sdk 0.5.1 → 0.5.2
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 +160 -2153
- package/dist/dts/accessors/connections-accessors.d.ts +1 -15
- package/dist/dts/accessors/integrations-accessors.d.ts +1 -15
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +3 -3
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +5 -99
- package/dist/dts/workspace-elements/api/actions-api.d.ts +0 -192
- package/dist/dts/workspace-elements/api/connections-api.d.ts +291 -211
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +5 -99
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +5 -99
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +0 -192
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +5 -99
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +5 -99
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +5 -99
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +0 -108
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +12 -228
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +0 -192
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +12 -228
- package/dist/dts/workspace-elements/api/flows-api.d.ts +42 -530
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +109 -75
- package/dist/dts/workspace-elements/api/scenarios-api.d.ts +0 -84
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +3 -3
- package/dist/dts/workspace-elements/base/connections/types.d.ts +3 -9
- package/dist/dts/workspace-elements/base/flow-instances/schemas.d.ts +4 -4
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/flows/types.d.ts +6 -6
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +0 -407
- package/dist/dts/workspaces/types.d.ts +1 -1
- package/dist/index.d.ts +530 -3109
- package/dist/index.js +22 -18
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +530 -3109
- package/dist/index.module.mjs +22 -19
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -213,9 +213,7 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
213
213
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
214
214
|
error: any;
|
|
215
215
|
integrationId: z.ZodString;
|
|
216
|
-
|
|
217
|
-
parameters: z.ZodOptional<z.ZodUnknown>;
|
|
218
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
216
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
219
217
|
createdAt: z.ZodString;
|
|
220
218
|
updatedAt: z.ZodString;
|
|
221
219
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
@@ -237,9 +235,7 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
237
235
|
errors?: any[] | undefined;
|
|
238
236
|
isDeactivated?: boolean | undefined;
|
|
239
237
|
archivedAt?: string | undefined;
|
|
240
|
-
|
|
241
|
-
parameters?: unknown;
|
|
242
|
-
connectorParameters?: unknown;
|
|
238
|
+
authOptionKey?: string | undefined;
|
|
243
239
|
isTest?: boolean | undefined;
|
|
244
240
|
disconnected?: boolean | undefined;
|
|
245
241
|
isDefunct?: boolean | undefined;
|
|
@@ -258,9 +254,7 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
258
254
|
errors?: any[] | undefined;
|
|
259
255
|
isDeactivated?: boolean | undefined;
|
|
260
256
|
archivedAt?: string | undefined;
|
|
261
|
-
|
|
262
|
-
parameters?: unknown;
|
|
263
|
-
connectorParameters?: unknown;
|
|
257
|
+
authOptionKey?: string | undefined;
|
|
264
258
|
isTest?: boolean | undefined;
|
|
265
259
|
disconnected?: boolean | undefined;
|
|
266
260
|
isDefunct?: boolean | undefined;
|
|
@@ -283,44 +277,8 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
283
277
|
logoUri: z.ZodString;
|
|
284
278
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
285
279
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
286
|
-
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
287
|
-
key: z.ZodString;
|
|
288
|
-
type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
|
|
289
|
-
title: z.ZodOptional<z.ZodString>;
|
|
290
|
-
description: z.ZodOptional<z.ZodString>;
|
|
291
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
292
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
293
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
294
|
-
}, "strip", z.ZodTypeAny, {
|
|
295
|
-
schema?: any;
|
|
296
|
-
helpUri?: string | undefined;
|
|
297
|
-
}, {
|
|
298
|
-
schema?: any;
|
|
299
|
-
helpUri?: string | undefined;
|
|
300
|
-
}>>;
|
|
301
|
-
}, "strip", z.ZodTypeAny, {
|
|
302
|
-
key: string;
|
|
303
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
304
|
-
description?: string | undefined;
|
|
305
|
-
title?: string | undefined;
|
|
306
|
-
ui?: {
|
|
307
|
-
schema?: any;
|
|
308
|
-
helpUri?: string | undefined;
|
|
309
|
-
} | undefined;
|
|
310
|
-
}, {
|
|
311
|
-
key: string;
|
|
312
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
313
|
-
description?: string | undefined;
|
|
314
|
-
title?: string | undefined;
|
|
315
|
-
ui?: {
|
|
316
|
-
schema?: any;
|
|
317
|
-
helpUri?: string | undefined;
|
|
318
|
-
} | undefined;
|
|
319
|
-
}>, "many">>;
|
|
320
280
|
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
321
|
-
parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
|
|
322
281
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
323
|
-
baseUri: z.ZodString;
|
|
324
282
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
325
283
|
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
326
284
|
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -339,7 +297,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
339
297
|
}, "strip", z.ZodTypeAny, {
|
|
340
298
|
id: string;
|
|
341
299
|
name: string;
|
|
342
|
-
baseUri: string;
|
|
343
300
|
logoUri: string;
|
|
344
301
|
key?: string | undefined;
|
|
345
302
|
uuid?: string | undefined;
|
|
@@ -352,20 +309,9 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
352
309
|
updatedAt?: string | undefined;
|
|
353
310
|
archivedAt?: string | undefined;
|
|
354
311
|
parameters?: any;
|
|
355
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
356
312
|
isTest?: boolean | undefined;
|
|
357
313
|
connectorId?: string | undefined;
|
|
358
314
|
connectorVersion?: string | undefined;
|
|
359
|
-
authOptions?: {
|
|
360
|
-
key: string;
|
|
361
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
362
|
-
description?: string | undefined;
|
|
363
|
-
title?: string | undefined;
|
|
364
|
-
ui?: {
|
|
365
|
-
schema?: any;
|
|
366
|
-
helpUri?: string | undefined;
|
|
367
|
-
} | undefined;
|
|
368
|
-
}[] | undefined;
|
|
369
315
|
oAuthCallbackUri?: string | undefined;
|
|
370
316
|
hasMissingParameters?: boolean | undefined;
|
|
371
317
|
hasDocumentation?: boolean | undefined;
|
|
@@ -382,7 +328,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
382
328
|
}, {
|
|
383
329
|
id: string;
|
|
384
330
|
name: string;
|
|
385
|
-
baseUri: string;
|
|
386
331
|
logoUri: string;
|
|
387
332
|
key?: string | undefined;
|
|
388
333
|
uuid?: string | undefined;
|
|
@@ -395,20 +340,9 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
395
340
|
updatedAt?: string | undefined;
|
|
396
341
|
archivedAt?: string | undefined;
|
|
397
342
|
parameters?: any;
|
|
398
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
399
343
|
isTest?: boolean | undefined;
|
|
400
344
|
connectorId?: string | undefined;
|
|
401
345
|
connectorVersion?: string | undefined;
|
|
402
|
-
authOptions?: {
|
|
403
|
-
key: string;
|
|
404
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
405
|
-
description?: string | undefined;
|
|
406
|
-
title?: string | undefined;
|
|
407
|
-
ui?: {
|
|
408
|
-
schema?: any;
|
|
409
|
-
helpUri?: string | undefined;
|
|
410
|
-
} | undefined;
|
|
411
|
-
}[] | undefined;
|
|
412
346
|
oAuthCallbackUri?: string | undefined;
|
|
413
347
|
hasMissingParameters?: boolean | undefined;
|
|
414
348
|
hasDocumentation?: boolean | undefined;
|
|
@@ -476,9 +410,7 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
476
410
|
errors?: any[] | undefined;
|
|
477
411
|
isDeactivated?: boolean | undefined;
|
|
478
412
|
archivedAt?: string | undefined;
|
|
479
|
-
|
|
480
|
-
parameters?: unknown;
|
|
481
|
-
connectorParameters?: unknown;
|
|
413
|
+
authOptionKey?: string | undefined;
|
|
482
414
|
isTest?: boolean | undefined;
|
|
483
415
|
disconnected?: boolean | undefined;
|
|
484
416
|
isDefunct?: boolean | undefined;
|
|
@@ -489,7 +421,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
489
421
|
integration?: {
|
|
490
422
|
id: string;
|
|
491
423
|
name: string;
|
|
492
|
-
baseUri: string;
|
|
493
424
|
logoUri: string;
|
|
494
425
|
key?: string | undefined;
|
|
495
426
|
uuid?: string | undefined;
|
|
@@ -502,20 +433,9 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
502
433
|
updatedAt?: string | undefined;
|
|
503
434
|
archivedAt?: string | undefined;
|
|
504
435
|
parameters?: any;
|
|
505
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
506
436
|
isTest?: boolean | undefined;
|
|
507
437
|
connectorId?: string | undefined;
|
|
508
438
|
connectorVersion?: string | undefined;
|
|
509
|
-
authOptions?: {
|
|
510
|
-
key: string;
|
|
511
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
512
|
-
description?: string | undefined;
|
|
513
|
-
title?: string | undefined;
|
|
514
|
-
ui?: {
|
|
515
|
-
schema?: any;
|
|
516
|
-
helpUri?: string | undefined;
|
|
517
|
-
} | undefined;
|
|
518
|
-
}[] | undefined;
|
|
519
439
|
oAuthCallbackUri?: string | undefined;
|
|
520
440
|
hasMissingParameters?: boolean | undefined;
|
|
521
441
|
hasDocumentation?: boolean | undefined;
|
|
@@ -608,9 +528,7 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
608
528
|
errors?: any[] | undefined;
|
|
609
529
|
isDeactivated?: boolean | undefined;
|
|
610
530
|
archivedAt?: string | undefined;
|
|
611
|
-
|
|
612
|
-
parameters?: unknown;
|
|
613
|
-
connectorParameters?: unknown;
|
|
531
|
+
authOptionKey?: string | undefined;
|
|
614
532
|
isTest?: boolean | undefined;
|
|
615
533
|
disconnected?: boolean | undefined;
|
|
616
534
|
isDefunct?: boolean | undefined;
|
|
@@ -621,7 +539,6 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
621
539
|
integration?: {
|
|
622
540
|
id: string;
|
|
623
541
|
name: string;
|
|
624
|
-
baseUri: string;
|
|
625
542
|
logoUri: string;
|
|
626
543
|
key?: string | undefined;
|
|
627
544
|
uuid?: string | undefined;
|
|
@@ -634,20 +551,9 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
634
551
|
updatedAt?: string | undefined;
|
|
635
552
|
archivedAt?: string | undefined;
|
|
636
553
|
parameters?: any;
|
|
637
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
638
554
|
isTest?: boolean | undefined;
|
|
639
555
|
connectorId?: string | undefined;
|
|
640
556
|
connectorVersion?: string | undefined;
|
|
641
|
-
authOptions?: {
|
|
642
|
-
key: string;
|
|
643
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
644
|
-
description?: string | undefined;
|
|
645
|
-
title?: string | undefined;
|
|
646
|
-
ui?: {
|
|
647
|
-
schema?: any;
|
|
648
|
-
helpUri?: string | undefined;
|
|
649
|
-
} | undefined;
|
|
650
|
-
}[] | undefined;
|
|
651
557
|
oAuthCallbackUri?: string | undefined;
|
|
652
558
|
hasMissingParameters?: boolean | undefined;
|
|
653
559
|
hasDocumentation?: boolean | undefined;
|
|
@@ -870,9 +776,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
870
776
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
871
777
|
error: any;
|
|
872
778
|
integrationId: z.ZodString;
|
|
873
|
-
|
|
874
|
-
parameters: z.ZodOptional<z.ZodUnknown>;
|
|
875
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
779
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
876
780
|
createdAt: z.ZodString;
|
|
877
781
|
updatedAt: z.ZodString;
|
|
878
782
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
@@ -894,9 +798,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
894
798
|
errors?: any[] | undefined;
|
|
895
799
|
isDeactivated?: boolean | undefined;
|
|
896
800
|
archivedAt?: string | undefined;
|
|
897
|
-
|
|
898
|
-
parameters?: unknown;
|
|
899
|
-
connectorParameters?: unknown;
|
|
801
|
+
authOptionKey?: string | undefined;
|
|
900
802
|
isTest?: boolean | undefined;
|
|
901
803
|
disconnected?: boolean | undefined;
|
|
902
804
|
isDefunct?: boolean | undefined;
|
|
@@ -915,9 +817,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
915
817
|
errors?: any[] | undefined;
|
|
916
818
|
isDeactivated?: boolean | undefined;
|
|
917
819
|
archivedAt?: string | undefined;
|
|
918
|
-
|
|
919
|
-
parameters?: unknown;
|
|
920
|
-
connectorParameters?: unknown;
|
|
820
|
+
authOptionKey?: string | undefined;
|
|
921
821
|
isTest?: boolean | undefined;
|
|
922
822
|
disconnected?: boolean | undefined;
|
|
923
823
|
isDefunct?: boolean | undefined;
|
|
@@ -940,44 +840,8 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
940
840
|
logoUri: z.ZodString;
|
|
941
841
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
942
842
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
943
|
-
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
944
|
-
key: z.ZodString;
|
|
945
|
-
type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
|
|
946
|
-
title: z.ZodOptional<z.ZodString>;
|
|
947
|
-
description: z.ZodOptional<z.ZodString>;
|
|
948
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
949
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
950
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
951
|
-
}, "strip", z.ZodTypeAny, {
|
|
952
|
-
schema?: any;
|
|
953
|
-
helpUri?: string | undefined;
|
|
954
|
-
}, {
|
|
955
|
-
schema?: any;
|
|
956
|
-
helpUri?: string | undefined;
|
|
957
|
-
}>>;
|
|
958
|
-
}, "strip", z.ZodTypeAny, {
|
|
959
|
-
key: string;
|
|
960
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
961
|
-
description?: string | undefined;
|
|
962
|
-
title?: string | undefined;
|
|
963
|
-
ui?: {
|
|
964
|
-
schema?: any;
|
|
965
|
-
helpUri?: string | undefined;
|
|
966
|
-
} | undefined;
|
|
967
|
-
}, {
|
|
968
|
-
key: string;
|
|
969
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
970
|
-
description?: string | undefined;
|
|
971
|
-
title?: string | undefined;
|
|
972
|
-
ui?: {
|
|
973
|
-
schema?: any;
|
|
974
|
-
helpUri?: string | undefined;
|
|
975
|
-
} | undefined;
|
|
976
|
-
}>, "many">>;
|
|
977
843
|
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
978
|
-
parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
|
|
979
844
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
980
|
-
baseUri: z.ZodString;
|
|
981
845
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
982
846
|
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
983
847
|
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -996,7 +860,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
996
860
|
}, "strip", z.ZodTypeAny, {
|
|
997
861
|
id: string;
|
|
998
862
|
name: string;
|
|
999
|
-
baseUri: string;
|
|
1000
863
|
logoUri: string;
|
|
1001
864
|
key?: string | undefined;
|
|
1002
865
|
uuid?: string | undefined;
|
|
@@ -1009,20 +872,9 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1009
872
|
updatedAt?: string | undefined;
|
|
1010
873
|
archivedAt?: string | undefined;
|
|
1011
874
|
parameters?: any;
|
|
1012
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
1013
875
|
isTest?: boolean | undefined;
|
|
1014
876
|
connectorId?: string | undefined;
|
|
1015
877
|
connectorVersion?: string | undefined;
|
|
1016
|
-
authOptions?: {
|
|
1017
|
-
key: string;
|
|
1018
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
1019
|
-
description?: string | undefined;
|
|
1020
|
-
title?: string | undefined;
|
|
1021
|
-
ui?: {
|
|
1022
|
-
schema?: any;
|
|
1023
|
-
helpUri?: string | undefined;
|
|
1024
|
-
} | undefined;
|
|
1025
|
-
}[] | undefined;
|
|
1026
878
|
oAuthCallbackUri?: string | undefined;
|
|
1027
879
|
hasMissingParameters?: boolean | undefined;
|
|
1028
880
|
hasDocumentation?: boolean | undefined;
|
|
@@ -1039,7 +891,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1039
891
|
}, {
|
|
1040
892
|
id: string;
|
|
1041
893
|
name: string;
|
|
1042
|
-
baseUri: string;
|
|
1043
894
|
logoUri: string;
|
|
1044
895
|
key?: string | undefined;
|
|
1045
896
|
uuid?: string | undefined;
|
|
@@ -1052,20 +903,9 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1052
903
|
updatedAt?: string | undefined;
|
|
1053
904
|
archivedAt?: string | undefined;
|
|
1054
905
|
parameters?: any;
|
|
1055
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
1056
906
|
isTest?: boolean | undefined;
|
|
1057
907
|
connectorId?: string | undefined;
|
|
1058
908
|
connectorVersion?: string | undefined;
|
|
1059
|
-
authOptions?: {
|
|
1060
|
-
key: string;
|
|
1061
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
1062
|
-
description?: string | undefined;
|
|
1063
|
-
title?: string | undefined;
|
|
1064
|
-
ui?: {
|
|
1065
|
-
schema?: any;
|
|
1066
|
-
helpUri?: string | undefined;
|
|
1067
|
-
} | undefined;
|
|
1068
|
-
}[] | undefined;
|
|
1069
909
|
oAuthCallbackUri?: string | undefined;
|
|
1070
910
|
hasMissingParameters?: boolean | undefined;
|
|
1071
911
|
hasDocumentation?: boolean | undefined;
|
|
@@ -1133,9 +973,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1133
973
|
errors?: any[] | undefined;
|
|
1134
974
|
isDeactivated?: boolean | undefined;
|
|
1135
975
|
archivedAt?: string | undefined;
|
|
1136
|
-
|
|
1137
|
-
parameters?: unknown;
|
|
1138
|
-
connectorParameters?: unknown;
|
|
976
|
+
authOptionKey?: string | undefined;
|
|
1139
977
|
isTest?: boolean | undefined;
|
|
1140
978
|
disconnected?: boolean | undefined;
|
|
1141
979
|
isDefunct?: boolean | undefined;
|
|
@@ -1146,7 +984,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1146
984
|
integration?: {
|
|
1147
985
|
id: string;
|
|
1148
986
|
name: string;
|
|
1149
|
-
baseUri: string;
|
|
1150
987
|
logoUri: string;
|
|
1151
988
|
key?: string | undefined;
|
|
1152
989
|
uuid?: string | undefined;
|
|
@@ -1159,20 +996,9 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1159
996
|
updatedAt?: string | undefined;
|
|
1160
997
|
archivedAt?: string | undefined;
|
|
1161
998
|
parameters?: any;
|
|
1162
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
1163
999
|
isTest?: boolean | undefined;
|
|
1164
1000
|
connectorId?: string | undefined;
|
|
1165
1001
|
connectorVersion?: string | undefined;
|
|
1166
|
-
authOptions?: {
|
|
1167
|
-
key: string;
|
|
1168
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
1169
|
-
description?: string | undefined;
|
|
1170
|
-
title?: string | undefined;
|
|
1171
|
-
ui?: {
|
|
1172
|
-
schema?: any;
|
|
1173
|
-
helpUri?: string | undefined;
|
|
1174
|
-
} | undefined;
|
|
1175
|
-
}[] | undefined;
|
|
1176
1002
|
oAuthCallbackUri?: string | undefined;
|
|
1177
1003
|
hasMissingParameters?: boolean | undefined;
|
|
1178
1004
|
hasDocumentation?: boolean | undefined;
|
|
@@ -1265,9 +1091,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1265
1091
|
errors?: any[] | undefined;
|
|
1266
1092
|
isDeactivated?: boolean | undefined;
|
|
1267
1093
|
archivedAt?: string | undefined;
|
|
1268
|
-
|
|
1269
|
-
parameters?: unknown;
|
|
1270
|
-
connectorParameters?: unknown;
|
|
1094
|
+
authOptionKey?: string | undefined;
|
|
1271
1095
|
isTest?: boolean | undefined;
|
|
1272
1096
|
disconnected?: boolean | undefined;
|
|
1273
1097
|
isDefunct?: boolean | undefined;
|
|
@@ -1278,7 +1102,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1278
1102
|
integration?: {
|
|
1279
1103
|
id: string;
|
|
1280
1104
|
name: string;
|
|
1281
|
-
baseUri: string;
|
|
1282
1105
|
logoUri: string;
|
|
1283
1106
|
key?: string | undefined;
|
|
1284
1107
|
uuid?: string | undefined;
|
|
@@ -1291,20 +1114,9 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1291
1114
|
updatedAt?: string | undefined;
|
|
1292
1115
|
archivedAt?: string | undefined;
|
|
1293
1116
|
parameters?: any;
|
|
1294
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
1295
1117
|
isTest?: boolean | undefined;
|
|
1296
1118
|
connectorId?: string | undefined;
|
|
1297
1119
|
connectorVersion?: string | undefined;
|
|
1298
|
-
authOptions?: {
|
|
1299
|
-
key: string;
|
|
1300
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
1301
|
-
description?: string | undefined;
|
|
1302
|
-
title?: string | undefined;
|
|
1303
|
-
ui?: {
|
|
1304
|
-
schema?: any;
|
|
1305
|
-
helpUri?: string | undefined;
|
|
1306
|
-
} | undefined;
|
|
1307
|
-
}[] | undefined;
|
|
1308
1120
|
oAuthCallbackUri?: string | undefined;
|
|
1309
1121
|
hasMissingParameters?: boolean | undefined;
|
|
1310
1122
|
hasDocumentation?: boolean | undefined;
|
|
@@ -1400,9 +1212,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1400
1212
|
errors?: any[] | undefined;
|
|
1401
1213
|
isDeactivated?: boolean | undefined;
|
|
1402
1214
|
archivedAt?: string | undefined;
|
|
1403
|
-
|
|
1404
|
-
parameters?: unknown;
|
|
1405
|
-
connectorParameters?: unknown;
|
|
1215
|
+
authOptionKey?: string | undefined;
|
|
1406
1216
|
isTest?: boolean | undefined;
|
|
1407
1217
|
disconnected?: boolean | undefined;
|
|
1408
1218
|
isDefunct?: boolean | undefined;
|
|
@@ -1413,7 +1223,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1413
1223
|
integration?: {
|
|
1414
1224
|
id: string;
|
|
1415
1225
|
name: string;
|
|
1416
|
-
baseUri: string;
|
|
1417
1226
|
logoUri: string;
|
|
1418
1227
|
key?: string | undefined;
|
|
1419
1228
|
uuid?: string | undefined;
|
|
@@ -1426,20 +1235,9 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1426
1235
|
updatedAt?: string | undefined;
|
|
1427
1236
|
archivedAt?: string | undefined;
|
|
1428
1237
|
parameters?: any;
|
|
1429
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
1430
1238
|
isTest?: boolean | undefined;
|
|
1431
1239
|
connectorId?: string | undefined;
|
|
1432
1240
|
connectorVersion?: string | undefined;
|
|
1433
|
-
authOptions?: {
|
|
1434
|
-
key: string;
|
|
1435
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
1436
|
-
description?: string | undefined;
|
|
1437
|
-
title?: string | undefined;
|
|
1438
|
-
ui?: {
|
|
1439
|
-
schema?: any;
|
|
1440
|
-
helpUri?: string | undefined;
|
|
1441
|
-
} | undefined;
|
|
1442
|
-
}[] | undefined;
|
|
1443
1241
|
oAuthCallbackUri?: string | undefined;
|
|
1444
1242
|
hasMissingParameters?: boolean | undefined;
|
|
1445
1243
|
hasDocumentation?: boolean | undefined;
|
|
@@ -1535,9 +1333,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1535
1333
|
errors?: any[] | undefined;
|
|
1536
1334
|
isDeactivated?: boolean | undefined;
|
|
1537
1335
|
archivedAt?: string | undefined;
|
|
1538
|
-
|
|
1539
|
-
parameters?: unknown;
|
|
1540
|
-
connectorParameters?: unknown;
|
|
1336
|
+
authOptionKey?: string | undefined;
|
|
1541
1337
|
isTest?: boolean | undefined;
|
|
1542
1338
|
disconnected?: boolean | undefined;
|
|
1543
1339
|
isDefunct?: boolean | undefined;
|
|
@@ -1548,7 +1344,6 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1548
1344
|
integration?: {
|
|
1549
1345
|
id: string;
|
|
1550
1346
|
name: string;
|
|
1551
|
-
baseUri: string;
|
|
1552
1347
|
logoUri: string;
|
|
1553
1348
|
key?: string | undefined;
|
|
1554
1349
|
uuid?: string | undefined;
|
|
@@ -1561,20 +1356,9 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
1561
1356
|
updatedAt?: string | undefined;
|
|
1562
1357
|
archivedAt?: string | undefined;
|
|
1563
1358
|
parameters?: any;
|
|
1564
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
1565
1359
|
isTest?: boolean | undefined;
|
|
1566
1360
|
connectorId?: string | undefined;
|
|
1567
1361
|
connectorVersion?: string | undefined;
|
|
1568
|
-
authOptions?: {
|
|
1569
|
-
key: string;
|
|
1570
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
1571
|
-
description?: string | undefined;
|
|
1572
|
-
title?: string | undefined;
|
|
1573
|
-
ui?: {
|
|
1574
|
-
schema?: any;
|
|
1575
|
-
helpUri?: string | undefined;
|
|
1576
|
-
} | undefined;
|
|
1577
|
-
}[] | undefined;
|
|
1578
1362
|
oAuthCallbackUri?: string | undefined;
|
|
1579
1363
|
hasMissingParameters?: boolean | undefined;
|
|
1580
1364
|
hasDocumentation?: boolean | undefined;
|