@membranehq/sdk 0.5.1 → 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 +1949 -3947
- 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 +8 -22
- package/dist/dts/accessors/integrations-accessors.d.ts +8 -22
- package/dist/dts/errors/index.d.ts +10 -1
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +122 -68
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +74 -189
- package/dist/dts/workspace-elements/api/actions-api.d.ts +253 -531
- 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 +354 -273
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +55 -149
- 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 +60 -154
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +62 -254
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +45 -139
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +45 -139
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +40 -134
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +20 -128
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +158 -374
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +56 -248
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +140 -356
- package/dist/dts/workspace-elements/api/flows-api.d.ts +265 -753
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +135 -101
- package/dist/dts/workspace-elements/api/scenarios-api.d.ts +21 -105
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +13 -13
- 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 +14 -19
- 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 +12 -12
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +17 -16
- 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 +21 -21
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +48 -455
- 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 +3 -1
- package/dist/index.d.ts +2791 -5337
- package/dist/index.js +70 -66
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +2791 -5337
- package/dist/index.module.mjs +67 -66
- 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>;
|
|
@@ -78,44 +78,8 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
78
78
|
logoUri: z.ZodString;
|
|
79
79
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
80
80
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
81
|
-
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
82
|
-
key: z.ZodString;
|
|
83
|
-
type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
|
|
84
|
-
title: z.ZodOptional<z.ZodString>;
|
|
85
|
-
description: z.ZodOptional<z.ZodString>;
|
|
86
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
87
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
88
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
89
|
-
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
schema?: any;
|
|
91
|
-
helpUri?: string | undefined;
|
|
92
|
-
}, {
|
|
93
|
-
schema?: any;
|
|
94
|
-
helpUri?: string | undefined;
|
|
95
|
-
}>>;
|
|
96
|
-
}, "strip", z.ZodTypeAny, {
|
|
97
|
-
key: string;
|
|
98
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
99
|
-
description?: string | undefined;
|
|
100
|
-
title?: string | undefined;
|
|
101
|
-
ui?: {
|
|
102
|
-
schema?: any;
|
|
103
|
-
helpUri?: string | undefined;
|
|
104
|
-
} | undefined;
|
|
105
|
-
}, {
|
|
106
|
-
key: string;
|
|
107
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
108
|
-
description?: string | undefined;
|
|
109
|
-
title?: string | undefined;
|
|
110
|
-
ui?: {
|
|
111
|
-
schema?: any;
|
|
112
|
-
helpUri?: string | undefined;
|
|
113
|
-
} | undefined;
|
|
114
|
-
}>, "many">>;
|
|
115
81
|
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
116
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
117
82
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
118
|
-
baseUri: z.ZodString;
|
|
119
83
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
120
84
|
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
121
85
|
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -134,33 +98,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
134
98
|
}, "strip", z.ZodTypeAny, {
|
|
135
99
|
id: string;
|
|
136
100
|
name: string;
|
|
137
|
-
baseUri: string;
|
|
138
101
|
logoUri: string;
|
|
139
102
|
key?: string | undefined;
|
|
140
103
|
uuid?: string | undefined;
|
|
141
104
|
description?: string | undefined;
|
|
142
105
|
state?: import("..").WorkspaceElementState | undefined;
|
|
143
|
-
errors?:
|
|
106
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
144
107
|
revision?: string | undefined;
|
|
145
|
-
isDeactivated?: boolean | undefined;
|
|
146
108
|
createdAt?: string | undefined;
|
|
147
109
|
updatedAt?: string | undefined;
|
|
148
110
|
archivedAt?: string | undefined;
|
|
111
|
+
isDeactivated?: boolean | undefined;
|
|
149
112
|
parameters?: any;
|
|
150
|
-
parametersSchema?: DataSchema | undefined;
|
|
151
|
-
isTest?: boolean | undefined;
|
|
152
113
|
connectorId?: string | undefined;
|
|
153
114
|
connectorVersion?: string | undefined;
|
|
154
|
-
authOptions?: {
|
|
155
|
-
key: string;
|
|
156
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
157
|
-
description?: string | undefined;
|
|
158
|
-
title?: string | undefined;
|
|
159
|
-
ui?: {
|
|
160
|
-
schema?: any;
|
|
161
|
-
helpUri?: string | undefined;
|
|
162
|
-
} | undefined;
|
|
163
|
-
}[] | undefined;
|
|
164
115
|
oAuthCallbackUri?: string | undefined;
|
|
165
116
|
hasMissingParameters?: boolean | undefined;
|
|
166
117
|
hasDocumentation?: boolean | undefined;
|
|
@@ -172,38 +123,26 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
172
123
|
eventsCount?: number | undefined;
|
|
173
124
|
hasGlobalWebhooks?: boolean | undefined;
|
|
174
125
|
hasUdm?: boolean | undefined;
|
|
126
|
+
isTest?: boolean | undefined;
|
|
175
127
|
appUuid?: string | undefined;
|
|
176
128
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
177
129
|
}, {
|
|
178
130
|
id: string;
|
|
179
131
|
name: string;
|
|
180
|
-
baseUri: string;
|
|
181
132
|
logoUri: string;
|
|
182
133
|
key?: string | undefined;
|
|
183
134
|
uuid?: string | undefined;
|
|
184
135
|
description?: string | undefined;
|
|
185
136
|
state?: import("..").WorkspaceElementState | undefined;
|
|
186
|
-
errors?:
|
|
137
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
187
138
|
revision?: string | undefined;
|
|
188
|
-
isDeactivated?: boolean | undefined;
|
|
189
139
|
createdAt?: string | undefined;
|
|
190
140
|
updatedAt?: string | undefined;
|
|
191
141
|
archivedAt?: string | undefined;
|
|
142
|
+
isDeactivated?: boolean | undefined;
|
|
192
143
|
parameters?: any;
|
|
193
|
-
parametersSchema?: DataSchema | undefined;
|
|
194
|
-
isTest?: boolean | undefined;
|
|
195
144
|
connectorId?: string | undefined;
|
|
196
145
|
connectorVersion?: string | undefined;
|
|
197
|
-
authOptions?: {
|
|
198
|
-
key: string;
|
|
199
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
200
|
-
description?: string | undefined;
|
|
201
|
-
title?: string | undefined;
|
|
202
|
-
ui?: {
|
|
203
|
-
schema?: any;
|
|
204
|
-
helpUri?: string | undefined;
|
|
205
|
-
} | undefined;
|
|
206
|
-
}[] | undefined;
|
|
207
146
|
oAuthCallbackUri?: string | undefined;
|
|
208
147
|
hasMissingParameters?: boolean | undefined;
|
|
209
148
|
hasDocumentation?: boolean | undefined;
|
|
@@ -215,21 +154,22 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
215
154
|
eventsCount?: number | undefined;
|
|
216
155
|
hasGlobalWebhooks?: boolean | undefined;
|
|
217
156
|
hasUdm?: boolean | undefined;
|
|
157
|
+
isTest?: boolean | undefined;
|
|
218
158
|
appUuid?: string | undefined;
|
|
219
159
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
220
160
|
}>>;
|
|
221
161
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
222
162
|
element: z.ZodObject<{
|
|
223
163
|
id: z.ZodString;
|
|
224
|
-
name: z.ZodString;
|
|
225
164
|
key: z.ZodOptional<z.ZodString>;
|
|
226
165
|
uuid: z.ZodOptional<z.ZodString>;
|
|
227
166
|
description: z.ZodOptional<z.ZodString>;
|
|
167
|
+
name: z.ZodString;
|
|
228
168
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
229
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
230
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
169
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
231
170
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
232
171
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
172
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
233
173
|
} & {
|
|
234
174
|
revision: z.ZodString;
|
|
235
175
|
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -261,11 +201,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
261
201
|
uuid?: string | undefined;
|
|
262
202
|
description?: string | undefined;
|
|
263
203
|
state?: import("..").WorkspaceElementState | undefined;
|
|
264
|
-
errors?:
|
|
265
|
-
isDeactivated?: boolean | undefined;
|
|
204
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
266
205
|
createdAt?: string | undefined;
|
|
267
206
|
updatedAt?: string | undefined;
|
|
268
207
|
archivedAt?: string | undefined;
|
|
208
|
+
isDeactivated?: boolean | undefined;
|
|
269
209
|
integrationId?: string | undefined;
|
|
270
210
|
publishedRevision?: string | undefined;
|
|
271
211
|
universalFieldMappingId?: string | undefined;
|
|
@@ -290,11 +230,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
290
230
|
uuid?: string | undefined;
|
|
291
231
|
description?: string | undefined;
|
|
292
232
|
state?: import("..").WorkspaceElementState | undefined;
|
|
293
|
-
errors?:
|
|
294
|
-
isDeactivated?: boolean | undefined;
|
|
233
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
295
234
|
createdAt?: string | undefined;
|
|
296
235
|
updatedAt?: string | undefined;
|
|
297
236
|
archivedAt?: string | undefined;
|
|
237
|
+
isDeactivated?: boolean | undefined;
|
|
298
238
|
integrationId?: string | undefined;
|
|
299
239
|
publishedRevision?: string | undefined;
|
|
300
240
|
universalFieldMappingId?: string | undefined;
|
|
@@ -310,12 +250,12 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
310
250
|
}>;
|
|
311
251
|
integration: z.ZodObject<{
|
|
312
252
|
id: z.ZodString;
|
|
313
|
-
name: z.ZodString;
|
|
314
253
|
key: z.ZodOptional<z.ZodString>;
|
|
315
254
|
uuid: z.ZodOptional<z.ZodString>;
|
|
316
255
|
description: z.ZodOptional<z.ZodString>;
|
|
256
|
+
name: z.ZodString;
|
|
317
257
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
318
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
258
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
319
259
|
revision: z.ZodOptional<z.ZodString>;
|
|
320
260
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
321
261
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -323,44 +263,8 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
323
263
|
logoUri: z.ZodString;
|
|
324
264
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
325
265
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
326
|
-
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
327
|
-
key: z.ZodString;
|
|
328
|
-
type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
|
|
329
|
-
title: z.ZodOptional<z.ZodString>;
|
|
330
|
-
description: z.ZodOptional<z.ZodString>;
|
|
331
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
332
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
333
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
334
|
-
}, "strip", z.ZodTypeAny, {
|
|
335
|
-
schema?: any;
|
|
336
|
-
helpUri?: string | undefined;
|
|
337
|
-
}, {
|
|
338
|
-
schema?: any;
|
|
339
|
-
helpUri?: string | undefined;
|
|
340
|
-
}>>;
|
|
341
|
-
}, "strip", z.ZodTypeAny, {
|
|
342
|
-
key: string;
|
|
343
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
344
|
-
description?: string | undefined;
|
|
345
|
-
title?: string | undefined;
|
|
346
|
-
ui?: {
|
|
347
|
-
schema?: any;
|
|
348
|
-
helpUri?: string | undefined;
|
|
349
|
-
} | undefined;
|
|
350
|
-
}, {
|
|
351
|
-
key: string;
|
|
352
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
353
|
-
description?: string | undefined;
|
|
354
|
-
title?: string | undefined;
|
|
355
|
-
ui?: {
|
|
356
|
-
schema?: any;
|
|
357
|
-
helpUri?: string | undefined;
|
|
358
|
-
} | undefined;
|
|
359
|
-
}>, "many">>;
|
|
360
266
|
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
361
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
362
267
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
363
|
-
baseUri: z.ZodString;
|
|
364
268
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
365
269
|
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
366
270
|
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -379,33 +283,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
379
283
|
}, "strip", z.ZodTypeAny, {
|
|
380
284
|
id: string;
|
|
381
285
|
name: string;
|
|
382
|
-
baseUri: string;
|
|
383
286
|
logoUri: string;
|
|
384
287
|
key?: string | undefined;
|
|
385
288
|
uuid?: string | undefined;
|
|
386
289
|
description?: string | undefined;
|
|
387
290
|
state?: import("..").WorkspaceElementState | undefined;
|
|
388
|
-
errors?:
|
|
291
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
389
292
|
revision?: string | undefined;
|
|
390
|
-
isDeactivated?: boolean | undefined;
|
|
391
293
|
createdAt?: string | undefined;
|
|
392
294
|
updatedAt?: string | undefined;
|
|
393
295
|
archivedAt?: string | undefined;
|
|
296
|
+
isDeactivated?: boolean | undefined;
|
|
394
297
|
parameters?: any;
|
|
395
|
-
parametersSchema?: DataSchema | undefined;
|
|
396
|
-
isTest?: boolean | undefined;
|
|
397
298
|
connectorId?: string | undefined;
|
|
398
299
|
connectorVersion?: string | undefined;
|
|
399
|
-
authOptions?: {
|
|
400
|
-
key: string;
|
|
401
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
402
|
-
description?: string | undefined;
|
|
403
|
-
title?: string | undefined;
|
|
404
|
-
ui?: {
|
|
405
|
-
schema?: any;
|
|
406
|
-
helpUri?: string | undefined;
|
|
407
|
-
} | undefined;
|
|
408
|
-
}[] | undefined;
|
|
409
300
|
oAuthCallbackUri?: string | undefined;
|
|
410
301
|
hasMissingParameters?: boolean | undefined;
|
|
411
302
|
hasDocumentation?: boolean | undefined;
|
|
@@ -417,38 +308,26 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
417
308
|
eventsCount?: number | undefined;
|
|
418
309
|
hasGlobalWebhooks?: boolean | undefined;
|
|
419
310
|
hasUdm?: boolean | undefined;
|
|
311
|
+
isTest?: boolean | undefined;
|
|
420
312
|
appUuid?: string | undefined;
|
|
421
313
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
422
314
|
}, {
|
|
423
315
|
id: string;
|
|
424
316
|
name: string;
|
|
425
|
-
baseUri: string;
|
|
426
317
|
logoUri: string;
|
|
427
318
|
key?: string | undefined;
|
|
428
319
|
uuid?: string | undefined;
|
|
429
320
|
description?: string | undefined;
|
|
430
321
|
state?: import("..").WorkspaceElementState | undefined;
|
|
431
|
-
errors?:
|
|
322
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
432
323
|
revision?: string | undefined;
|
|
433
|
-
isDeactivated?: boolean | undefined;
|
|
434
324
|
createdAt?: string | undefined;
|
|
435
325
|
updatedAt?: string | undefined;
|
|
436
326
|
archivedAt?: string | undefined;
|
|
327
|
+
isDeactivated?: boolean | undefined;
|
|
437
328
|
parameters?: any;
|
|
438
|
-
parametersSchema?: DataSchema | undefined;
|
|
439
|
-
isTest?: boolean | undefined;
|
|
440
329
|
connectorId?: string | undefined;
|
|
441
330
|
connectorVersion?: string | undefined;
|
|
442
|
-
authOptions?: {
|
|
443
|
-
key: string;
|
|
444
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
445
|
-
description?: string | undefined;
|
|
446
|
-
title?: string | undefined;
|
|
447
|
-
ui?: {
|
|
448
|
-
schema?: any;
|
|
449
|
-
helpUri?: string | undefined;
|
|
450
|
-
} | undefined;
|
|
451
|
-
}[] | undefined;
|
|
452
331
|
oAuthCallbackUri?: string | undefined;
|
|
453
332
|
hasMissingParameters?: boolean | undefined;
|
|
454
333
|
hasDocumentation?: boolean | undefined;
|
|
@@ -460,6 +339,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
460
339
|
eventsCount?: number | undefined;
|
|
461
340
|
hasGlobalWebhooks?: boolean | undefined;
|
|
462
341
|
hasUdm?: boolean | undefined;
|
|
342
|
+
isTest?: boolean | undefined;
|
|
463
343
|
appUuid?: string | undefined;
|
|
464
344
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
465
345
|
}>;
|
|
@@ -467,33 +347,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
467
347
|
integration: {
|
|
468
348
|
id: string;
|
|
469
349
|
name: string;
|
|
470
|
-
baseUri: string;
|
|
471
350
|
logoUri: string;
|
|
472
351
|
key?: string | undefined;
|
|
473
352
|
uuid?: string | undefined;
|
|
474
353
|
description?: string | undefined;
|
|
475
354
|
state?: import("..").WorkspaceElementState | undefined;
|
|
476
|
-
errors?:
|
|
355
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
477
356
|
revision?: string | undefined;
|
|
478
|
-
isDeactivated?: boolean | undefined;
|
|
479
357
|
createdAt?: string | undefined;
|
|
480
358
|
updatedAt?: string | undefined;
|
|
481
359
|
archivedAt?: string | undefined;
|
|
360
|
+
isDeactivated?: boolean | undefined;
|
|
482
361
|
parameters?: any;
|
|
483
|
-
parametersSchema?: DataSchema | undefined;
|
|
484
|
-
isTest?: boolean | undefined;
|
|
485
362
|
connectorId?: string | undefined;
|
|
486
363
|
connectorVersion?: string | undefined;
|
|
487
|
-
authOptions?: {
|
|
488
|
-
key: string;
|
|
489
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
490
|
-
description?: string | undefined;
|
|
491
|
-
title?: string | undefined;
|
|
492
|
-
ui?: {
|
|
493
|
-
schema?: any;
|
|
494
|
-
helpUri?: string | undefined;
|
|
495
|
-
} | undefined;
|
|
496
|
-
}[] | undefined;
|
|
497
364
|
oAuthCallbackUri?: string | undefined;
|
|
498
365
|
hasMissingParameters?: boolean | undefined;
|
|
499
366
|
hasDocumentation?: boolean | undefined;
|
|
@@ -505,6 +372,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
505
372
|
eventsCount?: number | undefined;
|
|
506
373
|
hasGlobalWebhooks?: boolean | undefined;
|
|
507
374
|
hasUdm?: boolean | undefined;
|
|
375
|
+
isTest?: boolean | undefined;
|
|
508
376
|
appUuid?: string | undefined;
|
|
509
377
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
510
378
|
};
|
|
@@ -520,11 +388,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
520
388
|
uuid?: string | undefined;
|
|
521
389
|
description?: string | undefined;
|
|
522
390
|
state?: import("..").WorkspaceElementState | undefined;
|
|
523
|
-
errors?:
|
|
524
|
-
isDeactivated?: boolean | undefined;
|
|
391
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
525
392
|
createdAt?: string | undefined;
|
|
526
393
|
updatedAt?: string | undefined;
|
|
527
394
|
archivedAt?: string | undefined;
|
|
395
|
+
isDeactivated?: boolean | undefined;
|
|
528
396
|
integrationId?: string | undefined;
|
|
529
397
|
publishedRevision?: string | undefined;
|
|
530
398
|
universalFieldMappingId?: string | undefined;
|
|
@@ -542,33 +410,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
542
410
|
integration: {
|
|
543
411
|
id: string;
|
|
544
412
|
name: string;
|
|
545
|
-
baseUri: string;
|
|
546
413
|
logoUri: string;
|
|
547
414
|
key?: string | undefined;
|
|
548
415
|
uuid?: string | undefined;
|
|
549
416
|
description?: string | undefined;
|
|
550
417
|
state?: import("..").WorkspaceElementState | undefined;
|
|
551
|
-
errors?:
|
|
418
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
552
419
|
revision?: string | undefined;
|
|
553
|
-
isDeactivated?: boolean | undefined;
|
|
554
420
|
createdAt?: string | undefined;
|
|
555
421
|
updatedAt?: string | undefined;
|
|
556
422
|
archivedAt?: string | undefined;
|
|
423
|
+
isDeactivated?: boolean | undefined;
|
|
557
424
|
parameters?: any;
|
|
558
|
-
parametersSchema?: DataSchema | undefined;
|
|
559
|
-
isTest?: boolean | undefined;
|
|
560
425
|
connectorId?: string | undefined;
|
|
561
426
|
connectorVersion?: string | undefined;
|
|
562
|
-
authOptions?: {
|
|
563
|
-
key: string;
|
|
564
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
565
|
-
description?: string | undefined;
|
|
566
|
-
title?: string | undefined;
|
|
567
|
-
ui?: {
|
|
568
|
-
schema?: any;
|
|
569
|
-
helpUri?: string | undefined;
|
|
570
|
-
} | undefined;
|
|
571
|
-
}[] | undefined;
|
|
572
427
|
oAuthCallbackUri?: string | undefined;
|
|
573
428
|
hasMissingParameters?: boolean | undefined;
|
|
574
429
|
hasDocumentation?: boolean | undefined;
|
|
@@ -580,6 +435,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
580
435
|
eventsCount?: number | undefined;
|
|
581
436
|
hasGlobalWebhooks?: boolean | undefined;
|
|
582
437
|
hasUdm?: boolean | undefined;
|
|
438
|
+
isTest?: boolean | undefined;
|
|
583
439
|
appUuid?: string | undefined;
|
|
584
440
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
585
441
|
};
|
|
@@ -595,11 +451,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
595
451
|
uuid?: string | undefined;
|
|
596
452
|
description?: string | undefined;
|
|
597
453
|
state?: import("..").WorkspaceElementState | undefined;
|
|
598
|
-
errors?:
|
|
599
|
-
isDeactivated?: boolean | undefined;
|
|
454
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
600
455
|
createdAt?: string | undefined;
|
|
601
456
|
updatedAt?: string | undefined;
|
|
602
457
|
archivedAt?: string | undefined;
|
|
458
|
+
isDeactivated?: boolean | undefined;
|
|
603
459
|
integrationId?: string | undefined;
|
|
604
460
|
publishedRevision?: string | undefined;
|
|
605
461
|
universalFieldMappingId?: string | undefined;
|
|
@@ -626,33 +482,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
626
482
|
integration?: {
|
|
627
483
|
id: string;
|
|
628
484
|
name: string;
|
|
629
|
-
baseUri: string;
|
|
630
485
|
logoUri: string;
|
|
631
486
|
key?: string | undefined;
|
|
632
487
|
uuid?: string | undefined;
|
|
633
488
|
description?: string | undefined;
|
|
634
489
|
state?: import("..").WorkspaceElementState | undefined;
|
|
635
|
-
errors?:
|
|
490
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
636
491
|
revision?: string | undefined;
|
|
637
|
-
isDeactivated?: boolean | undefined;
|
|
638
492
|
createdAt?: string | undefined;
|
|
639
493
|
updatedAt?: string | undefined;
|
|
640
494
|
archivedAt?: string | undefined;
|
|
495
|
+
isDeactivated?: boolean | undefined;
|
|
641
496
|
parameters?: any;
|
|
642
|
-
parametersSchema?: DataSchema | undefined;
|
|
643
|
-
isTest?: boolean | undefined;
|
|
644
497
|
connectorId?: string | undefined;
|
|
645
498
|
connectorVersion?: string | undefined;
|
|
646
|
-
authOptions?: {
|
|
647
|
-
key: string;
|
|
648
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
649
|
-
description?: string | undefined;
|
|
650
|
-
title?: string | undefined;
|
|
651
|
-
ui?: {
|
|
652
|
-
schema?: any;
|
|
653
|
-
helpUri?: string | undefined;
|
|
654
|
-
} | undefined;
|
|
655
|
-
}[] | undefined;
|
|
656
499
|
oAuthCallbackUri?: string | undefined;
|
|
657
500
|
hasMissingParameters?: boolean | undefined;
|
|
658
501
|
hasDocumentation?: boolean | undefined;
|
|
@@ -664,17 +507,18 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
664
507
|
eventsCount?: number | undefined;
|
|
665
508
|
hasGlobalWebhooks?: boolean | undefined;
|
|
666
509
|
hasUdm?: boolean | undefined;
|
|
510
|
+
isTest?: boolean | undefined;
|
|
667
511
|
appUuid?: string | undefined;
|
|
668
512
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
669
513
|
} | undefined;
|
|
670
514
|
uuid?: string | undefined;
|
|
671
515
|
description?: string | undefined;
|
|
672
516
|
state?: import("..").WorkspaceElementState | undefined;
|
|
673
|
-
errors?:
|
|
674
|
-
isDeactivated?: boolean | undefined;
|
|
517
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
675
518
|
createdAt?: string | undefined;
|
|
676
519
|
updatedAt?: string | undefined;
|
|
677
520
|
archivedAt?: string | undefined;
|
|
521
|
+
isDeactivated?: boolean | undefined;
|
|
678
522
|
integrationId?: string | undefined;
|
|
679
523
|
publishedRevision?: string | undefined;
|
|
680
524
|
universalFieldMappingId?: string | undefined;
|
|
@@ -691,33 +535,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
691
535
|
integration: {
|
|
692
536
|
id: string;
|
|
693
537
|
name: string;
|
|
694
|
-
baseUri: string;
|
|
695
538
|
logoUri: string;
|
|
696
539
|
key?: string | undefined;
|
|
697
540
|
uuid?: string | undefined;
|
|
698
541
|
description?: string | undefined;
|
|
699
542
|
state?: import("..").WorkspaceElementState | undefined;
|
|
700
|
-
errors?:
|
|
543
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
701
544
|
revision?: string | undefined;
|
|
702
|
-
isDeactivated?: boolean | undefined;
|
|
703
545
|
createdAt?: string | undefined;
|
|
704
546
|
updatedAt?: string | undefined;
|
|
705
547
|
archivedAt?: string | undefined;
|
|
548
|
+
isDeactivated?: boolean | undefined;
|
|
706
549
|
parameters?: any;
|
|
707
|
-
parametersSchema?: DataSchema | undefined;
|
|
708
|
-
isTest?: boolean | undefined;
|
|
709
550
|
connectorId?: string | undefined;
|
|
710
551
|
connectorVersion?: string | undefined;
|
|
711
|
-
authOptions?: {
|
|
712
|
-
key: string;
|
|
713
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
714
|
-
description?: string | undefined;
|
|
715
|
-
title?: string | undefined;
|
|
716
|
-
ui?: {
|
|
717
|
-
schema?: any;
|
|
718
|
-
helpUri?: string | undefined;
|
|
719
|
-
} | undefined;
|
|
720
|
-
}[] | undefined;
|
|
721
552
|
oAuthCallbackUri?: string | undefined;
|
|
722
553
|
hasMissingParameters?: boolean | undefined;
|
|
723
554
|
hasDocumentation?: boolean | undefined;
|
|
@@ -729,6 +560,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
729
560
|
eventsCount?: number | undefined;
|
|
730
561
|
hasGlobalWebhooks?: boolean | undefined;
|
|
731
562
|
hasUdm?: boolean | undefined;
|
|
563
|
+
isTest?: boolean | undefined;
|
|
732
564
|
appUuid?: string | undefined;
|
|
733
565
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
734
566
|
};
|
|
@@ -744,11 +576,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
744
576
|
uuid?: string | undefined;
|
|
745
577
|
description?: string | undefined;
|
|
746
578
|
state?: import("..").WorkspaceElementState | undefined;
|
|
747
|
-
errors?:
|
|
748
|
-
isDeactivated?: boolean | undefined;
|
|
579
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
749
580
|
createdAt?: string | undefined;
|
|
750
581
|
updatedAt?: string | undefined;
|
|
751
582
|
archivedAt?: string | undefined;
|
|
583
|
+
isDeactivated?: boolean | undefined;
|
|
752
584
|
integrationId?: string | undefined;
|
|
753
585
|
publishedRevision?: string | undefined;
|
|
754
586
|
universalFieldMappingId?: string | undefined;
|
|
@@ -775,33 +607,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
775
607
|
integration?: {
|
|
776
608
|
id: string;
|
|
777
609
|
name: string;
|
|
778
|
-
baseUri: string;
|
|
779
610
|
logoUri: string;
|
|
780
611
|
key?: string | undefined;
|
|
781
612
|
uuid?: string | undefined;
|
|
782
613
|
description?: string | undefined;
|
|
783
614
|
state?: import("..").WorkspaceElementState | undefined;
|
|
784
|
-
errors?:
|
|
615
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
785
616
|
revision?: string | undefined;
|
|
786
|
-
isDeactivated?: boolean | undefined;
|
|
787
617
|
createdAt?: string | undefined;
|
|
788
618
|
updatedAt?: string | undefined;
|
|
789
619
|
archivedAt?: string | undefined;
|
|
620
|
+
isDeactivated?: boolean | undefined;
|
|
790
621
|
parameters?: any;
|
|
791
|
-
parametersSchema?: DataSchema | undefined;
|
|
792
|
-
isTest?: boolean | undefined;
|
|
793
622
|
connectorId?: string | undefined;
|
|
794
623
|
connectorVersion?: string | undefined;
|
|
795
|
-
authOptions?: {
|
|
796
|
-
key: string;
|
|
797
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
798
|
-
description?: string | undefined;
|
|
799
|
-
title?: string | undefined;
|
|
800
|
-
ui?: {
|
|
801
|
-
schema?: any;
|
|
802
|
-
helpUri?: string | undefined;
|
|
803
|
-
} | undefined;
|
|
804
|
-
}[] | undefined;
|
|
805
624
|
oAuthCallbackUri?: string | undefined;
|
|
806
625
|
hasMissingParameters?: boolean | undefined;
|
|
807
626
|
hasDocumentation?: boolean | undefined;
|
|
@@ -813,17 +632,18 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
813
632
|
eventsCount?: number | undefined;
|
|
814
633
|
hasGlobalWebhooks?: boolean | undefined;
|
|
815
634
|
hasUdm?: boolean | undefined;
|
|
635
|
+
isTest?: boolean | undefined;
|
|
816
636
|
appUuid?: string | undefined;
|
|
817
637
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
818
638
|
} | undefined;
|
|
819
639
|
uuid?: string | undefined;
|
|
820
640
|
description?: string | undefined;
|
|
821
641
|
state?: import("..").WorkspaceElementState | undefined;
|
|
822
|
-
errors?:
|
|
823
|
-
isDeactivated?: boolean | undefined;
|
|
642
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
824
643
|
createdAt?: string | undefined;
|
|
825
644
|
updatedAt?: string | undefined;
|
|
826
645
|
archivedAt?: string | undefined;
|
|
646
|
+
isDeactivated?: boolean | undefined;
|
|
827
647
|
integrationId?: string | undefined;
|
|
828
648
|
publishedRevision?: string | undefined;
|
|
829
649
|
universalFieldMappingId?: string | undefined;
|
|
@@ -840,33 +660,20 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
840
660
|
integration: {
|
|
841
661
|
id: string;
|
|
842
662
|
name: string;
|
|
843
|
-
baseUri: string;
|
|
844
663
|
logoUri: string;
|
|
845
664
|
key?: string | undefined;
|
|
846
665
|
uuid?: string | undefined;
|
|
847
666
|
description?: string | undefined;
|
|
848
667
|
state?: import("..").WorkspaceElementState | undefined;
|
|
849
|
-
errors?:
|
|
668
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
850
669
|
revision?: string | undefined;
|
|
851
|
-
isDeactivated?: boolean | undefined;
|
|
852
670
|
createdAt?: string | undefined;
|
|
853
671
|
updatedAt?: string | undefined;
|
|
854
672
|
archivedAt?: string | undefined;
|
|
673
|
+
isDeactivated?: boolean | undefined;
|
|
855
674
|
parameters?: any;
|
|
856
|
-
parametersSchema?: DataSchema | undefined;
|
|
857
|
-
isTest?: boolean | undefined;
|
|
858
675
|
connectorId?: string | undefined;
|
|
859
676
|
connectorVersion?: string | undefined;
|
|
860
|
-
authOptions?: {
|
|
861
|
-
key: string;
|
|
862
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
863
|
-
description?: string | undefined;
|
|
864
|
-
title?: string | undefined;
|
|
865
|
-
ui?: {
|
|
866
|
-
schema?: any;
|
|
867
|
-
helpUri?: string | undefined;
|
|
868
|
-
} | undefined;
|
|
869
|
-
}[] | undefined;
|
|
870
677
|
oAuthCallbackUri?: string | undefined;
|
|
871
678
|
hasMissingParameters?: boolean | undefined;
|
|
872
679
|
hasDocumentation?: boolean | undefined;
|
|
@@ -878,6 +685,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
878
685
|
eventsCount?: number | undefined;
|
|
879
686
|
hasGlobalWebhooks?: boolean | undefined;
|
|
880
687
|
hasUdm?: boolean | undefined;
|
|
688
|
+
isTest?: boolean | undefined;
|
|
881
689
|
appUuid?: string | undefined;
|
|
882
690
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
883
691
|
};
|
|
@@ -893,11 +701,11 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
893
701
|
uuid?: string | undefined;
|
|
894
702
|
description?: string | undefined;
|
|
895
703
|
state?: import("..").WorkspaceElementState | undefined;
|
|
896
|
-
errors?:
|
|
897
|
-
isDeactivated?: boolean | undefined;
|
|
704
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
898
705
|
createdAt?: string | undefined;
|
|
899
706
|
updatedAt?: string | undefined;
|
|
900
707
|
archivedAt?: string | undefined;
|
|
708
|
+
isDeactivated?: boolean | undefined;
|
|
901
709
|
integrationId?: string | undefined;
|
|
902
710
|
publishedRevision?: string | undefined;
|
|
903
711
|
universalFieldMappingId?: string | undefined;
|