@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
|
@@ -42,7 +42,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
42
42
|
payload: z.ZodOptional<z.ZodAny>;
|
|
43
43
|
launchedFlowRunIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
44
44
|
status: z.ZodNativeEnum<typeof ExternalEventLogStatus>;
|
|
45
|
-
error:
|
|
45
|
+
error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
|
|
46
46
|
} & {
|
|
47
47
|
user: z.ZodOptional<z.ZodObject<{
|
|
48
48
|
id: z.ZodString;
|
|
@@ -141,7 +141,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
141
141
|
} | undefined;
|
|
142
142
|
}>>;
|
|
143
143
|
status: z.ZodOptional<z.ZodNativeEnum<typeof import("../base/external-event-subscriptions").ExternalEventSubscriptionStatus>>;
|
|
144
|
-
error:
|
|
144
|
+
error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
|
|
145
145
|
isRealTime: z.ZodOptional<z.ZodBoolean>;
|
|
146
146
|
requiresPull: z.ZodOptional<z.ZodBoolean>;
|
|
147
147
|
requiresFullSync: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -160,7 +160,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
160
160
|
connectionId: string;
|
|
161
161
|
integrationId: string;
|
|
162
162
|
status?: import("../base/external-event-subscriptions").ExternalEventSubscriptionStatus | undefined;
|
|
163
|
-
error?:
|
|
163
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
164
164
|
name?: string | undefined;
|
|
165
165
|
createdAt?: string | undefined;
|
|
166
166
|
archivedAt?: string | undefined;
|
|
@@ -194,7 +194,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
194
194
|
connectionId: string;
|
|
195
195
|
integrationId: string;
|
|
196
196
|
status?: import("../base/external-event-subscriptions").ExternalEventSubscriptionStatus | undefined;
|
|
197
|
-
error?:
|
|
197
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
198
198
|
name?: string | undefined;
|
|
199
199
|
createdAt?: string | undefined;
|
|
200
200
|
archivedAt?: string | undefined;
|
|
@@ -225,12 +225,12 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
225
225
|
}>>;
|
|
226
226
|
integration: z.ZodOptional<z.ZodObject<{
|
|
227
227
|
id: z.ZodString;
|
|
228
|
-
name: z.ZodString;
|
|
229
228
|
key: z.ZodOptional<z.ZodString>;
|
|
230
229
|
uuid: z.ZodOptional<z.ZodString>;
|
|
231
230
|
description: z.ZodOptional<z.ZodString>;
|
|
231
|
+
name: z.ZodString;
|
|
232
232
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
233
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
233
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
234
234
|
revision: z.ZodOptional<z.ZodString>;
|
|
235
235
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
236
236
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -238,44 +238,8 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
238
238
|
logoUri: z.ZodString;
|
|
239
239
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
240
240
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
241
|
-
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
242
|
-
key: z.ZodString;
|
|
243
|
-
type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
|
|
244
|
-
title: z.ZodOptional<z.ZodString>;
|
|
245
|
-
description: z.ZodOptional<z.ZodString>;
|
|
246
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
247
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
248
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
249
|
-
}, "strip", z.ZodTypeAny, {
|
|
250
|
-
schema?: any;
|
|
251
|
-
helpUri?: string | undefined;
|
|
252
|
-
}, {
|
|
253
|
-
schema?: any;
|
|
254
|
-
helpUri?: string | undefined;
|
|
255
|
-
}>>;
|
|
256
|
-
}, "strip", z.ZodTypeAny, {
|
|
257
|
-
key: string;
|
|
258
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
259
|
-
description?: string | undefined;
|
|
260
|
-
title?: string | undefined;
|
|
261
|
-
ui?: {
|
|
262
|
-
schema?: any;
|
|
263
|
-
helpUri?: string | undefined;
|
|
264
|
-
} | undefined;
|
|
265
|
-
}, {
|
|
266
|
-
key: string;
|
|
267
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
268
|
-
description?: string | undefined;
|
|
269
|
-
title?: string | undefined;
|
|
270
|
-
ui?: {
|
|
271
|
-
schema?: any;
|
|
272
|
-
helpUri?: string | undefined;
|
|
273
|
-
} | undefined;
|
|
274
|
-
}>, "many">>;
|
|
275
241
|
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
276
|
-
parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
|
|
277
242
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
278
|
-
baseUri: z.ZodString;
|
|
279
243
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
280
244
|
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
281
245
|
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -294,33 +258,20 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
294
258
|
}, "strip", z.ZodTypeAny, {
|
|
295
259
|
id: string;
|
|
296
260
|
name: string;
|
|
297
|
-
baseUri: string;
|
|
298
261
|
logoUri: string;
|
|
299
262
|
key?: string | undefined;
|
|
300
263
|
uuid?: string | undefined;
|
|
301
264
|
description?: string | undefined;
|
|
302
265
|
state?: import("..").WorkspaceElementState | undefined;
|
|
303
|
-
errors?:
|
|
266
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
304
267
|
revision?: string | undefined;
|
|
305
|
-
isDeactivated?: boolean | undefined;
|
|
306
268
|
createdAt?: string | undefined;
|
|
307
269
|
updatedAt?: string | undefined;
|
|
308
270
|
archivedAt?: string | undefined;
|
|
271
|
+
isDeactivated?: boolean | undefined;
|
|
309
272
|
parameters?: any;
|
|
310
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
311
|
-
isTest?: boolean | undefined;
|
|
312
273
|
connectorId?: string | undefined;
|
|
313
274
|
connectorVersion?: string | undefined;
|
|
314
|
-
authOptions?: {
|
|
315
|
-
key: string;
|
|
316
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
317
|
-
description?: string | undefined;
|
|
318
|
-
title?: string | undefined;
|
|
319
|
-
ui?: {
|
|
320
|
-
schema?: any;
|
|
321
|
-
helpUri?: string | undefined;
|
|
322
|
-
} | undefined;
|
|
323
|
-
}[] | undefined;
|
|
324
275
|
oAuthCallbackUri?: string | undefined;
|
|
325
276
|
hasMissingParameters?: boolean | undefined;
|
|
326
277
|
hasDocumentation?: boolean | undefined;
|
|
@@ -332,38 +283,26 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
332
283
|
eventsCount?: number | undefined;
|
|
333
284
|
hasGlobalWebhooks?: boolean | undefined;
|
|
334
285
|
hasUdm?: boolean | undefined;
|
|
286
|
+
isTest?: boolean | undefined;
|
|
335
287
|
appUuid?: string | undefined;
|
|
336
288
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
337
289
|
}, {
|
|
338
290
|
id: string;
|
|
339
291
|
name: string;
|
|
340
|
-
baseUri: string;
|
|
341
292
|
logoUri: string;
|
|
342
293
|
key?: string | undefined;
|
|
343
294
|
uuid?: string | undefined;
|
|
344
295
|
description?: string | undefined;
|
|
345
296
|
state?: import("..").WorkspaceElementState | undefined;
|
|
346
|
-
errors?:
|
|
297
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
347
298
|
revision?: string | undefined;
|
|
348
|
-
isDeactivated?: boolean | undefined;
|
|
349
299
|
createdAt?: string | undefined;
|
|
350
300
|
updatedAt?: string | undefined;
|
|
351
301
|
archivedAt?: string | undefined;
|
|
302
|
+
isDeactivated?: boolean | undefined;
|
|
352
303
|
parameters?: any;
|
|
353
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
354
|
-
isTest?: boolean | undefined;
|
|
355
304
|
connectorId?: string | undefined;
|
|
356
305
|
connectorVersion?: string | undefined;
|
|
357
|
-
authOptions?: {
|
|
358
|
-
key: string;
|
|
359
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
360
|
-
description?: string | undefined;
|
|
361
|
-
title?: string | undefined;
|
|
362
|
-
ui?: {
|
|
363
|
-
schema?: any;
|
|
364
|
-
helpUri?: string | undefined;
|
|
365
|
-
} | undefined;
|
|
366
|
-
}[] | undefined;
|
|
367
306
|
oAuthCallbackUri?: string | undefined;
|
|
368
307
|
hasMissingParameters?: boolean | undefined;
|
|
369
308
|
hasDocumentation?: boolean | undefined;
|
|
@@ -375,6 +314,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
375
314
|
eventsCount?: number | undefined;
|
|
376
315
|
hasGlobalWebhooks?: boolean | undefined;
|
|
377
316
|
hasUdm?: boolean | undefined;
|
|
317
|
+
isTest?: boolean | undefined;
|
|
378
318
|
appUuid?: string | undefined;
|
|
379
319
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
380
320
|
}>>;
|
|
@@ -386,11 +326,9 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
386
326
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
387
327
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
388
328
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
389
|
-
error:
|
|
329
|
+
error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
|
|
390
330
|
integrationId: z.ZodString;
|
|
391
|
-
|
|
392
|
-
parameters: z.ZodOptional<z.ZodUnknown>;
|
|
393
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
331
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
394
332
|
createdAt: z.ZodString;
|
|
395
333
|
updatedAt: z.ZodString;
|
|
396
334
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
@@ -398,7 +336,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
398
336
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
399
337
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
400
338
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
401
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
339
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
402
340
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
403
341
|
}, "strip", z.ZodTypeAny, {
|
|
404
342
|
id: string;
|
|
@@ -407,20 +345,18 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
407
345
|
updatedAt: string;
|
|
408
346
|
userId: string;
|
|
409
347
|
integrationId: string;
|
|
410
|
-
error?:
|
|
348
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
411
349
|
state?: import("..").WorkspaceElementState | undefined;
|
|
412
|
-
errors?:
|
|
413
|
-
isDeactivated?: boolean | undefined;
|
|
350
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
414
351
|
archivedAt?: string | undefined;
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
connectorParameters?: unknown;
|
|
352
|
+
isDeactivated?: boolean | undefined;
|
|
353
|
+
authOptionKey?: string | undefined;
|
|
418
354
|
isTest?: boolean | undefined;
|
|
355
|
+
meta?: Record<string, any> | undefined;
|
|
419
356
|
disconnected?: boolean | undefined;
|
|
420
357
|
isDefunct?: boolean | undefined;
|
|
421
358
|
lastActiveAt?: string | undefined;
|
|
422
359
|
nextCredentialsRefreshAt?: string | undefined;
|
|
423
|
-
meta?: Record<string, any> | undefined;
|
|
424
360
|
}, {
|
|
425
361
|
id: string;
|
|
426
362
|
name: string;
|
|
@@ -428,20 +364,18 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
428
364
|
updatedAt: string;
|
|
429
365
|
userId: string;
|
|
430
366
|
integrationId: string;
|
|
431
|
-
error?:
|
|
367
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
432
368
|
state?: import("..").WorkspaceElementState | undefined;
|
|
433
|
-
errors?:
|
|
434
|
-
isDeactivated?: boolean | undefined;
|
|
369
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
435
370
|
archivedAt?: string | undefined;
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
connectorParameters?: unknown;
|
|
371
|
+
isDeactivated?: boolean | undefined;
|
|
372
|
+
authOptionKey?: string | undefined;
|
|
439
373
|
isTest?: boolean | undefined;
|
|
374
|
+
meta?: Record<string, any> | undefined;
|
|
440
375
|
disconnected?: boolean | undefined;
|
|
441
376
|
isDefunct?: boolean | undefined;
|
|
442
377
|
lastActiveAt?: string | undefined;
|
|
443
378
|
nextCredentialsRefreshAt?: string | undefined;
|
|
444
|
-
meta?: Record<string, any> | undefined;
|
|
445
379
|
}>>;
|
|
446
380
|
}, "strip", z.ZodTypeAny, {
|
|
447
381
|
status: ExternalEventLogStatus;
|
|
@@ -457,52 +391,37 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
457
391
|
updatedAt: string;
|
|
458
392
|
userId: string;
|
|
459
393
|
integrationId: string;
|
|
460
|
-
error?:
|
|
394
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
461
395
|
state?: import("..").WorkspaceElementState | undefined;
|
|
462
|
-
errors?:
|
|
463
|
-
isDeactivated?: boolean | undefined;
|
|
396
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
464
397
|
archivedAt?: string | undefined;
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
connectorParameters?: unknown;
|
|
398
|
+
isDeactivated?: boolean | undefined;
|
|
399
|
+
authOptionKey?: string | undefined;
|
|
468
400
|
isTest?: boolean | undefined;
|
|
401
|
+
meta?: Record<string, any> | undefined;
|
|
469
402
|
disconnected?: boolean | undefined;
|
|
470
403
|
isDefunct?: boolean | undefined;
|
|
471
404
|
lastActiveAt?: string | undefined;
|
|
472
405
|
nextCredentialsRefreshAt?: string | undefined;
|
|
473
|
-
meta?: Record<string, any> | undefined;
|
|
474
406
|
} | undefined;
|
|
475
|
-
error?:
|
|
407
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
476
408
|
integration?: {
|
|
477
409
|
id: string;
|
|
478
410
|
name: string;
|
|
479
|
-
baseUri: string;
|
|
480
411
|
logoUri: string;
|
|
481
412
|
key?: string | undefined;
|
|
482
413
|
uuid?: string | undefined;
|
|
483
414
|
description?: string | undefined;
|
|
484
415
|
state?: import("..").WorkspaceElementState | undefined;
|
|
485
|
-
errors?:
|
|
416
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
486
417
|
revision?: string | undefined;
|
|
487
|
-
isDeactivated?: boolean | undefined;
|
|
488
418
|
createdAt?: string | undefined;
|
|
489
419
|
updatedAt?: string | undefined;
|
|
490
420
|
archivedAt?: string | undefined;
|
|
421
|
+
isDeactivated?: boolean | undefined;
|
|
491
422
|
parameters?: any;
|
|
492
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
493
|
-
isTest?: boolean | undefined;
|
|
494
423
|
connectorId?: string | undefined;
|
|
495
424
|
connectorVersion?: string | undefined;
|
|
496
|
-
authOptions?: {
|
|
497
|
-
key: string;
|
|
498
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
499
|
-
description?: string | undefined;
|
|
500
|
-
title?: string | undefined;
|
|
501
|
-
ui?: {
|
|
502
|
-
schema?: any;
|
|
503
|
-
helpUri?: string | undefined;
|
|
504
|
-
} | undefined;
|
|
505
|
-
}[] | undefined;
|
|
506
425
|
oAuthCallbackUri?: string | undefined;
|
|
507
426
|
hasMissingParameters?: boolean | undefined;
|
|
508
427
|
hasDocumentation?: boolean | undefined;
|
|
@@ -514,6 +433,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
514
433
|
eventsCount?: number | undefined;
|
|
515
434
|
hasGlobalWebhooks?: boolean | undefined;
|
|
516
435
|
hasUdm?: boolean | undefined;
|
|
436
|
+
isTest?: boolean | undefined;
|
|
517
437
|
appUuid?: string | undefined;
|
|
518
438
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
519
439
|
} | undefined;
|
|
@@ -538,7 +458,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
538
458
|
connectionId: string;
|
|
539
459
|
integrationId: string;
|
|
540
460
|
status?: import("../base/external-event-subscriptions").ExternalEventSubscriptionStatus | undefined;
|
|
541
|
-
error?:
|
|
461
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
542
462
|
name?: string | undefined;
|
|
543
463
|
createdAt?: string | undefined;
|
|
544
464
|
archivedAt?: string | undefined;
|
|
@@ -581,52 +501,37 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
581
501
|
updatedAt: string;
|
|
582
502
|
userId: string;
|
|
583
503
|
integrationId: string;
|
|
584
|
-
error?:
|
|
504
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
585
505
|
state?: import("..").WorkspaceElementState | undefined;
|
|
586
|
-
errors?:
|
|
587
|
-
isDeactivated?: boolean | undefined;
|
|
506
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
588
507
|
archivedAt?: string | undefined;
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
connectorParameters?: unknown;
|
|
508
|
+
isDeactivated?: boolean | undefined;
|
|
509
|
+
authOptionKey?: string | undefined;
|
|
592
510
|
isTest?: boolean | undefined;
|
|
511
|
+
meta?: Record<string, any> | undefined;
|
|
593
512
|
disconnected?: boolean | undefined;
|
|
594
513
|
isDefunct?: boolean | undefined;
|
|
595
514
|
lastActiveAt?: string | undefined;
|
|
596
515
|
nextCredentialsRefreshAt?: string | undefined;
|
|
597
|
-
meta?: Record<string, any> | undefined;
|
|
598
516
|
} | undefined;
|
|
599
|
-
error?:
|
|
517
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
600
518
|
integration?: {
|
|
601
519
|
id: string;
|
|
602
520
|
name: string;
|
|
603
|
-
baseUri: string;
|
|
604
521
|
logoUri: string;
|
|
605
522
|
key?: string | undefined;
|
|
606
523
|
uuid?: string | undefined;
|
|
607
524
|
description?: string | undefined;
|
|
608
525
|
state?: import("..").WorkspaceElementState | undefined;
|
|
609
|
-
errors?:
|
|
526
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
610
527
|
revision?: string | undefined;
|
|
611
|
-
isDeactivated?: boolean | undefined;
|
|
612
528
|
createdAt?: string | undefined;
|
|
613
529
|
updatedAt?: string | undefined;
|
|
614
530
|
archivedAt?: string | undefined;
|
|
531
|
+
isDeactivated?: boolean | undefined;
|
|
615
532
|
parameters?: any;
|
|
616
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
617
|
-
isTest?: boolean | undefined;
|
|
618
533
|
connectorId?: string | undefined;
|
|
619
534
|
connectorVersion?: string | undefined;
|
|
620
|
-
authOptions?: {
|
|
621
|
-
key: string;
|
|
622
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
623
|
-
description?: string | undefined;
|
|
624
|
-
title?: string | undefined;
|
|
625
|
-
ui?: {
|
|
626
|
-
schema?: any;
|
|
627
|
-
helpUri?: string | undefined;
|
|
628
|
-
} | undefined;
|
|
629
|
-
}[] | undefined;
|
|
630
535
|
oAuthCallbackUri?: string | undefined;
|
|
631
536
|
hasMissingParameters?: boolean | undefined;
|
|
632
537
|
hasDocumentation?: boolean | undefined;
|
|
@@ -638,6 +543,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
638
543
|
eventsCount?: number | undefined;
|
|
639
544
|
hasGlobalWebhooks?: boolean | undefined;
|
|
640
545
|
hasUdm?: boolean | undefined;
|
|
546
|
+
isTest?: boolean | undefined;
|
|
641
547
|
appUuid?: string | undefined;
|
|
642
548
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
643
549
|
} | undefined;
|
|
@@ -662,7 +568,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
662
568
|
connectionId: string;
|
|
663
569
|
integrationId: string;
|
|
664
570
|
status?: import("../base/external-event-subscriptions").ExternalEventSubscriptionStatus | undefined;
|
|
665
|
-
error?:
|
|
571
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
666
572
|
name?: string | undefined;
|
|
667
573
|
createdAt?: string | undefined;
|
|
668
574
|
archivedAt?: string | undefined;
|