@membranehq/sdk 0.5.2 → 0.6.0
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 +1661 -1666
- package/dist/bundle.js +9 -4
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/action-instances-accessors.d.ts +5 -2
- package/dist/dts/accessors/actions-accessors.d.ts +2 -2
- package/dist/dts/accessors/connections-accessors.d.ts +7 -7
- package/dist/dts/accessors/integrations-accessors.d.ts +7 -7
- package/dist/dts/errors/index.d.ts +10 -1
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +119 -65
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +69 -90
- package/dist/dts/workspace-elements/api/actions-api.d.ts +253 -339
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +21 -21
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +7 -7
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +22 -22
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +18 -18
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +7 -7
- package/dist/dts/workspace-elements/api/connections-api.d.ts +90 -89
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +50 -50
- package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +7 -7
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +55 -55
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +62 -62
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +40 -40
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +40 -40
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +35 -35
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +20 -20
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +146 -146
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +56 -56
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +128 -128
- package/dist/dts/workspace-elements/api/flows-api.d.ts +223 -223
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +26 -26
- package/dist/dts/workspace-elements/api/scenarios-api.d.ts +21 -21
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +10 -10
- package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/actions/index.d.ts +111 -1
- package/dist/dts/workspace-elements/base/app-data-schema-instances/types.d.ts +11 -10
- package/dist/dts/workspace-elements/base/app-data-schemas/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/app-event-subscriptions/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/app-event-types/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/connections/types.d.ts +11 -10
- package/dist/dts/workspace-elements/base/data-link-table-instances/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/data-link-tables/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/data-source-instances/types.d.ts +10 -9
- package/dist/dts/workspace-elements/base/data-sources/types.d.ts +8 -8
- package/dist/dts/workspace-elements/base/external-event-log-records/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/external-event-pulls/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/external-event-subscriptions/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/field-mapping-instances/types.d.ts +11 -10
- package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +9 -9
- package/dist/dts/workspace-elements/base/flow-instances/schemas.d.ts +8 -8
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +15 -14
- package/dist/dts/workspace-elements/base/flow-runs/flow-node-runs.d.ts +16 -16
- package/dist/dts/workspace-elements/base/flow-runs/types.d.ts +6 -5
- package/dist/dts/workspace-elements/base/flows/types.d.ts +15 -15
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +48 -48
- package/dist/dts/workspace-elements/base/scenarios/types.d.ts +7 -7
- package/dist/dts/workspace-elements/types.d.ts +53 -9
- package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
- package/dist/dts/workspaces/types.d.ts +2 -0
- package/dist/index.d.ts +2269 -2236
- package/dist/index.js +48 -48
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +2269 -2236
- package/dist/index.module.mjs +46 -48
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -3
- package/dist/dts/workspace-elements/base/actions/types.d.ts +0 -85
|
@@ -301,12 +301,12 @@ export declare const FindDataSourceInstanceSyncsQuery: z.ZodObject<{
|
|
|
301
301
|
export type FindDataSourceInstanceSyncsQuery = z.infer<typeof FindDataSourceInstanceSyncsQuery>;
|
|
302
302
|
export declare const DataSourceApiResponse: z.ZodObject<{
|
|
303
303
|
id: z.ZodString;
|
|
304
|
-
name: z.ZodString;
|
|
305
304
|
key: z.ZodOptional<z.ZodString>;
|
|
306
305
|
uuid: z.ZodOptional<z.ZodString>;
|
|
307
306
|
description: z.ZodOptional<z.ZodString>;
|
|
307
|
+
name: z.ZodString;
|
|
308
308
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
309
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
309
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
310
310
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
311
311
|
} & {
|
|
312
312
|
revision: z.ZodString;
|
|
@@ -327,12 +327,12 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
327
327
|
} & {
|
|
328
328
|
integration: z.ZodOptional<z.ZodObject<{
|
|
329
329
|
id: z.ZodString;
|
|
330
|
-
name: z.ZodString;
|
|
331
330
|
key: z.ZodOptional<z.ZodString>;
|
|
332
331
|
uuid: z.ZodOptional<z.ZodString>;
|
|
333
332
|
description: z.ZodOptional<z.ZodString>;
|
|
333
|
+
name: z.ZodString;
|
|
334
334
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
335
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
335
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
336
336
|
revision: z.ZodOptional<z.ZodString>;
|
|
337
337
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
338
338
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -365,14 +365,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
365
365
|
uuid?: string | undefined;
|
|
366
366
|
description?: string | undefined;
|
|
367
367
|
state?: import("..").WorkspaceElementState | undefined;
|
|
368
|
-
errors?:
|
|
368
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
369
369
|
revision?: string | undefined;
|
|
370
|
-
isDeactivated?: boolean | undefined;
|
|
371
370
|
createdAt?: string | undefined;
|
|
372
371
|
updatedAt?: string | undefined;
|
|
373
372
|
archivedAt?: string | undefined;
|
|
373
|
+
isDeactivated?: boolean | undefined;
|
|
374
374
|
parameters?: any;
|
|
375
|
-
isTest?: boolean | undefined;
|
|
376
375
|
connectorId?: string | undefined;
|
|
377
376
|
connectorVersion?: string | undefined;
|
|
378
377
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -386,6 +385,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
386
385
|
eventsCount?: number | undefined;
|
|
387
386
|
hasGlobalWebhooks?: boolean | undefined;
|
|
388
387
|
hasUdm?: boolean | undefined;
|
|
388
|
+
isTest?: boolean | undefined;
|
|
389
389
|
appUuid?: string | undefined;
|
|
390
390
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
391
391
|
}, {
|
|
@@ -396,14 +396,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
396
396
|
uuid?: string | undefined;
|
|
397
397
|
description?: string | undefined;
|
|
398
398
|
state?: import("..").WorkspaceElementState | undefined;
|
|
399
|
-
errors?:
|
|
399
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
400
400
|
revision?: string | undefined;
|
|
401
|
-
isDeactivated?: boolean | undefined;
|
|
402
401
|
createdAt?: string | undefined;
|
|
403
402
|
updatedAt?: string | undefined;
|
|
404
403
|
archivedAt?: string | undefined;
|
|
404
|
+
isDeactivated?: boolean | undefined;
|
|
405
405
|
parameters?: any;
|
|
406
|
-
isTest?: boolean | undefined;
|
|
407
406
|
connectorId?: string | undefined;
|
|
408
407
|
connectorVersion?: string | undefined;
|
|
409
408
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -417,18 +416,19 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
417
416
|
eventsCount?: number | undefined;
|
|
418
417
|
hasGlobalWebhooks?: boolean | undefined;
|
|
419
418
|
hasUdm?: boolean | undefined;
|
|
419
|
+
isTest?: boolean | undefined;
|
|
420
420
|
appUuid?: string | undefined;
|
|
421
421
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
422
422
|
}>>;
|
|
423
423
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
424
424
|
element: z.ZodObject<{
|
|
425
425
|
id: z.ZodString;
|
|
426
|
-
name: z.ZodString;
|
|
427
426
|
key: z.ZodOptional<z.ZodString>;
|
|
428
427
|
uuid: z.ZodOptional<z.ZodString>;
|
|
429
428
|
description: z.ZodOptional<z.ZodString>;
|
|
429
|
+
name: z.ZodString;
|
|
430
430
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
431
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
431
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
432
432
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
433
433
|
} & {
|
|
434
434
|
revision: z.ZodString;
|
|
@@ -454,15 +454,15 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
454
454
|
uuid?: string | undefined;
|
|
455
455
|
description?: string | undefined;
|
|
456
456
|
state?: import("..").WorkspaceElementState | undefined;
|
|
457
|
-
errors?:
|
|
458
|
-
isDeactivated?: boolean | undefined;
|
|
457
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
459
458
|
createdAt?: string | undefined;
|
|
460
459
|
updatedAt?: string | undefined;
|
|
461
460
|
archivedAt?: string | undefined;
|
|
461
|
+
isDeactivated?: boolean | undefined;
|
|
462
462
|
integrationId?: string | undefined;
|
|
463
|
-
udm?: string | undefined;
|
|
464
463
|
publishedRevision?: string | undefined;
|
|
465
464
|
customized?: boolean | undefined;
|
|
465
|
+
udm?: string | undefined;
|
|
466
466
|
universalDataSourceId?: string | undefined;
|
|
467
467
|
collectionKey?: string | undefined;
|
|
468
468
|
collectionParameters?: any;
|
|
@@ -478,15 +478,15 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
478
478
|
uuid?: string | undefined;
|
|
479
479
|
description?: string | undefined;
|
|
480
480
|
state?: import("..").WorkspaceElementState | undefined;
|
|
481
|
-
errors?:
|
|
482
|
-
isDeactivated?: boolean | undefined;
|
|
481
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
483
482
|
createdAt?: string | undefined;
|
|
484
483
|
updatedAt?: string | undefined;
|
|
485
484
|
archivedAt?: string | undefined;
|
|
485
|
+
isDeactivated?: boolean | undefined;
|
|
486
486
|
integrationId?: string | undefined;
|
|
487
|
-
udm?: string | undefined;
|
|
488
487
|
publishedRevision?: string | undefined;
|
|
489
488
|
customized?: boolean | undefined;
|
|
489
|
+
udm?: string | undefined;
|
|
490
490
|
universalDataSourceId?: string | undefined;
|
|
491
491
|
collectionKey?: string | undefined;
|
|
492
492
|
collectionParameters?: any;
|
|
@@ -497,12 +497,12 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
497
497
|
}>;
|
|
498
498
|
integration: z.ZodObject<{
|
|
499
499
|
id: z.ZodString;
|
|
500
|
-
name: z.ZodString;
|
|
501
500
|
key: z.ZodOptional<z.ZodString>;
|
|
502
501
|
uuid: z.ZodOptional<z.ZodString>;
|
|
503
502
|
description: z.ZodOptional<z.ZodString>;
|
|
503
|
+
name: z.ZodString;
|
|
504
504
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
505
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
505
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
506
506
|
revision: z.ZodOptional<z.ZodString>;
|
|
507
507
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
508
508
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -535,14 +535,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
535
535
|
uuid?: string | undefined;
|
|
536
536
|
description?: string | undefined;
|
|
537
537
|
state?: import("..").WorkspaceElementState | undefined;
|
|
538
|
-
errors?:
|
|
538
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
539
539
|
revision?: string | undefined;
|
|
540
|
-
isDeactivated?: boolean | undefined;
|
|
541
540
|
createdAt?: string | undefined;
|
|
542
541
|
updatedAt?: string | undefined;
|
|
543
542
|
archivedAt?: string | undefined;
|
|
543
|
+
isDeactivated?: boolean | undefined;
|
|
544
544
|
parameters?: any;
|
|
545
|
-
isTest?: boolean | undefined;
|
|
546
545
|
connectorId?: string | undefined;
|
|
547
546
|
connectorVersion?: string | undefined;
|
|
548
547
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -556,6 +555,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
556
555
|
eventsCount?: number | undefined;
|
|
557
556
|
hasGlobalWebhooks?: boolean | undefined;
|
|
558
557
|
hasUdm?: boolean | undefined;
|
|
558
|
+
isTest?: boolean | undefined;
|
|
559
559
|
appUuid?: string | undefined;
|
|
560
560
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
561
561
|
}, {
|
|
@@ -566,14 +566,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
566
566
|
uuid?: string | undefined;
|
|
567
567
|
description?: string | undefined;
|
|
568
568
|
state?: import("..").WorkspaceElementState | undefined;
|
|
569
|
-
errors?:
|
|
569
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
570
570
|
revision?: string | undefined;
|
|
571
|
-
isDeactivated?: boolean | undefined;
|
|
572
571
|
createdAt?: string | undefined;
|
|
573
572
|
updatedAt?: string | undefined;
|
|
574
573
|
archivedAt?: string | undefined;
|
|
574
|
+
isDeactivated?: boolean | undefined;
|
|
575
575
|
parameters?: any;
|
|
576
|
-
isTest?: boolean | undefined;
|
|
577
576
|
connectorId?: string | undefined;
|
|
578
577
|
connectorVersion?: string | undefined;
|
|
579
578
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -587,6 +586,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
587
586
|
eventsCount?: number | undefined;
|
|
588
587
|
hasGlobalWebhooks?: boolean | undefined;
|
|
589
588
|
hasUdm?: boolean | undefined;
|
|
589
|
+
isTest?: boolean | undefined;
|
|
590
590
|
appUuid?: string | undefined;
|
|
591
591
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
592
592
|
}>;
|
|
@@ -599,14 +599,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
599
599
|
uuid?: string | undefined;
|
|
600
600
|
description?: string | undefined;
|
|
601
601
|
state?: import("..").WorkspaceElementState | undefined;
|
|
602
|
-
errors?:
|
|
602
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
603
603
|
revision?: string | undefined;
|
|
604
|
-
isDeactivated?: boolean | undefined;
|
|
605
604
|
createdAt?: string | undefined;
|
|
606
605
|
updatedAt?: string | undefined;
|
|
607
606
|
archivedAt?: string | undefined;
|
|
607
|
+
isDeactivated?: boolean | undefined;
|
|
608
608
|
parameters?: any;
|
|
609
|
-
isTest?: boolean | undefined;
|
|
610
609
|
connectorId?: string | undefined;
|
|
611
610
|
connectorVersion?: string | undefined;
|
|
612
611
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -620,6 +619,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
620
619
|
eventsCount?: number | undefined;
|
|
621
620
|
hasGlobalWebhooks?: boolean | undefined;
|
|
622
621
|
hasUdm?: boolean | undefined;
|
|
622
|
+
isTest?: boolean | undefined;
|
|
623
623
|
appUuid?: string | undefined;
|
|
624
624
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
625
625
|
};
|
|
@@ -631,15 +631,15 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
631
631
|
uuid?: string | undefined;
|
|
632
632
|
description?: string | undefined;
|
|
633
633
|
state?: import("..").WorkspaceElementState | undefined;
|
|
634
|
-
errors?:
|
|
635
|
-
isDeactivated?: boolean | undefined;
|
|
634
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
636
635
|
createdAt?: string | undefined;
|
|
637
636
|
updatedAt?: string | undefined;
|
|
638
637
|
archivedAt?: string | undefined;
|
|
638
|
+
isDeactivated?: boolean | undefined;
|
|
639
639
|
integrationId?: string | undefined;
|
|
640
|
-
udm?: string | undefined;
|
|
641
640
|
publishedRevision?: string | undefined;
|
|
642
641
|
customized?: boolean | undefined;
|
|
642
|
+
udm?: string | undefined;
|
|
643
643
|
universalDataSourceId?: string | undefined;
|
|
644
644
|
collectionKey?: string | undefined;
|
|
645
645
|
collectionParameters?: any;
|
|
@@ -657,14 +657,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
657
657
|
uuid?: string | undefined;
|
|
658
658
|
description?: string | undefined;
|
|
659
659
|
state?: import("..").WorkspaceElementState | undefined;
|
|
660
|
-
errors?:
|
|
660
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
661
661
|
revision?: string | undefined;
|
|
662
|
-
isDeactivated?: boolean | undefined;
|
|
663
662
|
createdAt?: string | undefined;
|
|
664
663
|
updatedAt?: string | undefined;
|
|
665
664
|
archivedAt?: string | undefined;
|
|
665
|
+
isDeactivated?: boolean | undefined;
|
|
666
666
|
parameters?: any;
|
|
667
|
-
isTest?: boolean | undefined;
|
|
668
667
|
connectorId?: string | undefined;
|
|
669
668
|
connectorVersion?: string | undefined;
|
|
670
669
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -678,6 +677,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
678
677
|
eventsCount?: number | undefined;
|
|
679
678
|
hasGlobalWebhooks?: boolean | undefined;
|
|
680
679
|
hasUdm?: boolean | undefined;
|
|
680
|
+
isTest?: boolean | undefined;
|
|
681
681
|
appUuid?: string | undefined;
|
|
682
682
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
683
683
|
};
|
|
@@ -689,15 +689,15 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
689
689
|
uuid?: string | undefined;
|
|
690
690
|
description?: string | undefined;
|
|
691
691
|
state?: import("..").WorkspaceElementState | undefined;
|
|
692
|
-
errors?:
|
|
693
|
-
isDeactivated?: boolean | undefined;
|
|
692
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
694
693
|
createdAt?: string | undefined;
|
|
695
694
|
updatedAt?: string | undefined;
|
|
696
695
|
archivedAt?: string | undefined;
|
|
696
|
+
isDeactivated?: boolean | undefined;
|
|
697
697
|
integrationId?: string | undefined;
|
|
698
|
-
udm?: string | undefined;
|
|
699
698
|
publishedRevision?: string | undefined;
|
|
700
699
|
customized?: boolean | undefined;
|
|
700
|
+
udm?: string | undefined;
|
|
701
701
|
universalDataSourceId?: string | undefined;
|
|
702
702
|
collectionKey?: string | undefined;
|
|
703
703
|
collectionParameters?: any;
|
|
@@ -720,14 +720,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
720
720
|
uuid?: string | undefined;
|
|
721
721
|
description?: string | undefined;
|
|
722
722
|
state?: import("..").WorkspaceElementState | undefined;
|
|
723
|
-
errors?:
|
|
723
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
724
724
|
revision?: string | undefined;
|
|
725
|
-
isDeactivated?: boolean | undefined;
|
|
726
725
|
createdAt?: string | undefined;
|
|
727
726
|
updatedAt?: string | undefined;
|
|
728
727
|
archivedAt?: string | undefined;
|
|
728
|
+
isDeactivated?: boolean | undefined;
|
|
729
729
|
parameters?: any;
|
|
730
|
-
isTest?: boolean | undefined;
|
|
731
730
|
connectorId?: string | undefined;
|
|
732
731
|
connectorVersion?: string | undefined;
|
|
733
732
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -741,21 +740,22 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
741
740
|
eventsCount?: number | undefined;
|
|
742
741
|
hasGlobalWebhooks?: boolean | undefined;
|
|
743
742
|
hasUdm?: boolean | undefined;
|
|
743
|
+
isTest?: boolean | undefined;
|
|
744
744
|
appUuid?: string | undefined;
|
|
745
745
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
746
746
|
} | undefined;
|
|
747
747
|
uuid?: string | undefined;
|
|
748
748
|
description?: string | undefined;
|
|
749
749
|
state?: import("..").WorkspaceElementState | undefined;
|
|
750
|
-
errors?:
|
|
751
|
-
isDeactivated?: boolean | undefined;
|
|
750
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
752
751
|
createdAt?: string | undefined;
|
|
753
752
|
updatedAt?: string | undefined;
|
|
754
753
|
archivedAt?: string | undefined;
|
|
754
|
+
isDeactivated?: boolean | undefined;
|
|
755
755
|
integrationId?: string | undefined;
|
|
756
|
-
udm?: string | undefined;
|
|
757
756
|
publishedRevision?: string | undefined;
|
|
758
757
|
customized?: boolean | undefined;
|
|
758
|
+
udm?: string | undefined;
|
|
759
759
|
appliedToIntegrations?: {
|
|
760
760
|
integration: {
|
|
761
761
|
id: string;
|
|
@@ -765,14 +765,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
765
765
|
uuid?: string | undefined;
|
|
766
766
|
description?: string | undefined;
|
|
767
767
|
state?: import("..").WorkspaceElementState | undefined;
|
|
768
|
-
errors?:
|
|
768
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
769
769
|
revision?: string | undefined;
|
|
770
|
-
isDeactivated?: boolean | undefined;
|
|
771
770
|
createdAt?: string | undefined;
|
|
772
771
|
updatedAt?: string | undefined;
|
|
773
772
|
archivedAt?: string | undefined;
|
|
773
|
+
isDeactivated?: boolean | undefined;
|
|
774
774
|
parameters?: any;
|
|
775
|
-
isTest?: boolean | undefined;
|
|
776
775
|
connectorId?: string | undefined;
|
|
777
776
|
connectorVersion?: string | undefined;
|
|
778
777
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -786,6 +785,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
786
785
|
eventsCount?: number | undefined;
|
|
787
786
|
hasGlobalWebhooks?: boolean | undefined;
|
|
788
787
|
hasUdm?: boolean | undefined;
|
|
788
|
+
isTest?: boolean | undefined;
|
|
789
789
|
appUuid?: string | undefined;
|
|
790
790
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
791
791
|
};
|
|
@@ -797,15 +797,15 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
797
797
|
uuid?: string | undefined;
|
|
798
798
|
description?: string | undefined;
|
|
799
799
|
state?: import("..").WorkspaceElementState | undefined;
|
|
800
|
-
errors?:
|
|
801
|
-
isDeactivated?: boolean | undefined;
|
|
800
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
802
801
|
createdAt?: string | undefined;
|
|
803
802
|
updatedAt?: string | undefined;
|
|
804
803
|
archivedAt?: string | undefined;
|
|
804
|
+
isDeactivated?: boolean | undefined;
|
|
805
805
|
integrationId?: string | undefined;
|
|
806
|
-
udm?: string | undefined;
|
|
807
806
|
publishedRevision?: string | undefined;
|
|
808
807
|
customized?: boolean | undefined;
|
|
808
|
+
udm?: string | undefined;
|
|
809
809
|
universalDataSourceId?: string | undefined;
|
|
810
810
|
collectionKey?: string | undefined;
|
|
811
811
|
collectionParameters?: any;
|
|
@@ -835,14 +835,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
835
835
|
uuid?: string | undefined;
|
|
836
836
|
description?: string | undefined;
|
|
837
837
|
state?: import("..").WorkspaceElementState | undefined;
|
|
838
|
-
errors?:
|
|
838
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
839
839
|
revision?: string | undefined;
|
|
840
|
-
isDeactivated?: boolean | undefined;
|
|
841
840
|
createdAt?: string | undefined;
|
|
842
841
|
updatedAt?: string | undefined;
|
|
843
842
|
archivedAt?: string | undefined;
|
|
843
|
+
isDeactivated?: boolean | undefined;
|
|
844
844
|
parameters?: any;
|
|
845
|
-
isTest?: boolean | undefined;
|
|
846
845
|
connectorId?: string | undefined;
|
|
847
846
|
connectorVersion?: string | undefined;
|
|
848
847
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -856,21 +855,22 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
856
855
|
eventsCount?: number | undefined;
|
|
857
856
|
hasGlobalWebhooks?: boolean | undefined;
|
|
858
857
|
hasUdm?: boolean | undefined;
|
|
858
|
+
isTest?: boolean | undefined;
|
|
859
859
|
appUuid?: string | undefined;
|
|
860
860
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
861
861
|
} | undefined;
|
|
862
862
|
uuid?: string | undefined;
|
|
863
863
|
description?: string | undefined;
|
|
864
864
|
state?: import("..").WorkspaceElementState | undefined;
|
|
865
|
-
errors?:
|
|
866
|
-
isDeactivated?: boolean | undefined;
|
|
865
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
867
866
|
createdAt?: string | undefined;
|
|
868
867
|
updatedAt?: string | undefined;
|
|
869
868
|
archivedAt?: string | undefined;
|
|
869
|
+
isDeactivated?: boolean | undefined;
|
|
870
870
|
integrationId?: string | undefined;
|
|
871
|
-
udm?: string | undefined;
|
|
872
871
|
publishedRevision?: string | undefined;
|
|
873
872
|
customized?: boolean | undefined;
|
|
873
|
+
udm?: string | undefined;
|
|
874
874
|
appliedToIntegrations?: {
|
|
875
875
|
integration: {
|
|
876
876
|
id: string;
|
|
@@ -880,14 +880,13 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
880
880
|
uuid?: string | undefined;
|
|
881
881
|
description?: string | undefined;
|
|
882
882
|
state?: import("..").WorkspaceElementState | undefined;
|
|
883
|
-
errors?:
|
|
883
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
884
884
|
revision?: string | undefined;
|
|
885
|
-
isDeactivated?: boolean | undefined;
|
|
886
885
|
createdAt?: string | undefined;
|
|
887
886
|
updatedAt?: string | undefined;
|
|
888
887
|
archivedAt?: string | undefined;
|
|
888
|
+
isDeactivated?: boolean | undefined;
|
|
889
889
|
parameters?: any;
|
|
890
|
-
isTest?: boolean | undefined;
|
|
891
890
|
connectorId?: string | undefined;
|
|
892
891
|
connectorVersion?: string | undefined;
|
|
893
892
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -901,6 +900,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
901
900
|
eventsCount?: number | undefined;
|
|
902
901
|
hasGlobalWebhooks?: boolean | undefined;
|
|
903
902
|
hasUdm?: boolean | undefined;
|
|
903
|
+
isTest?: boolean | undefined;
|
|
904
904
|
appUuid?: string | undefined;
|
|
905
905
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
906
906
|
};
|
|
@@ -912,15 +912,15 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
912
912
|
uuid?: string | undefined;
|
|
913
913
|
description?: string | undefined;
|
|
914
914
|
state?: import("..").WorkspaceElementState | undefined;
|
|
915
|
-
errors?:
|
|
916
|
-
isDeactivated?: boolean | undefined;
|
|
915
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
917
916
|
createdAt?: string | undefined;
|
|
918
917
|
updatedAt?: string | undefined;
|
|
919
918
|
archivedAt?: string | undefined;
|
|
919
|
+
isDeactivated?: boolean | undefined;
|
|
920
920
|
integrationId?: string | undefined;
|
|
921
|
-
udm?: string | undefined;
|
|
922
921
|
publishedRevision?: string | undefined;
|
|
923
922
|
customized?: boolean | undefined;
|
|
923
|
+
udm?: string | undefined;
|
|
924
924
|
universalDataSourceId?: string | undefined;
|
|
925
925
|
collectionKey?: string | undefined;
|
|
926
926
|
collectionParameters?: any;
|