@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
|
@@ -34,15 +34,15 @@ export interface FieldMappingSelector extends IntegrationSpecificElementSelector
|
|
|
34
34
|
}
|
|
35
35
|
export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
36
36
|
id: z.ZodString;
|
|
37
|
-
name: z.ZodString;
|
|
38
37
|
key: z.ZodOptional<z.ZodString>;
|
|
39
38
|
uuid: z.ZodOptional<z.ZodString>;
|
|
40
39
|
description: z.ZodOptional<z.ZodString>;
|
|
40
|
+
name: z.ZodString;
|
|
41
41
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
42
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
43
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
42
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
44
43
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
45
44
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
45
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
46
46
|
} & {
|
|
47
47
|
revision: z.ZodString;
|
|
48
48
|
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -65,12 +65,12 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
65
65
|
} & {
|
|
66
66
|
integration: z.ZodOptional<z.ZodObject<{
|
|
67
67
|
id: z.ZodString;
|
|
68
|
-
name: z.ZodString;
|
|
69
68
|
key: z.ZodOptional<z.ZodString>;
|
|
70
69
|
uuid: z.ZodOptional<z.ZodString>;
|
|
71
70
|
description: z.ZodOptional<z.ZodString>;
|
|
71
|
+
name: z.ZodString;
|
|
72
72
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
73
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
73
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
74
74
|
revision: z.ZodOptional<z.ZodString>;
|
|
75
75
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
76
76
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -103,14 +103,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
103
103
|
uuid?: string | undefined;
|
|
104
104
|
description?: string | undefined;
|
|
105
105
|
state?: import("..").WorkspaceElementState | undefined;
|
|
106
|
-
errors?:
|
|
106
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
107
107
|
revision?: string | undefined;
|
|
108
|
-
isDeactivated?: boolean | undefined;
|
|
109
108
|
createdAt?: string | undefined;
|
|
110
109
|
updatedAt?: string | undefined;
|
|
111
110
|
archivedAt?: string | undefined;
|
|
111
|
+
isDeactivated?: boolean | undefined;
|
|
112
112
|
parameters?: any;
|
|
113
|
-
isTest?: boolean | undefined;
|
|
114
113
|
connectorId?: string | undefined;
|
|
115
114
|
connectorVersion?: string | undefined;
|
|
116
115
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -124,6 +123,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
124
123
|
eventsCount?: number | undefined;
|
|
125
124
|
hasGlobalWebhooks?: boolean | undefined;
|
|
126
125
|
hasUdm?: boolean | undefined;
|
|
126
|
+
isTest?: boolean | undefined;
|
|
127
127
|
appUuid?: string | undefined;
|
|
128
128
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
129
129
|
}, {
|
|
@@ -134,14 +134,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
134
134
|
uuid?: string | undefined;
|
|
135
135
|
description?: string | undefined;
|
|
136
136
|
state?: import("..").WorkspaceElementState | undefined;
|
|
137
|
-
errors?:
|
|
137
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
138
138
|
revision?: string | undefined;
|
|
139
|
-
isDeactivated?: boolean | undefined;
|
|
140
139
|
createdAt?: string | undefined;
|
|
141
140
|
updatedAt?: string | undefined;
|
|
142
141
|
archivedAt?: string | undefined;
|
|
142
|
+
isDeactivated?: boolean | undefined;
|
|
143
143
|
parameters?: any;
|
|
144
|
-
isTest?: boolean | undefined;
|
|
145
144
|
connectorId?: string | undefined;
|
|
146
145
|
connectorVersion?: string | undefined;
|
|
147
146
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -155,21 +154,22 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
155
154
|
eventsCount?: number | undefined;
|
|
156
155
|
hasGlobalWebhooks?: boolean | undefined;
|
|
157
156
|
hasUdm?: boolean | undefined;
|
|
157
|
+
isTest?: boolean | undefined;
|
|
158
158
|
appUuid?: string | undefined;
|
|
159
159
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
160
160
|
}>>;
|
|
161
161
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
162
162
|
element: z.ZodObject<{
|
|
163
163
|
id: z.ZodString;
|
|
164
|
-
name: z.ZodString;
|
|
165
164
|
key: z.ZodOptional<z.ZodString>;
|
|
166
165
|
uuid: z.ZodOptional<z.ZodString>;
|
|
167
166
|
description: z.ZodOptional<z.ZodString>;
|
|
167
|
+
name: z.ZodString;
|
|
168
168
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
169
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
170
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
169
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
171
170
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
172
171
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
172
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
173
173
|
} & {
|
|
174
174
|
revision: z.ZodString;
|
|
175
175
|
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -201,11 +201,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
201
201
|
uuid?: string | undefined;
|
|
202
202
|
description?: string | undefined;
|
|
203
203
|
state?: import("..").WorkspaceElementState | undefined;
|
|
204
|
-
errors?:
|
|
205
|
-
isDeactivated?: boolean | undefined;
|
|
204
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
206
205
|
createdAt?: string | undefined;
|
|
207
206
|
updatedAt?: string | undefined;
|
|
208
207
|
archivedAt?: string | undefined;
|
|
208
|
+
isDeactivated?: boolean | undefined;
|
|
209
209
|
integrationId?: string | undefined;
|
|
210
210
|
publishedRevision?: string | undefined;
|
|
211
211
|
universalFieldMappingId?: string | undefined;
|
|
@@ -230,11 +230,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
230
230
|
uuid?: string | undefined;
|
|
231
231
|
description?: string | undefined;
|
|
232
232
|
state?: import("..").WorkspaceElementState | undefined;
|
|
233
|
-
errors?:
|
|
234
|
-
isDeactivated?: boolean | undefined;
|
|
233
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
235
234
|
createdAt?: string | undefined;
|
|
236
235
|
updatedAt?: string | undefined;
|
|
237
236
|
archivedAt?: string | undefined;
|
|
237
|
+
isDeactivated?: boolean | undefined;
|
|
238
238
|
integrationId?: string | undefined;
|
|
239
239
|
publishedRevision?: string | undefined;
|
|
240
240
|
universalFieldMappingId?: string | undefined;
|
|
@@ -250,12 +250,12 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
250
250
|
}>;
|
|
251
251
|
integration: z.ZodObject<{
|
|
252
252
|
id: z.ZodString;
|
|
253
|
-
name: z.ZodString;
|
|
254
253
|
key: z.ZodOptional<z.ZodString>;
|
|
255
254
|
uuid: z.ZodOptional<z.ZodString>;
|
|
256
255
|
description: z.ZodOptional<z.ZodString>;
|
|
256
|
+
name: z.ZodString;
|
|
257
257
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
258
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
258
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
259
259
|
revision: z.ZodOptional<z.ZodString>;
|
|
260
260
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
261
261
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -288,14 +288,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
288
288
|
uuid?: string | undefined;
|
|
289
289
|
description?: string | undefined;
|
|
290
290
|
state?: import("..").WorkspaceElementState | undefined;
|
|
291
|
-
errors?:
|
|
291
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
292
292
|
revision?: string | undefined;
|
|
293
|
-
isDeactivated?: boolean | undefined;
|
|
294
293
|
createdAt?: string | undefined;
|
|
295
294
|
updatedAt?: string | undefined;
|
|
296
295
|
archivedAt?: string | undefined;
|
|
296
|
+
isDeactivated?: boolean | undefined;
|
|
297
297
|
parameters?: any;
|
|
298
|
-
isTest?: boolean | undefined;
|
|
299
298
|
connectorId?: string | undefined;
|
|
300
299
|
connectorVersion?: string | undefined;
|
|
301
300
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -309,6 +308,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
309
308
|
eventsCount?: number | undefined;
|
|
310
309
|
hasGlobalWebhooks?: boolean | undefined;
|
|
311
310
|
hasUdm?: boolean | undefined;
|
|
311
|
+
isTest?: boolean | undefined;
|
|
312
312
|
appUuid?: string | undefined;
|
|
313
313
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
314
314
|
}, {
|
|
@@ -319,14 +319,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
319
319
|
uuid?: string | undefined;
|
|
320
320
|
description?: string | undefined;
|
|
321
321
|
state?: import("..").WorkspaceElementState | undefined;
|
|
322
|
-
errors?:
|
|
322
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
323
323
|
revision?: string | undefined;
|
|
324
|
-
isDeactivated?: boolean | undefined;
|
|
325
324
|
createdAt?: string | undefined;
|
|
326
325
|
updatedAt?: string | undefined;
|
|
327
326
|
archivedAt?: string | undefined;
|
|
327
|
+
isDeactivated?: boolean | undefined;
|
|
328
328
|
parameters?: any;
|
|
329
|
-
isTest?: boolean | undefined;
|
|
330
329
|
connectorId?: string | undefined;
|
|
331
330
|
connectorVersion?: string | undefined;
|
|
332
331
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -340,6 +339,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
340
339
|
eventsCount?: number | undefined;
|
|
341
340
|
hasGlobalWebhooks?: boolean | undefined;
|
|
342
341
|
hasUdm?: boolean | undefined;
|
|
342
|
+
isTest?: boolean | undefined;
|
|
343
343
|
appUuid?: string | undefined;
|
|
344
344
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
345
345
|
}>;
|
|
@@ -352,14 +352,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
352
352
|
uuid?: string | undefined;
|
|
353
353
|
description?: string | undefined;
|
|
354
354
|
state?: import("..").WorkspaceElementState | undefined;
|
|
355
|
-
errors?:
|
|
355
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
356
356
|
revision?: string | undefined;
|
|
357
|
-
isDeactivated?: boolean | undefined;
|
|
358
357
|
createdAt?: string | undefined;
|
|
359
358
|
updatedAt?: string | undefined;
|
|
360
359
|
archivedAt?: string | undefined;
|
|
360
|
+
isDeactivated?: boolean | undefined;
|
|
361
361
|
parameters?: any;
|
|
362
|
-
isTest?: boolean | undefined;
|
|
363
362
|
connectorId?: string | undefined;
|
|
364
363
|
connectorVersion?: string | undefined;
|
|
365
364
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -373,6 +372,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
373
372
|
eventsCount?: number | undefined;
|
|
374
373
|
hasGlobalWebhooks?: boolean | undefined;
|
|
375
374
|
hasUdm?: boolean | undefined;
|
|
375
|
+
isTest?: boolean | undefined;
|
|
376
376
|
appUuid?: string | undefined;
|
|
377
377
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
378
378
|
};
|
|
@@ -388,11 +388,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
388
388
|
uuid?: string | undefined;
|
|
389
389
|
description?: string | undefined;
|
|
390
390
|
state?: import("..").WorkspaceElementState | undefined;
|
|
391
|
-
errors?:
|
|
392
|
-
isDeactivated?: boolean | undefined;
|
|
391
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
393
392
|
createdAt?: string | undefined;
|
|
394
393
|
updatedAt?: string | undefined;
|
|
395
394
|
archivedAt?: string | undefined;
|
|
395
|
+
isDeactivated?: boolean | undefined;
|
|
396
396
|
integrationId?: string | undefined;
|
|
397
397
|
publishedRevision?: string | undefined;
|
|
398
398
|
universalFieldMappingId?: string | undefined;
|
|
@@ -415,14 +415,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
415
415
|
uuid?: string | undefined;
|
|
416
416
|
description?: string | undefined;
|
|
417
417
|
state?: import("..").WorkspaceElementState | undefined;
|
|
418
|
-
errors?:
|
|
418
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
419
419
|
revision?: string | undefined;
|
|
420
|
-
isDeactivated?: boolean | undefined;
|
|
421
420
|
createdAt?: string | undefined;
|
|
422
421
|
updatedAt?: string | undefined;
|
|
423
422
|
archivedAt?: string | undefined;
|
|
423
|
+
isDeactivated?: boolean | undefined;
|
|
424
424
|
parameters?: any;
|
|
425
|
-
isTest?: boolean | undefined;
|
|
426
425
|
connectorId?: string | undefined;
|
|
427
426
|
connectorVersion?: string | undefined;
|
|
428
427
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -436,6 +435,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
436
435
|
eventsCount?: number | undefined;
|
|
437
436
|
hasGlobalWebhooks?: boolean | undefined;
|
|
438
437
|
hasUdm?: boolean | undefined;
|
|
438
|
+
isTest?: boolean | undefined;
|
|
439
439
|
appUuid?: string | undefined;
|
|
440
440
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
441
441
|
};
|
|
@@ -451,11 +451,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
451
451
|
uuid?: string | undefined;
|
|
452
452
|
description?: string | undefined;
|
|
453
453
|
state?: import("..").WorkspaceElementState | undefined;
|
|
454
|
-
errors?:
|
|
455
|
-
isDeactivated?: boolean | undefined;
|
|
454
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
456
455
|
createdAt?: string | undefined;
|
|
457
456
|
updatedAt?: string | undefined;
|
|
458
457
|
archivedAt?: string | undefined;
|
|
458
|
+
isDeactivated?: boolean | undefined;
|
|
459
459
|
integrationId?: string | undefined;
|
|
460
460
|
publishedRevision?: string | undefined;
|
|
461
461
|
universalFieldMappingId?: string | undefined;
|
|
@@ -487,14 +487,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
487
487
|
uuid?: string | undefined;
|
|
488
488
|
description?: string | undefined;
|
|
489
489
|
state?: import("..").WorkspaceElementState | undefined;
|
|
490
|
-
errors?:
|
|
490
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
491
491
|
revision?: string | undefined;
|
|
492
|
-
isDeactivated?: boolean | undefined;
|
|
493
492
|
createdAt?: string | undefined;
|
|
494
493
|
updatedAt?: string | undefined;
|
|
495
494
|
archivedAt?: string | undefined;
|
|
495
|
+
isDeactivated?: boolean | undefined;
|
|
496
496
|
parameters?: any;
|
|
497
|
-
isTest?: boolean | undefined;
|
|
498
497
|
connectorId?: string | undefined;
|
|
499
498
|
connectorVersion?: string | undefined;
|
|
500
499
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -508,17 +507,18 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
508
507
|
eventsCount?: number | undefined;
|
|
509
508
|
hasGlobalWebhooks?: boolean | undefined;
|
|
510
509
|
hasUdm?: boolean | undefined;
|
|
510
|
+
isTest?: boolean | undefined;
|
|
511
511
|
appUuid?: string | undefined;
|
|
512
512
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
513
513
|
} | undefined;
|
|
514
514
|
uuid?: string | undefined;
|
|
515
515
|
description?: string | undefined;
|
|
516
516
|
state?: import("..").WorkspaceElementState | undefined;
|
|
517
|
-
errors?:
|
|
518
|
-
isDeactivated?: boolean | undefined;
|
|
517
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
519
518
|
createdAt?: string | undefined;
|
|
520
519
|
updatedAt?: string | undefined;
|
|
521
520
|
archivedAt?: string | undefined;
|
|
521
|
+
isDeactivated?: boolean | undefined;
|
|
522
522
|
integrationId?: string | undefined;
|
|
523
523
|
publishedRevision?: string | undefined;
|
|
524
524
|
universalFieldMappingId?: string | undefined;
|
|
@@ -540,14 +540,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
540
540
|
uuid?: string | undefined;
|
|
541
541
|
description?: string | undefined;
|
|
542
542
|
state?: import("..").WorkspaceElementState | undefined;
|
|
543
|
-
errors?:
|
|
543
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
544
544
|
revision?: string | undefined;
|
|
545
|
-
isDeactivated?: boolean | undefined;
|
|
546
545
|
createdAt?: string | undefined;
|
|
547
546
|
updatedAt?: string | undefined;
|
|
548
547
|
archivedAt?: string | undefined;
|
|
548
|
+
isDeactivated?: boolean | undefined;
|
|
549
549
|
parameters?: any;
|
|
550
|
-
isTest?: boolean | undefined;
|
|
551
550
|
connectorId?: string | undefined;
|
|
552
551
|
connectorVersion?: string | undefined;
|
|
553
552
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -561,6 +560,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
561
560
|
eventsCount?: number | undefined;
|
|
562
561
|
hasGlobalWebhooks?: boolean | undefined;
|
|
563
562
|
hasUdm?: boolean | undefined;
|
|
563
|
+
isTest?: boolean | undefined;
|
|
564
564
|
appUuid?: string | undefined;
|
|
565
565
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
566
566
|
};
|
|
@@ -576,11 +576,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
576
576
|
uuid?: string | undefined;
|
|
577
577
|
description?: string | undefined;
|
|
578
578
|
state?: import("..").WorkspaceElementState | undefined;
|
|
579
|
-
errors?:
|
|
580
|
-
isDeactivated?: boolean | undefined;
|
|
579
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
581
580
|
createdAt?: string | undefined;
|
|
582
581
|
updatedAt?: string | undefined;
|
|
583
582
|
archivedAt?: string | undefined;
|
|
583
|
+
isDeactivated?: boolean | undefined;
|
|
584
584
|
integrationId?: string | undefined;
|
|
585
585
|
publishedRevision?: string | undefined;
|
|
586
586
|
universalFieldMappingId?: string | undefined;
|
|
@@ -612,14 +612,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
612
612
|
uuid?: string | undefined;
|
|
613
613
|
description?: string | undefined;
|
|
614
614
|
state?: import("..").WorkspaceElementState | undefined;
|
|
615
|
-
errors?:
|
|
615
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
616
616
|
revision?: string | undefined;
|
|
617
|
-
isDeactivated?: boolean | undefined;
|
|
618
617
|
createdAt?: string | undefined;
|
|
619
618
|
updatedAt?: string | undefined;
|
|
620
619
|
archivedAt?: string | undefined;
|
|
620
|
+
isDeactivated?: boolean | undefined;
|
|
621
621
|
parameters?: any;
|
|
622
|
-
isTest?: boolean | undefined;
|
|
623
622
|
connectorId?: string | undefined;
|
|
624
623
|
connectorVersion?: string | undefined;
|
|
625
624
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -633,17 +632,18 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
633
632
|
eventsCount?: number | undefined;
|
|
634
633
|
hasGlobalWebhooks?: boolean | undefined;
|
|
635
634
|
hasUdm?: boolean | undefined;
|
|
635
|
+
isTest?: boolean | undefined;
|
|
636
636
|
appUuid?: string | undefined;
|
|
637
637
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
638
638
|
} | undefined;
|
|
639
639
|
uuid?: string | undefined;
|
|
640
640
|
description?: string | undefined;
|
|
641
641
|
state?: import("..").WorkspaceElementState | undefined;
|
|
642
|
-
errors?:
|
|
643
|
-
isDeactivated?: boolean | undefined;
|
|
642
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
644
643
|
createdAt?: string | undefined;
|
|
645
644
|
updatedAt?: string | undefined;
|
|
646
645
|
archivedAt?: string | undefined;
|
|
646
|
+
isDeactivated?: boolean | undefined;
|
|
647
647
|
integrationId?: string | undefined;
|
|
648
648
|
publishedRevision?: string | undefined;
|
|
649
649
|
universalFieldMappingId?: string | undefined;
|
|
@@ -665,14 +665,13 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
665
665
|
uuid?: string | undefined;
|
|
666
666
|
description?: string | undefined;
|
|
667
667
|
state?: import("..").WorkspaceElementState | undefined;
|
|
668
|
-
errors?:
|
|
668
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
669
669
|
revision?: string | undefined;
|
|
670
|
-
isDeactivated?: boolean | undefined;
|
|
671
670
|
createdAt?: string | undefined;
|
|
672
671
|
updatedAt?: string | undefined;
|
|
673
672
|
archivedAt?: string | undefined;
|
|
673
|
+
isDeactivated?: boolean | undefined;
|
|
674
674
|
parameters?: any;
|
|
675
|
-
isTest?: boolean | undefined;
|
|
676
675
|
connectorId?: string | undefined;
|
|
677
676
|
connectorVersion?: string | undefined;
|
|
678
677
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -686,6 +685,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
686
685
|
eventsCount?: number | undefined;
|
|
687
686
|
hasGlobalWebhooks?: boolean | undefined;
|
|
688
687
|
hasUdm?: boolean | undefined;
|
|
688
|
+
isTest?: boolean | undefined;
|
|
689
689
|
appUuid?: string | undefined;
|
|
690
690
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
691
691
|
};
|
|
@@ -701,11 +701,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
701
701
|
uuid?: string | undefined;
|
|
702
702
|
description?: string | undefined;
|
|
703
703
|
state?: import("..").WorkspaceElementState | undefined;
|
|
704
|
-
errors?:
|
|
705
|
-
isDeactivated?: boolean | undefined;
|
|
704
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
706
705
|
createdAt?: string | undefined;
|
|
707
706
|
updatedAt?: string | undefined;
|
|
708
707
|
archivedAt?: string | undefined;
|
|
708
|
+
isDeactivated?: boolean | undefined;
|
|
709
709
|
integrationId?: string | undefined;
|
|
710
710
|
publishedRevision?: string | undefined;
|
|
711
711
|
universalFieldMappingId?: string | undefined;
|