@membranehq/sdk 0.7.1 → 0.7.3
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 +3437 -2985
- package/dist/bundle.js +10 -1
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +4 -3
- package/dist/dts/accessors/integrations-accessors.d.ts +4 -3
- package/dist/dts/accessors/scenarios-accessors.d.ts +4 -3
- package/dist/dts/config/config.test.d.ts +1 -0
- package/dist/dts/config/index.d.ts +42 -0
- package/dist/dts/entity-repository.d.ts +2 -2
- package/dist/dts/index.browser.d.ts +31 -0
- package/dist/dts/index.d.ts +2 -0
- package/dist/dts/index.node.d.ts +2 -0
- package/dist/dts/integration-elements/index.d.ts +0 -2
- package/dist/dts/{workspace-elements/base/scenarios/types.d.ts → scenario-templates/index.d.ts} +64 -169
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +39 -34
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +37 -37
- package/dist/dts/workspace-elements/api/actions-api.d.ts +64 -46
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +13 -0
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +17 -2
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +13 -0
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +57 -34
- package/dist/dts/workspace-elements/api/customers-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +29 -16
- package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +51 -32
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +70 -36
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +27 -22
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +27 -22
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +21 -16
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +122 -76
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +58 -24
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +116 -92
- package/dist/dts/workspace-elements/api/flows-api.d.ts +125 -72
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +12 -14
- package/dist/dts/workspace-elements/api/scenarios-api.d.ts +434 -431
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +5 -5
- package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/actions/index.d.ts +18 -15
- package/dist/dts/workspace-elements/base/app-data-schema-instances/types.d.ts +3 -0
- package/dist/dts/workspace-elements/base/app-data-schemas/types.d.ts +3 -0
- package/dist/dts/workspace-elements/base/app-event-subscriptions/types.d.ts +3 -0
- package/dist/dts/workspace-elements/base/app-event-types/types.d.ts +3 -0
- package/dist/dts/workspace-elements/base/connections/types.d.ts +5 -8
- package/dist/dts/workspace-elements/base/customers/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/data-link-table-instances/types.d.ts +5 -2
- package/dist/dts/workspace-elements/base/data-link-tables/types.d.ts +3 -0
- package/dist/dts/workspace-elements/base/data-source-instances/types.d.ts +7 -4
- package/dist/dts/workspace-elements/base/data-sources/types.d.ts +17 -10
- package/dist/dts/workspace-elements/base/external-event-log-records/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/external-event-pulls/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/external-event-subscriptions/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/field-mapping-instances/types.d.ts +7 -4
- package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +15 -8
- package/dist/dts/workspace-elements/base/flow-instances/schemas.d.ts +26 -26
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +15 -12
- package/dist/dts/workspace-elements/base/flow-runs/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/flows/types.d.ts +21 -14
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +18 -0
- package/dist/dts/workspace-elements/base/scenarios/index.d.ts +163 -1
- package/dist/dts/workspace-elements/types.d.ts +118 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
- package/dist/{index.module.d.mts → index.browser.d.mts} +18140 -17543
- package/dist/{index.d.ts → index.browser.d.ts} +18140 -17543
- package/dist/{index.js → index.browser.js} +108 -130
- package/dist/index.browser.js.map +1 -0
- package/dist/{index.module.mjs → index.browser.mjs} +104 -127
- package/dist/index.browser.mjs.map +1 -0
- package/dist/index.node.d.mts +27932 -0
- package/dist/index.node.d.ts +27932 -0
- package/dist/index.node.js +13334 -0
- package/dist/index.node.js.map +1 -0
- package/dist/index.node.mjs +12862 -0
- package/dist/index.node.mjs.map +1 -0
- package/package.json +38 -15
- package/dist/index.js.map +0 -1
- package/dist/index.module.mjs.map +0 -1
|
@@ -27,14 +27,14 @@ export declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
27
27
|
} & {
|
|
28
28
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
integrationId?: string | undefined;
|
|
30
31
|
limit?: number | undefined;
|
|
31
32
|
cursor?: string | undefined;
|
|
32
|
-
integrationId?: string | undefined;
|
|
33
33
|
universalDataSourceId?: string | undefined;
|
|
34
34
|
}, {
|
|
35
|
+
integrationId?: string | undefined;
|
|
35
36
|
limit?: number | undefined;
|
|
36
37
|
cursor?: string | undefined;
|
|
37
|
-
integrationId?: string | undefined;
|
|
38
38
|
universalDataSourceId?: string | undefined;
|
|
39
39
|
}>;
|
|
40
40
|
export type FindDataSourcesQuery = z.infer<typeof FindDataSourcesQuery>;
|
|
@@ -122,20 +122,20 @@ export declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
122
122
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
123
123
|
cursor: z.ZodOptional<z.ZodString>;
|
|
124
124
|
}, "strip", z.ZodTypeAny, {
|
|
125
|
+
integrationId?: string | undefined;
|
|
125
126
|
limit?: number | undefined;
|
|
126
127
|
cursor?: string | undefined;
|
|
127
128
|
userId?: string | undefined;
|
|
128
129
|
connectionId?: string | undefined;
|
|
129
|
-
integrationId?: string | undefined;
|
|
130
130
|
integrationKey?: string | undefined;
|
|
131
131
|
dataSourceId?: string | undefined;
|
|
132
132
|
universalDataSourceId?: string | undefined;
|
|
133
133
|
}, {
|
|
134
|
+
integrationId?: string | undefined;
|
|
134
135
|
limit?: number | undefined;
|
|
135
136
|
cursor?: string | undefined;
|
|
136
137
|
userId?: string | undefined;
|
|
137
138
|
connectionId?: string | undefined;
|
|
138
|
-
integrationId?: string | undefined;
|
|
139
139
|
integrationKey?: string | undefined;
|
|
140
140
|
dataSourceId?: string | undefined;
|
|
141
141
|
universalDataSourceId?: string | undefined;
|
|
@@ -237,20 +237,20 @@ export declare const FindDataSourceSyncsQuery: z.ZodObject<{
|
|
|
237
237
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
238
238
|
cursor: z.ZodOptional<z.ZodString>;
|
|
239
239
|
}, "strip", z.ZodTypeAny, {
|
|
240
|
+
integrationId?: string | undefined;
|
|
240
241
|
limit?: number | undefined;
|
|
241
242
|
cursor?: string | undefined;
|
|
242
243
|
userId?: string | undefined;
|
|
243
244
|
connectionId?: string | undefined;
|
|
244
|
-
integrationId?: string | undefined;
|
|
245
245
|
dataSourceId?: string | undefined;
|
|
246
246
|
dataSourceInstanceId?: string | undefined;
|
|
247
247
|
startedAfter?: string | undefined;
|
|
248
248
|
}, {
|
|
249
|
+
integrationId?: string | undefined;
|
|
249
250
|
limit?: number | undefined;
|
|
250
251
|
cursor?: string | undefined;
|
|
251
252
|
userId?: string | undefined;
|
|
252
253
|
connectionId?: string | undefined;
|
|
253
|
-
integrationId?: string | undefined;
|
|
254
254
|
dataSourceId?: string | undefined;
|
|
255
255
|
dataSourceInstanceId?: string | undefined;
|
|
256
256
|
startedAfter?: string | undefined;
|
|
@@ -282,19 +282,19 @@ export declare const FindDataSourceInstanceSyncsQuery: z.ZodObject<{
|
|
|
282
282
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
283
283
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
284
284
|
}, "strip", z.ZodTypeAny, {
|
|
285
|
+
integrationId?: string | undefined;
|
|
285
286
|
limit?: number | undefined;
|
|
286
287
|
cursor?: string | undefined;
|
|
287
288
|
userId?: string | undefined;
|
|
288
289
|
connectionId?: string | undefined;
|
|
289
|
-
integrationId?: string | undefined;
|
|
290
290
|
dataSourceId?: string | undefined;
|
|
291
291
|
dataSourceInstanceId?: string | undefined;
|
|
292
292
|
}, {
|
|
293
|
+
integrationId?: string | undefined;
|
|
293
294
|
limit?: number | undefined;
|
|
294
295
|
cursor?: string | undefined;
|
|
295
296
|
userId?: string | undefined;
|
|
296
297
|
connectionId?: string | undefined;
|
|
297
|
-
integrationId?: string | undefined;
|
|
298
298
|
dataSourceId?: string | undefined;
|
|
299
299
|
dataSourceInstanceId?: string | undefined;
|
|
300
300
|
}>;
|
|
@@ -304,14 +304,21 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
304
304
|
key: z.ZodOptional<z.ZodString>;
|
|
305
305
|
uuid: z.ZodOptional<z.ZodString>;
|
|
306
306
|
description: z.ZodOptional<z.ZodString>;
|
|
307
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
308
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
309
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
310
|
+
} & {
|
|
307
311
|
name: z.ZodString;
|
|
308
312
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
309
313
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
314
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
315
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
316
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
317
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
310
318
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
319
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
311
320
|
} & {
|
|
312
|
-
revision: z.ZodString;
|
|
313
321
|
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
314
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
315
322
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
316
323
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
317
324
|
udm: z.ZodOptional<z.ZodString>;
|
|
@@ -319,10 +326,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
319
326
|
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
320
327
|
collectionKey: z.ZodOptional<z.ZodString>;
|
|
321
328
|
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
322
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
323
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
324
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
325
|
-
customized: z.ZodOptional<z.ZodBoolean>;
|
|
326
329
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
327
330
|
} & {
|
|
328
331
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -330,6 +333,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
330
333
|
key: z.ZodOptional<z.ZodString>;
|
|
331
334
|
uuid: z.ZodOptional<z.ZodString>;
|
|
332
335
|
description: z.ZodOptional<z.ZodString>;
|
|
336
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
333
337
|
name: z.ZodString;
|
|
334
338
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
335
339
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
@@ -364,6 +368,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
364
368
|
key?: string | undefined;
|
|
365
369
|
uuid?: string | undefined;
|
|
366
370
|
description?: string | undefined;
|
|
371
|
+
meta?: Record<string, any> | undefined;
|
|
367
372
|
state?: import("..").WorkspaceElementState | undefined;
|
|
368
373
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
369
374
|
revision?: string | undefined;
|
|
@@ -395,6 +400,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
395
400
|
key?: string | undefined;
|
|
396
401
|
uuid?: string | undefined;
|
|
397
402
|
description?: string | undefined;
|
|
403
|
+
meta?: Record<string, any> | undefined;
|
|
398
404
|
state?: import("..").WorkspaceElementState | undefined;
|
|
399
405
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
400
406
|
revision?: string | undefined;
|
|
@@ -426,14 +432,21 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
426
432
|
key: z.ZodOptional<z.ZodString>;
|
|
427
433
|
uuid: z.ZodOptional<z.ZodString>;
|
|
428
434
|
description: z.ZodOptional<z.ZodString>;
|
|
435
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
436
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
437
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
438
|
+
} & {
|
|
429
439
|
name: z.ZodString;
|
|
430
440
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
431
441
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
442
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
443
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
444
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
445
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
432
446
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
447
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
433
448
|
} & {
|
|
434
|
-
revision: z.ZodString;
|
|
435
449
|
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
436
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
437
450
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
438
451
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
439
452
|
udm: z.ZodOptional<z.ZodString>;
|
|
@@ -441,27 +454,25 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
441
454
|
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
442
455
|
collectionKey: z.ZodOptional<z.ZodString>;
|
|
443
456
|
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
444
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
445
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
446
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
447
|
-
customized: z.ZodOptional<z.ZodBoolean>;
|
|
448
457
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
449
458
|
}, "strip", z.ZodTypeAny, {
|
|
450
459
|
id: string;
|
|
451
460
|
name: string;
|
|
452
|
-
revision: string;
|
|
453
461
|
key?: string | undefined;
|
|
454
462
|
uuid?: string | undefined;
|
|
455
463
|
description?: string | undefined;
|
|
464
|
+
meta?: Record<string, any> | undefined;
|
|
456
465
|
state?: import("..").WorkspaceElementState | undefined;
|
|
457
466
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
467
|
+
revision?: string | undefined;
|
|
458
468
|
createdAt?: string | undefined;
|
|
459
469
|
updatedAt?: string | undefined;
|
|
460
470
|
archivedAt?: string | undefined;
|
|
461
471
|
isDeactivated?: boolean | undefined;
|
|
462
472
|
integrationId?: string | undefined;
|
|
473
|
+
parentId?: string | undefined;
|
|
474
|
+
isCustomized?: boolean | undefined;
|
|
463
475
|
publishedRevision?: string | undefined;
|
|
464
|
-
customized?: boolean | undefined;
|
|
465
476
|
udm?: string | undefined;
|
|
466
477
|
universalDataSourceId?: string | undefined;
|
|
467
478
|
collectionKey?: string | undefined;
|
|
@@ -473,19 +484,21 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
473
484
|
}, {
|
|
474
485
|
id: string;
|
|
475
486
|
name: string;
|
|
476
|
-
revision: string;
|
|
477
487
|
key?: string | undefined;
|
|
478
488
|
uuid?: string | undefined;
|
|
479
489
|
description?: string | undefined;
|
|
490
|
+
meta?: Record<string, any> | undefined;
|
|
480
491
|
state?: import("..").WorkspaceElementState | undefined;
|
|
481
492
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
493
|
+
revision?: string | undefined;
|
|
482
494
|
createdAt?: string | undefined;
|
|
483
495
|
updatedAt?: string | undefined;
|
|
484
496
|
archivedAt?: string | undefined;
|
|
485
497
|
isDeactivated?: boolean | undefined;
|
|
486
498
|
integrationId?: string | undefined;
|
|
499
|
+
parentId?: string | undefined;
|
|
500
|
+
isCustomized?: boolean | undefined;
|
|
487
501
|
publishedRevision?: string | undefined;
|
|
488
|
-
customized?: boolean | undefined;
|
|
489
502
|
udm?: string | undefined;
|
|
490
503
|
universalDataSourceId?: string | undefined;
|
|
491
504
|
collectionKey?: string | undefined;
|
|
@@ -500,6 +513,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
500
513
|
key: z.ZodOptional<z.ZodString>;
|
|
501
514
|
uuid: z.ZodOptional<z.ZodString>;
|
|
502
515
|
description: z.ZodOptional<z.ZodString>;
|
|
516
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
503
517
|
name: z.ZodString;
|
|
504
518
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
505
519
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
@@ -534,6 +548,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
534
548
|
key?: string | undefined;
|
|
535
549
|
uuid?: string | undefined;
|
|
536
550
|
description?: string | undefined;
|
|
551
|
+
meta?: Record<string, any> | undefined;
|
|
537
552
|
state?: import("..").WorkspaceElementState | undefined;
|
|
538
553
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
539
554
|
revision?: string | undefined;
|
|
@@ -565,6 +580,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
565
580
|
key?: string | undefined;
|
|
566
581
|
uuid?: string | undefined;
|
|
567
582
|
description?: string | undefined;
|
|
583
|
+
meta?: Record<string, any> | undefined;
|
|
568
584
|
state?: import("..").WorkspaceElementState | undefined;
|
|
569
585
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
570
586
|
revision?: string | undefined;
|
|
@@ -598,6 +614,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
598
614
|
key?: string | undefined;
|
|
599
615
|
uuid?: string | undefined;
|
|
600
616
|
description?: string | undefined;
|
|
617
|
+
meta?: Record<string, any> | undefined;
|
|
601
618
|
state?: import("..").WorkspaceElementState | undefined;
|
|
602
619
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
603
620
|
revision?: string | undefined;
|
|
@@ -626,19 +643,21 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
626
643
|
element: {
|
|
627
644
|
id: string;
|
|
628
645
|
name: string;
|
|
629
|
-
revision: string;
|
|
630
646
|
key?: string | undefined;
|
|
631
647
|
uuid?: string | undefined;
|
|
632
648
|
description?: string | undefined;
|
|
649
|
+
meta?: Record<string, any> | undefined;
|
|
633
650
|
state?: import("..").WorkspaceElementState | undefined;
|
|
634
651
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
652
|
+
revision?: string | undefined;
|
|
635
653
|
createdAt?: string | undefined;
|
|
636
654
|
updatedAt?: string | undefined;
|
|
637
655
|
archivedAt?: string | undefined;
|
|
638
656
|
isDeactivated?: boolean | undefined;
|
|
639
657
|
integrationId?: string | undefined;
|
|
658
|
+
parentId?: string | undefined;
|
|
659
|
+
isCustomized?: boolean | undefined;
|
|
640
660
|
publishedRevision?: string | undefined;
|
|
641
|
-
customized?: boolean | undefined;
|
|
642
661
|
udm?: string | undefined;
|
|
643
662
|
universalDataSourceId?: string | undefined;
|
|
644
663
|
collectionKey?: string | undefined;
|
|
@@ -656,6 +675,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
656
675
|
key?: string | undefined;
|
|
657
676
|
uuid?: string | undefined;
|
|
658
677
|
description?: string | undefined;
|
|
678
|
+
meta?: Record<string, any> | undefined;
|
|
659
679
|
state?: import("..").WorkspaceElementState | undefined;
|
|
660
680
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
661
681
|
revision?: string | undefined;
|
|
@@ -684,19 +704,21 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
684
704
|
element: {
|
|
685
705
|
id: string;
|
|
686
706
|
name: string;
|
|
687
|
-
revision: string;
|
|
688
707
|
key?: string | undefined;
|
|
689
708
|
uuid?: string | undefined;
|
|
690
709
|
description?: string | undefined;
|
|
710
|
+
meta?: Record<string, any> | undefined;
|
|
691
711
|
state?: import("..").WorkspaceElementState | undefined;
|
|
692
712
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
713
|
+
revision?: string | undefined;
|
|
693
714
|
createdAt?: string | undefined;
|
|
694
715
|
updatedAt?: string | undefined;
|
|
695
716
|
archivedAt?: string | undefined;
|
|
696
717
|
isDeactivated?: boolean | undefined;
|
|
697
718
|
integrationId?: string | undefined;
|
|
719
|
+
parentId?: string | undefined;
|
|
720
|
+
isCustomized?: boolean | undefined;
|
|
698
721
|
publishedRevision?: string | undefined;
|
|
699
|
-
customized?: boolean | undefined;
|
|
700
722
|
udm?: string | undefined;
|
|
701
723
|
universalDataSourceId?: string | undefined;
|
|
702
724
|
collectionKey?: string | undefined;
|
|
@@ -710,7 +732,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
710
732
|
}, "strip", z.ZodTypeAny, {
|
|
711
733
|
id: string;
|
|
712
734
|
name: string;
|
|
713
|
-
revision: string;
|
|
714
735
|
key?: string | undefined;
|
|
715
736
|
integration?: {
|
|
716
737
|
id: string;
|
|
@@ -719,6 +740,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
719
740
|
key?: string | undefined;
|
|
720
741
|
uuid?: string | undefined;
|
|
721
742
|
description?: string | undefined;
|
|
743
|
+
meta?: Record<string, any> | undefined;
|
|
722
744
|
state?: import("..").WorkspaceElementState | undefined;
|
|
723
745
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
724
746
|
revision?: string | undefined;
|
|
@@ -746,15 +768,18 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
746
768
|
} | undefined;
|
|
747
769
|
uuid?: string | undefined;
|
|
748
770
|
description?: string | undefined;
|
|
771
|
+
meta?: Record<string, any> | undefined;
|
|
749
772
|
state?: import("..").WorkspaceElementState | undefined;
|
|
750
773
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
774
|
+
revision?: string | undefined;
|
|
751
775
|
createdAt?: string | undefined;
|
|
752
776
|
updatedAt?: string | undefined;
|
|
753
777
|
archivedAt?: string | undefined;
|
|
754
778
|
isDeactivated?: boolean | undefined;
|
|
755
779
|
integrationId?: string | undefined;
|
|
780
|
+
parentId?: string | undefined;
|
|
781
|
+
isCustomized?: boolean | undefined;
|
|
756
782
|
publishedRevision?: string | undefined;
|
|
757
|
-
customized?: boolean | undefined;
|
|
758
783
|
udm?: string | undefined;
|
|
759
784
|
appliedToIntegrations?: {
|
|
760
785
|
integration: {
|
|
@@ -764,6 +789,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
764
789
|
key?: string | undefined;
|
|
765
790
|
uuid?: string | undefined;
|
|
766
791
|
description?: string | undefined;
|
|
792
|
+
meta?: Record<string, any> | undefined;
|
|
767
793
|
state?: import("..").WorkspaceElementState | undefined;
|
|
768
794
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
769
795
|
revision?: string | undefined;
|
|
@@ -792,19 +818,21 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
792
818
|
element: {
|
|
793
819
|
id: string;
|
|
794
820
|
name: string;
|
|
795
|
-
revision: string;
|
|
796
821
|
key?: string | undefined;
|
|
797
822
|
uuid?: string | undefined;
|
|
798
823
|
description?: string | undefined;
|
|
824
|
+
meta?: Record<string, any> | undefined;
|
|
799
825
|
state?: import("..").WorkspaceElementState | undefined;
|
|
800
826
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
827
|
+
revision?: string | undefined;
|
|
801
828
|
createdAt?: string | undefined;
|
|
802
829
|
updatedAt?: string | undefined;
|
|
803
830
|
archivedAt?: string | undefined;
|
|
804
831
|
isDeactivated?: boolean | undefined;
|
|
805
832
|
integrationId?: string | undefined;
|
|
833
|
+
parentId?: string | undefined;
|
|
834
|
+
isCustomized?: boolean | undefined;
|
|
806
835
|
publishedRevision?: string | undefined;
|
|
807
|
-
customized?: boolean | undefined;
|
|
808
836
|
udm?: string | undefined;
|
|
809
837
|
universalDataSourceId?: string | undefined;
|
|
810
838
|
collectionKey?: string | undefined;
|
|
@@ -825,7 +853,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
825
853
|
}, {
|
|
826
854
|
id: string;
|
|
827
855
|
name: string;
|
|
828
|
-
revision: string;
|
|
829
856
|
key?: string | undefined;
|
|
830
857
|
integration?: {
|
|
831
858
|
id: string;
|
|
@@ -834,6 +861,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
834
861
|
key?: string | undefined;
|
|
835
862
|
uuid?: string | undefined;
|
|
836
863
|
description?: string | undefined;
|
|
864
|
+
meta?: Record<string, any> | undefined;
|
|
837
865
|
state?: import("..").WorkspaceElementState | undefined;
|
|
838
866
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
839
867
|
revision?: string | undefined;
|
|
@@ -861,15 +889,18 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
861
889
|
} | undefined;
|
|
862
890
|
uuid?: string | undefined;
|
|
863
891
|
description?: string | undefined;
|
|
892
|
+
meta?: Record<string, any> | undefined;
|
|
864
893
|
state?: import("..").WorkspaceElementState | undefined;
|
|
865
894
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
895
|
+
revision?: string | undefined;
|
|
866
896
|
createdAt?: string | undefined;
|
|
867
897
|
updatedAt?: string | undefined;
|
|
868
898
|
archivedAt?: string | undefined;
|
|
869
899
|
isDeactivated?: boolean | undefined;
|
|
870
900
|
integrationId?: string | undefined;
|
|
901
|
+
parentId?: string | undefined;
|
|
902
|
+
isCustomized?: boolean | undefined;
|
|
871
903
|
publishedRevision?: string | undefined;
|
|
872
|
-
customized?: boolean | undefined;
|
|
873
904
|
udm?: string | undefined;
|
|
874
905
|
appliedToIntegrations?: {
|
|
875
906
|
integration: {
|
|
@@ -879,6 +910,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
879
910
|
key?: string | undefined;
|
|
880
911
|
uuid?: string | undefined;
|
|
881
912
|
description?: string | undefined;
|
|
913
|
+
meta?: Record<string, any> | undefined;
|
|
882
914
|
state?: import("..").WorkspaceElementState | undefined;
|
|
883
915
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
884
916
|
revision?: string | undefined;
|
|
@@ -907,19 +939,21 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
907
939
|
element: {
|
|
908
940
|
id: string;
|
|
909
941
|
name: string;
|
|
910
|
-
revision: string;
|
|
911
942
|
key?: string | undefined;
|
|
912
943
|
uuid?: string | undefined;
|
|
913
944
|
description?: string | undefined;
|
|
945
|
+
meta?: Record<string, any> | undefined;
|
|
914
946
|
state?: import("..").WorkspaceElementState | undefined;
|
|
915
947
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
948
|
+
revision?: string | undefined;
|
|
916
949
|
createdAt?: string | undefined;
|
|
917
950
|
updatedAt?: string | undefined;
|
|
918
951
|
archivedAt?: string | undefined;
|
|
919
952
|
isDeactivated?: boolean | undefined;
|
|
920
953
|
integrationId?: string | undefined;
|
|
954
|
+
parentId?: string | undefined;
|
|
955
|
+
isCustomized?: boolean | undefined;
|
|
921
956
|
publishedRevision?: string | undefined;
|
|
922
|
-
customized?: boolean | undefined;
|
|
923
957
|
udm?: string | undefined;
|
|
924
958
|
universalDataSourceId?: string | undefined;
|
|
925
959
|
collectionKey?: string | undefined;
|