@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
|
@@ -37,18 +37,23 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
37
37
|
key: z.ZodOptional<z.ZodString>;
|
|
38
38
|
uuid: z.ZodOptional<z.ZodString>;
|
|
39
39
|
description: z.ZodOptional<z.ZodString>;
|
|
40
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
41
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
42
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
43
|
+
} & {
|
|
40
44
|
name: z.ZodString;
|
|
41
45
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
42
46
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
47
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
43
48
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
44
49
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
50
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
45
51
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
52
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
46
53
|
} & {
|
|
47
|
-
revision: z.ZodString;
|
|
48
54
|
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
49
55
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
50
56
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
51
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
52
57
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
53
58
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
54
59
|
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
@@ -60,14 +65,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
60
65
|
frozenImportFields: z.ZodOptional<z.ZodAny>;
|
|
61
66
|
frozenExportFields: z.ZodOptional<z.ZodAny>;
|
|
62
67
|
frozenUnifiedExportFields: z.ZodOptional<z.ZodAny>;
|
|
63
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
64
|
-
customized: z.ZodOptional<z.ZodBoolean>;
|
|
65
68
|
} & {
|
|
66
69
|
integration: z.ZodOptional<z.ZodObject<{
|
|
67
70
|
id: z.ZodString;
|
|
68
71
|
key: z.ZodOptional<z.ZodString>;
|
|
69
72
|
uuid: z.ZodOptional<z.ZodString>;
|
|
70
73
|
description: z.ZodOptional<z.ZodString>;
|
|
74
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
71
75
|
name: z.ZodString;
|
|
72
76
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
73
77
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
@@ -102,6 +106,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
102
106
|
key?: string | undefined;
|
|
103
107
|
uuid?: string | undefined;
|
|
104
108
|
description?: string | undefined;
|
|
109
|
+
meta?: Record<string, any> | undefined;
|
|
105
110
|
state?: import("..").WorkspaceElementState | undefined;
|
|
106
111
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
107
112
|
revision?: string | undefined;
|
|
@@ -133,6 +138,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
133
138
|
key?: string | undefined;
|
|
134
139
|
uuid?: string | undefined;
|
|
135
140
|
description?: string | undefined;
|
|
141
|
+
meta?: Record<string, any> | undefined;
|
|
136
142
|
state?: import("..").WorkspaceElementState | undefined;
|
|
137
143
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
138
144
|
revision?: string | undefined;
|
|
@@ -164,18 +170,23 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
164
170
|
key: z.ZodOptional<z.ZodString>;
|
|
165
171
|
uuid: z.ZodOptional<z.ZodString>;
|
|
166
172
|
description: z.ZodOptional<z.ZodString>;
|
|
173
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
174
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
175
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
176
|
+
} & {
|
|
167
177
|
name: z.ZodString;
|
|
168
178
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
169
179
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
180
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
170
181
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
171
182
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
183
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
172
184
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
185
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
173
186
|
} & {
|
|
174
|
-
revision: z.ZodString;
|
|
175
187
|
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
176
188
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
177
189
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
178
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
179
190
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
180
191
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
181
192
|
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
@@ -187,22 +198,23 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
187
198
|
frozenImportFields: z.ZodOptional<z.ZodAny>;
|
|
188
199
|
frozenExportFields: z.ZodOptional<z.ZodAny>;
|
|
189
200
|
frozenUnifiedExportFields: z.ZodOptional<z.ZodAny>;
|
|
190
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
191
|
-
customized: z.ZodOptional<z.ZodBoolean>;
|
|
192
201
|
}, "strip", z.ZodTypeAny, {
|
|
193
202
|
id: string;
|
|
194
203
|
name: string;
|
|
195
|
-
revision: string;
|
|
196
204
|
key?: string | undefined;
|
|
197
205
|
uuid?: string | undefined;
|
|
198
206
|
description?: string | undefined;
|
|
207
|
+
meta?: Record<string, any> | undefined;
|
|
199
208
|
state?: import("..").WorkspaceElementState | undefined;
|
|
200
209
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
210
|
+
revision?: string | undefined;
|
|
201
211
|
createdAt?: string | undefined;
|
|
202
212
|
updatedAt?: string | undefined;
|
|
203
213
|
archivedAt?: string | undefined;
|
|
204
214
|
isDeactivated?: boolean | undefined;
|
|
205
215
|
integrationId?: string | undefined;
|
|
216
|
+
parentId?: string | undefined;
|
|
217
|
+
isCustomized?: boolean | undefined;
|
|
206
218
|
publishedRevision?: string | undefined;
|
|
207
219
|
universalFieldMappingId?: string | undefined;
|
|
208
220
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -217,21 +229,23 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
217
229
|
frozenImportFields?: any;
|
|
218
230
|
frozenExportFields?: any;
|
|
219
231
|
frozenUnifiedExportFields?: any;
|
|
220
|
-
customized?: boolean | undefined;
|
|
221
232
|
}, {
|
|
222
233
|
id: string;
|
|
223
234
|
name: string;
|
|
224
|
-
revision: string;
|
|
225
235
|
key?: string | undefined;
|
|
226
236
|
uuid?: string | undefined;
|
|
227
237
|
description?: string | undefined;
|
|
238
|
+
meta?: Record<string, any> | undefined;
|
|
228
239
|
state?: import("..").WorkspaceElementState | undefined;
|
|
229
240
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
241
|
+
revision?: string | undefined;
|
|
230
242
|
createdAt?: string | undefined;
|
|
231
243
|
updatedAt?: string | undefined;
|
|
232
244
|
archivedAt?: string | undefined;
|
|
233
245
|
isDeactivated?: boolean | undefined;
|
|
234
246
|
integrationId?: string | undefined;
|
|
247
|
+
parentId?: string | undefined;
|
|
248
|
+
isCustomized?: boolean | undefined;
|
|
235
249
|
publishedRevision?: string | undefined;
|
|
236
250
|
universalFieldMappingId?: string | undefined;
|
|
237
251
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -246,13 +260,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
246
260
|
frozenImportFields?: any;
|
|
247
261
|
frozenExportFields?: any;
|
|
248
262
|
frozenUnifiedExportFields?: any;
|
|
249
|
-
customized?: boolean | undefined;
|
|
250
263
|
}>;
|
|
251
264
|
integration: z.ZodObject<{
|
|
252
265
|
id: z.ZodString;
|
|
253
266
|
key: z.ZodOptional<z.ZodString>;
|
|
254
267
|
uuid: z.ZodOptional<z.ZodString>;
|
|
255
268
|
description: z.ZodOptional<z.ZodString>;
|
|
269
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
256
270
|
name: z.ZodString;
|
|
257
271
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
258
272
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
@@ -287,6 +301,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
287
301
|
key?: string | undefined;
|
|
288
302
|
uuid?: string | undefined;
|
|
289
303
|
description?: string | undefined;
|
|
304
|
+
meta?: Record<string, any> | undefined;
|
|
290
305
|
state?: import("..").WorkspaceElementState | undefined;
|
|
291
306
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
292
307
|
revision?: string | undefined;
|
|
@@ -318,6 +333,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
318
333
|
key?: string | undefined;
|
|
319
334
|
uuid?: string | undefined;
|
|
320
335
|
description?: string | undefined;
|
|
336
|
+
meta?: Record<string, any> | undefined;
|
|
321
337
|
state?: import("..").WorkspaceElementState | undefined;
|
|
322
338
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
323
339
|
revision?: string | undefined;
|
|
@@ -351,6 +367,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
351
367
|
key?: string | undefined;
|
|
352
368
|
uuid?: string | undefined;
|
|
353
369
|
description?: string | undefined;
|
|
370
|
+
meta?: Record<string, any> | undefined;
|
|
354
371
|
state?: import("..").WorkspaceElementState | undefined;
|
|
355
372
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
356
373
|
revision?: string | undefined;
|
|
@@ -379,17 +396,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
379
396
|
element: {
|
|
380
397
|
id: string;
|
|
381
398
|
name: string;
|
|
382
|
-
revision: string;
|
|
383
399
|
key?: string | undefined;
|
|
384
400
|
uuid?: string | undefined;
|
|
385
401
|
description?: string | undefined;
|
|
402
|
+
meta?: Record<string, any> | undefined;
|
|
386
403
|
state?: import("..").WorkspaceElementState | undefined;
|
|
387
404
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
405
|
+
revision?: string | undefined;
|
|
388
406
|
createdAt?: string | undefined;
|
|
389
407
|
updatedAt?: string | undefined;
|
|
390
408
|
archivedAt?: string | undefined;
|
|
391
409
|
isDeactivated?: boolean | undefined;
|
|
392
410
|
integrationId?: string | undefined;
|
|
411
|
+
parentId?: string | undefined;
|
|
412
|
+
isCustomized?: boolean | undefined;
|
|
393
413
|
publishedRevision?: string | undefined;
|
|
394
414
|
universalFieldMappingId?: string | undefined;
|
|
395
415
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -404,7 +424,6 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
404
424
|
frozenImportFields?: any;
|
|
405
425
|
frozenExportFields?: any;
|
|
406
426
|
frozenUnifiedExportFields?: any;
|
|
407
|
-
customized?: boolean | undefined;
|
|
408
427
|
};
|
|
409
428
|
}, {
|
|
410
429
|
integration: {
|
|
@@ -414,6 +433,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
414
433
|
key?: string | undefined;
|
|
415
434
|
uuid?: string | undefined;
|
|
416
435
|
description?: string | undefined;
|
|
436
|
+
meta?: Record<string, any> | undefined;
|
|
417
437
|
state?: import("..").WorkspaceElementState | undefined;
|
|
418
438
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
419
439
|
revision?: string | undefined;
|
|
@@ -442,17 +462,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
442
462
|
element: {
|
|
443
463
|
id: string;
|
|
444
464
|
name: string;
|
|
445
|
-
revision: string;
|
|
446
465
|
key?: string | undefined;
|
|
447
466
|
uuid?: string | undefined;
|
|
448
467
|
description?: string | undefined;
|
|
468
|
+
meta?: Record<string, any> | undefined;
|
|
449
469
|
state?: import("..").WorkspaceElementState | undefined;
|
|
450
470
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
471
|
+
revision?: string | undefined;
|
|
451
472
|
createdAt?: string | undefined;
|
|
452
473
|
updatedAt?: string | undefined;
|
|
453
474
|
archivedAt?: string | undefined;
|
|
454
475
|
isDeactivated?: boolean | undefined;
|
|
455
476
|
integrationId?: string | undefined;
|
|
477
|
+
parentId?: string | undefined;
|
|
478
|
+
isCustomized?: boolean | undefined;
|
|
456
479
|
publishedRevision?: string | undefined;
|
|
457
480
|
universalFieldMappingId?: string | undefined;
|
|
458
481
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -467,13 +490,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
467
490
|
frozenImportFields?: any;
|
|
468
491
|
frozenExportFields?: any;
|
|
469
492
|
frozenUnifiedExportFields?: any;
|
|
470
|
-
customized?: boolean | undefined;
|
|
471
493
|
};
|
|
472
494
|
}>, "many">>;
|
|
473
495
|
}, "strip", z.ZodTypeAny, {
|
|
474
496
|
id: string;
|
|
475
497
|
name: string;
|
|
476
|
-
revision: string;
|
|
477
498
|
key?: string | undefined;
|
|
478
499
|
integration?: {
|
|
479
500
|
id: string;
|
|
@@ -482,6 +503,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
482
503
|
key?: string | undefined;
|
|
483
504
|
uuid?: string | undefined;
|
|
484
505
|
description?: string | undefined;
|
|
506
|
+
meta?: Record<string, any> | undefined;
|
|
485
507
|
state?: import("..").WorkspaceElementState | undefined;
|
|
486
508
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
487
509
|
revision?: string | undefined;
|
|
@@ -509,13 +531,17 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
509
531
|
} | undefined;
|
|
510
532
|
uuid?: string | undefined;
|
|
511
533
|
description?: string | undefined;
|
|
534
|
+
meta?: Record<string, any> | undefined;
|
|
512
535
|
state?: import("..").WorkspaceElementState | undefined;
|
|
513
536
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
537
|
+
revision?: string | undefined;
|
|
514
538
|
createdAt?: string | undefined;
|
|
515
539
|
updatedAt?: string | undefined;
|
|
516
540
|
archivedAt?: string | undefined;
|
|
517
541
|
isDeactivated?: boolean | undefined;
|
|
518
542
|
integrationId?: string | undefined;
|
|
543
|
+
parentId?: string | undefined;
|
|
544
|
+
isCustomized?: boolean | undefined;
|
|
519
545
|
publishedRevision?: string | undefined;
|
|
520
546
|
universalFieldMappingId?: string | undefined;
|
|
521
547
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -530,7 +556,6 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
530
556
|
frozenImportFields?: any;
|
|
531
557
|
frozenExportFields?: any;
|
|
532
558
|
frozenUnifiedExportFields?: any;
|
|
533
|
-
customized?: boolean | undefined;
|
|
534
559
|
appliedToIntegrations?: {
|
|
535
560
|
integration: {
|
|
536
561
|
id: string;
|
|
@@ -539,6 +564,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
539
564
|
key?: string | undefined;
|
|
540
565
|
uuid?: string | undefined;
|
|
541
566
|
description?: string | undefined;
|
|
567
|
+
meta?: Record<string, any> | undefined;
|
|
542
568
|
state?: import("..").WorkspaceElementState | undefined;
|
|
543
569
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
544
570
|
revision?: string | undefined;
|
|
@@ -567,17 +593,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
567
593
|
element: {
|
|
568
594
|
id: string;
|
|
569
595
|
name: string;
|
|
570
|
-
revision: string;
|
|
571
596
|
key?: string | undefined;
|
|
572
597
|
uuid?: string | undefined;
|
|
573
598
|
description?: string | undefined;
|
|
599
|
+
meta?: Record<string, any> | undefined;
|
|
574
600
|
state?: import("..").WorkspaceElementState | undefined;
|
|
575
601
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
602
|
+
revision?: string | undefined;
|
|
576
603
|
createdAt?: string | undefined;
|
|
577
604
|
updatedAt?: string | undefined;
|
|
578
605
|
archivedAt?: string | undefined;
|
|
579
606
|
isDeactivated?: boolean | undefined;
|
|
580
607
|
integrationId?: string | undefined;
|
|
608
|
+
parentId?: string | undefined;
|
|
609
|
+
isCustomized?: boolean | undefined;
|
|
581
610
|
publishedRevision?: string | undefined;
|
|
582
611
|
universalFieldMappingId?: string | undefined;
|
|
583
612
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -592,13 +621,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
592
621
|
frozenImportFields?: any;
|
|
593
622
|
frozenExportFields?: any;
|
|
594
623
|
frozenUnifiedExportFields?: any;
|
|
595
|
-
customized?: boolean | undefined;
|
|
596
624
|
};
|
|
597
625
|
}[] | undefined;
|
|
598
626
|
}, {
|
|
599
627
|
id: string;
|
|
600
628
|
name: string;
|
|
601
|
-
revision: string;
|
|
602
629
|
key?: string | undefined;
|
|
603
630
|
integration?: {
|
|
604
631
|
id: string;
|
|
@@ -607,6 +634,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
607
634
|
key?: string | undefined;
|
|
608
635
|
uuid?: string | undefined;
|
|
609
636
|
description?: string | undefined;
|
|
637
|
+
meta?: Record<string, any> | undefined;
|
|
610
638
|
state?: import("..").WorkspaceElementState | undefined;
|
|
611
639
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
612
640
|
revision?: string | undefined;
|
|
@@ -634,13 +662,17 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
634
662
|
} | undefined;
|
|
635
663
|
uuid?: string | undefined;
|
|
636
664
|
description?: string | undefined;
|
|
665
|
+
meta?: Record<string, any> | undefined;
|
|
637
666
|
state?: import("..").WorkspaceElementState | undefined;
|
|
638
667
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
668
|
+
revision?: string | undefined;
|
|
639
669
|
createdAt?: string | undefined;
|
|
640
670
|
updatedAt?: string | undefined;
|
|
641
671
|
archivedAt?: string | undefined;
|
|
642
672
|
isDeactivated?: boolean | undefined;
|
|
643
673
|
integrationId?: string | undefined;
|
|
674
|
+
parentId?: string | undefined;
|
|
675
|
+
isCustomized?: boolean | undefined;
|
|
644
676
|
publishedRevision?: string | undefined;
|
|
645
677
|
universalFieldMappingId?: string | undefined;
|
|
646
678
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -655,7 +687,6 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
655
687
|
frozenImportFields?: any;
|
|
656
688
|
frozenExportFields?: any;
|
|
657
689
|
frozenUnifiedExportFields?: any;
|
|
658
|
-
customized?: boolean | undefined;
|
|
659
690
|
appliedToIntegrations?: {
|
|
660
691
|
integration: {
|
|
661
692
|
id: string;
|
|
@@ -664,6 +695,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
664
695
|
key?: string | undefined;
|
|
665
696
|
uuid?: string | undefined;
|
|
666
697
|
description?: string | undefined;
|
|
698
|
+
meta?: Record<string, any> | undefined;
|
|
667
699
|
state?: import("..").WorkspaceElementState | undefined;
|
|
668
700
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
669
701
|
revision?: string | undefined;
|
|
@@ -692,17 +724,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
692
724
|
element: {
|
|
693
725
|
id: string;
|
|
694
726
|
name: string;
|
|
695
|
-
revision: string;
|
|
696
727
|
key?: string | undefined;
|
|
697
728
|
uuid?: string | undefined;
|
|
698
729
|
description?: string | undefined;
|
|
730
|
+
meta?: Record<string, any> | undefined;
|
|
699
731
|
state?: import("..").WorkspaceElementState | undefined;
|
|
700
732
|
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
733
|
+
revision?: string | undefined;
|
|
701
734
|
createdAt?: string | undefined;
|
|
702
735
|
updatedAt?: string | undefined;
|
|
703
736
|
archivedAt?: string | undefined;
|
|
704
737
|
isDeactivated?: boolean | undefined;
|
|
705
738
|
integrationId?: string | undefined;
|
|
739
|
+
parentId?: string | undefined;
|
|
740
|
+
isCustomized?: boolean | undefined;
|
|
706
741
|
publishedRevision?: string | undefined;
|
|
707
742
|
universalFieldMappingId?: string | undefined;
|
|
708
743
|
universalFieldMappingRevision?: string | undefined;
|
|
@@ -717,7 +752,6 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
717
752
|
frozenImportFields?: any;
|
|
718
753
|
frozenExportFields?: any;
|
|
719
754
|
frozenUnifiedExportFields?: any;
|
|
720
|
-
customized?: boolean | undefined;
|
|
721
755
|
};
|
|
722
756
|
}[] | undefined;
|
|
723
757
|
}>;
|