@membranehq/sdk 0.10.10 → 0.11.1
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 +201 -4
- package/dist/bundle.js +182 -53
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +8 -1
- package/dist/dts/accessors/integrations-accessors.d.ts +9 -1
- package/dist/dts/agent/session.d.ts +5 -0
- package/dist/dts/alerts/types.d.ts +18 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +17 -0
- package/dist/dts/stats/index.d.ts +33 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +18 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +34 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +22 -1
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +8 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +16 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +38 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +16 -3
- package/dist/dts/workspace-elements/api/packages-api.d.ts +10 -0
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +1 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/connections/types.d.ts +2 -0
- package/dist/dts/workspace-elements/base/customers/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/external-apps/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +28 -2
- package/dist/dts/workspace-elements/base/packages/index.d.ts +2 -0
- package/dist/dts/workspace-elements/filter-meta.d.ts +9 -0
- package/dist/dts/workspace-elements/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +4 -0
- package/dist/dts/workspaces/types.d.ts +276 -34
- package/dist/index.browser.d.mts +665 -41
- package/dist/index.browser.d.ts +665 -41
- package/dist/index.browser.js +202 -24
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +191 -25
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +665 -41
- package/dist/index.node.d.ts +665 -41
- package/dist/index.node.js +202 -24
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +191 -25
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.browser.d.mts
CHANGED
|
@@ -221,6 +221,7 @@ declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObje
|
|
|
221
221
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
222
222
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
223
223
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
224
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
224
225
|
}, z.core.$strip>;
|
|
225
226
|
type BaseIntegrationLevelMembraneInterfaceEditableProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceEditableProperties>;
|
|
226
227
|
declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObject<{
|
|
@@ -280,7 +281,9 @@ declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
|
280
281
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
281
282
|
parentId: z.ZodOptional<z.ZodString>;
|
|
282
283
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
284
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
283
285
|
userId: z.ZodOptional<z.ZodString>;
|
|
286
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
284
287
|
}, z.core.$strip>;
|
|
285
288
|
type FindIntegrationLevelMembraneInterfaceQuery = z.infer<typeof FindIntegrationLevelMembraneInterfaceQuery>;
|
|
286
289
|
declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
@@ -295,6 +298,7 @@ declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
|
295
298
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
296
299
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
297
300
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
301
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
298
302
|
name: z.ZodString;
|
|
299
303
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
300
304
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
@@ -396,6 +400,7 @@ declare const FieldMappingEditableProperties: z.ZodObject<{
|
|
|
396
400
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
397
401
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
398
402
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
403
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
399
404
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
400
405
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
401
406
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -442,6 +447,7 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
442
447
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
443
448
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
444
449
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
450
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
445
451
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
446
452
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
447
453
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -526,6 +532,7 @@ declare const ActionEditableProperties: z.ZodObject<{
|
|
|
526
532
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
527
533
|
parentId: z.ZodOptional<z.ZodString>;
|
|
528
534
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
535
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
529
536
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
530
537
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
531
538
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -562,6 +569,7 @@ declare const BaseAction: z.ZodObject<{
|
|
|
562
569
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
563
570
|
parentId: z.ZodOptional<z.ZodString>;
|
|
564
571
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
572
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
565
573
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
566
574
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
567
575
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -593,6 +601,7 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
593
601
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
594
602
|
parentId: z.ZodOptional<z.ZodString>;
|
|
595
603
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
604
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
596
605
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
597
606
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
598
607
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -4836,6 +4845,8 @@ declare const BaseConnection: z.ZodObject<{
|
|
|
4836
4845
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4837
4846
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4838
4847
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4848
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
4849
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
4839
4850
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4840
4851
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4841
4852
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -7703,6 +7714,7 @@ declare const DataSourceEditableProperties: z.ZodObject<{
|
|
|
7703
7714
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7704
7715
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
7705
7716
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
7717
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
7706
7718
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
7707
7719
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
7708
7720
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -7723,6 +7735,7 @@ declare const BackwardCompatibleDataSourceEditableProperties: z.ZodObject<{
|
|
|
7723
7735
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7724
7736
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
7725
7737
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
7738
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
7726
7739
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
7727
7740
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
7728
7741
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -7763,6 +7776,7 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
7763
7776
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7764
7777
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
7765
7778
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
7779
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
7766
7780
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
7767
7781
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
7768
7782
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -8254,6 +8268,7 @@ declare const FlowEditableProperties: z.ZodObject<{
|
|
|
8254
8268
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8255
8269
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8256
8270
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8271
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
8257
8272
|
flowId: z.ZodOptional<z.ZodString>;
|
|
8258
8273
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
8259
8274
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -8332,6 +8347,7 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
8332
8347
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8333
8348
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8334
8349
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8350
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
8335
8351
|
flowId: z.ZodOptional<z.ZodString>;
|
|
8336
8352
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
8337
8353
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -8373,6 +8389,16 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
8373
8389
|
}, z.core.$strip>;
|
|
8374
8390
|
type BaseFlow = z.infer<typeof BaseFlow>;
|
|
8375
8391
|
|
|
8392
|
+
declare const IntegrationOptionConfig: z.ZodObject<{
|
|
8393
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
8394
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8395
|
+
}, z.core.$strip>;
|
|
8396
|
+
type IntegrationOptionConfig = z.infer<typeof IntegrationOptionConfig>;
|
|
8397
|
+
declare const IntegrationOptions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8398
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
8399
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8400
|
+
}, z.core.$strip>>;
|
|
8401
|
+
type IntegrationOptions = z.infer<typeof IntegrationOptions>;
|
|
8376
8402
|
declare const BaseIntegration: z.ZodObject<{
|
|
8377
8403
|
id: z.ZodString;
|
|
8378
8404
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -8412,6 +8438,10 @@ declare const BaseIntegration: z.ZodObject<{
|
|
|
8412
8438
|
oauth1: "oauth1";
|
|
8413
8439
|
"client-credentials": "client-credentials";
|
|
8414
8440
|
}>>;
|
|
8441
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8442
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
8443
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8444
|
+
}, z.core.$strip>>>;
|
|
8415
8445
|
}, z.core.$strip>;
|
|
8416
8446
|
type BaseIntegration = z.infer<typeof BaseIntegration>;
|
|
8417
8447
|
declare const IntegrationEditableProperties: z.ZodObject<{
|
|
@@ -8420,7 +8450,6 @@ declare const IntegrationEditableProperties: z.ZodObject<{
|
|
|
8420
8450
|
name: z.ZodOptional<z.ZodString>;
|
|
8421
8451
|
description: z.ZodOptional<z.ZodString>;
|
|
8422
8452
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8423
|
-
baseUri: z.ZodOptional<z.ZodString>;
|
|
8424
8453
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
8425
8454
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
8426
8455
|
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
@@ -8428,6 +8457,11 @@ declare const IntegrationEditableProperties: z.ZodObject<{
|
|
|
8428
8457
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8429
8458
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
8430
8459
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
8460
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8461
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8462
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
8463
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8464
|
+
}, z.core.$strip>>>;
|
|
8431
8465
|
}, z.core.$strip>;
|
|
8432
8466
|
type IntegrationEditableProperties = z.infer<typeof IntegrationEditableProperties>;
|
|
8433
8467
|
declare const IntegrationExportProperties: z.ZodObject<{
|
|
@@ -8436,13 +8470,17 @@ declare const IntegrationExportProperties: z.ZodObject<{
|
|
|
8436
8470
|
name: z.ZodOptional<z.ZodString>;
|
|
8437
8471
|
description: z.ZodOptional<z.ZodString>;
|
|
8438
8472
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8439
|
-
baseUri: z.ZodOptional<z.ZodString>;
|
|
8440
8473
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
8441
8474
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
8442
8475
|
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
8443
8476
|
logoBase64: z.ZodOptional<z.ZodString>;
|
|
8444
8477
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8445
8478
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
8479
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8480
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8481
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
8482
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8483
|
+
}, z.core.$strip>>>;
|
|
8446
8484
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
8447
8485
|
}, z.core.$strip>;
|
|
8448
8486
|
type IntegrationExportProperties = z.infer<typeof IntegrationExportProperties>;
|
|
@@ -8490,6 +8528,10 @@ declare const AppliedToIntegrations: <Element extends z.ZodType>(elementSchema:
|
|
|
8490
8528
|
oauth1: "oauth1";
|
|
8491
8529
|
"client-credentials": "client-credentials";
|
|
8492
8530
|
}>>;
|
|
8531
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8532
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
8533
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8534
|
+
}, z.core.$strip>>>;
|
|
8493
8535
|
}, z.core.$strip>;
|
|
8494
8536
|
}, z.core.$strip>>;
|
|
8495
8537
|
type AppliedToIntegrations<Element> = z.infer<ReturnType<typeof AppliedToIntegrations<z.ZodType<Element>>>>;
|
|
@@ -8520,6 +8562,7 @@ declare const PackageEditableProperties: z.ZodObject<{
|
|
|
8520
8562
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8521
8563
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
8522
8564
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8565
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
8523
8566
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
8524
8567
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
8525
8568
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -8570,6 +8613,7 @@ declare const BasePackage: z.ZodObject<{
|
|
|
8570
8613
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8571
8614
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
8572
8615
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8616
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
8573
8617
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
8574
8618
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
8575
8619
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -8644,6 +8688,7 @@ declare const BaseCustomer: z.ZodObject<{
|
|
|
8644
8688
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8645
8689
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8646
8690
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8691
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
8647
8692
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8648
8693
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8649
8694
|
}, z.core.$strip>;
|
|
@@ -9283,6 +9328,8 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
9283
9328
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
9284
9329
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
9285
9330
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
9331
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
9332
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
9286
9333
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9287
9334
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9288
9335
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -9296,6 +9343,7 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
9296
9343
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
9297
9344
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
9298
9345
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
9346
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
9299
9347
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9300
9348
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9301
9349
|
}, z.core.$strip>>;
|
|
@@ -9338,6 +9386,10 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
9338
9386
|
oauth1: "oauth1";
|
|
9339
9387
|
"client-credentials": "client-credentials";
|
|
9340
9388
|
}>>;
|
|
9389
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9390
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
9391
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9392
|
+
}, z.core.$strip>>>;
|
|
9341
9393
|
}, z.core.$strip>>;
|
|
9342
9394
|
}, z.core.$strip>;
|
|
9343
9395
|
type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
@@ -9360,6 +9412,8 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
9360
9412
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
9361
9413
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
9362
9414
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
9415
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
9416
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
9363
9417
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9364
9418
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9365
9419
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -9373,6 +9427,7 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
9373
9427
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
9374
9428
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
9375
9429
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
9430
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
9376
9431
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9377
9432
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9378
9433
|
}, z.core.$strip>>;
|
|
@@ -9415,9 +9470,13 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
9415
9470
|
oauth1: "oauth1";
|
|
9416
9471
|
"client-credentials": "client-credentials";
|
|
9417
9472
|
}>>;
|
|
9473
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9474
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
9475
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9476
|
+
}, z.core.$strip>>>;
|
|
9418
9477
|
}, z.core.$strip>>;
|
|
9419
9478
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
9420
|
-
|
|
9479
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
9421
9480
|
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
9422
9481
|
}, z.core.$strip>;
|
|
9423
9482
|
type ConnectionApiResponseWithSecrets = z.infer<typeof ConnectionApiResponseWithSecrets>;
|
|
@@ -9445,6 +9504,8 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9445
9504
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
9446
9505
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
9447
9506
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
9507
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
9508
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
9448
9509
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9449
9510
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9450
9511
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -9458,6 +9519,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9458
9519
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
9459
9520
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
9460
9521
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
9522
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
9461
9523
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9462
9524
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9463
9525
|
}, z.core.$strip>>;
|
|
@@ -9500,6 +9562,10 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
9500
9562
|
oauth1: "oauth1";
|
|
9501
9563
|
"client-credentials": "client-credentials";
|
|
9502
9564
|
}>>;
|
|
9565
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9566
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
9567
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9568
|
+
}, z.core.$strip>>>;
|
|
9503
9569
|
}, z.core.$strip>>;
|
|
9504
9570
|
}, z.core.$strip>;
|
|
9505
9571
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9896,6 +9962,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
9896
9962
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
9897
9963
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
9898
9964
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
9965
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
9899
9966
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
9900
9967
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9901
9968
|
}, z.core.$strip>>;
|
|
@@ -9909,6 +9976,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
9909
9976
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9910
9977
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9911
9978
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
9979
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
9912
9980
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
9913
9981
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
9914
9982
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -9947,6 +10015,8 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
9947
10015
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
9948
10016
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
9949
10017
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
10018
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
10019
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
9950
10020
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9951
10021
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9952
10022
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -9990,6 +10060,10 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
9990
10060
|
oauth1: "oauth1";
|
|
9991
10061
|
"client-credentials": "client-credentials";
|
|
9992
10062
|
}>>;
|
|
10063
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10064
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
10065
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10066
|
+
}, z.core.$strip>>>;
|
|
9993
10067
|
}, z.core.$strip>>;
|
|
9994
10068
|
path: z.ZodOptional<z.ZodString>;
|
|
9995
10069
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
@@ -10096,6 +10170,8 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
10096
10170
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
10097
10171
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
10098
10172
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
10173
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
10174
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
10099
10175
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10100
10176
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
10101
10177
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -10139,6 +10215,10 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
10139
10215
|
oauth1: "oauth1";
|
|
10140
10216
|
"client-credentials": "client-credentials";
|
|
10141
10217
|
}>>;
|
|
10218
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10219
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
10220
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10221
|
+
}, z.core.$strip>>>;
|
|
10142
10222
|
}, z.core.$strip>>;
|
|
10143
10223
|
user: z.ZodOptional<z.ZodObject<{
|
|
10144
10224
|
id: z.ZodString;
|
|
@@ -10150,6 +10230,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
10150
10230
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
10151
10231
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
10152
10232
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
10233
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10153
10234
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10154
10235
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10155
10236
|
}, z.core.$strip>>;
|
|
@@ -10229,6 +10310,8 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
10229
10310
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
10230
10311
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
10231
10312
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
10313
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
10314
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
10232
10315
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10233
10316
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
10234
10317
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -10272,6 +10355,10 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
10272
10355
|
oauth1: "oauth1";
|
|
10273
10356
|
"client-credentials": "client-credentials";
|
|
10274
10357
|
}>>;
|
|
10358
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10359
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
10360
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10361
|
+
}, z.core.$strip>>>;
|
|
10275
10362
|
}, z.core.$strip>>;
|
|
10276
10363
|
user: z.ZodOptional<z.ZodObject<{
|
|
10277
10364
|
id: z.ZodString;
|
|
@@ -10283,6 +10370,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
10283
10370
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
10284
10371
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
10285
10372
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
10373
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
10286
10374
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
10287
10375
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10288
10376
|
}, z.core.$strip>>;
|
|
@@ -10303,6 +10391,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
10303
10391
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10304
10392
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10305
10393
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10394
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10306
10395
|
flowId: z.ZodOptional<z.ZodString>;
|
|
10307
10396
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
10308
10397
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -10380,6 +10469,10 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
10380
10469
|
oauth1: "oauth1";
|
|
10381
10470
|
"client-credentials": "client-credentials";
|
|
10382
10471
|
}>>;
|
|
10472
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10473
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
10474
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10475
|
+
}, z.core.$strip>>>;
|
|
10383
10476
|
}, z.core.$strip>>;
|
|
10384
10477
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10385
10478
|
element: z.ZodObject<{
|
|
@@ -10393,6 +10486,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
10393
10486
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10394
10487
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10395
10488
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10489
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10396
10490
|
flowId: z.ZodOptional<z.ZodString>;
|
|
10397
10491
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
10398
10492
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -10471,6 +10565,10 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
10471
10565
|
oauth1: "oauth1";
|
|
10472
10566
|
"client-credentials": "client-credentials";
|
|
10473
10567
|
}>>;
|
|
10568
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10569
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
10570
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10571
|
+
}, z.core.$strip>>>;
|
|
10474
10572
|
}, z.core.$strip>;
|
|
10475
10573
|
}, z.core.$strip>>>;
|
|
10476
10574
|
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
@@ -10487,12 +10585,14 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
10487
10585
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10488
10586
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
10489
10587
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
10588
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10490
10589
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
10491
10590
|
connection: "connection";
|
|
10492
10591
|
integration: "integration";
|
|
10493
10592
|
universal: "universal";
|
|
10494
10593
|
}>>;
|
|
10495
10594
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
10595
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
10496
10596
|
flowId: z.ZodOptional<z.ZodString>;
|
|
10497
10597
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
10498
10598
|
}, z.core.$strip>;
|
|
@@ -10508,6 +10608,7 @@ declare const CreateFlowRequest: z.ZodObject<{
|
|
|
10508
10608
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10509
10609
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10510
10610
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10611
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10511
10612
|
flowId: z.ZodOptional<z.ZodString>;
|
|
10512
10613
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
10513
10614
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -10549,6 +10650,7 @@ declare const UpdateFlowRequest: z.ZodObject<{
|
|
|
10549
10650
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
10550
10651
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10551
10652
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10653
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10552
10654
|
flowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10553
10655
|
universalFlowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10554
10656
|
parametersSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -10671,6 +10773,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10671
10773
|
lastActiveAt?: string | undefined;
|
|
10672
10774
|
isTest?: boolean | undefined;
|
|
10673
10775
|
isBillable?: boolean | undefined;
|
|
10776
|
+
isActive?: boolean | undefined;
|
|
10674
10777
|
createdAt?: string | undefined;
|
|
10675
10778
|
archivedAt?: string | undefined;
|
|
10676
10779
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
@@ -10683,6 +10786,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10683
10786
|
lastActiveAt?: string | undefined;
|
|
10684
10787
|
isTest?: boolean | undefined;
|
|
10685
10788
|
isBillable?: boolean | undefined;
|
|
10789
|
+
isActive?: boolean | undefined;
|
|
10686
10790
|
createdAt?: string | undefined;
|
|
10687
10791
|
archivedAt?: string | undefined;
|
|
10688
10792
|
}, unknown>>>>;
|
|
@@ -10705,6 +10809,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10705
10809
|
nextCredentialsRefreshAt?: string | undefined;
|
|
10706
10810
|
nextRetryTimestamp?: string | undefined;
|
|
10707
10811
|
retryAttempts?: number | undefined;
|
|
10812
|
+
canTest?: boolean | undefined;
|
|
10813
|
+
canRefreshCredentials?: boolean | undefined;
|
|
10708
10814
|
archivedAt?: string | undefined;
|
|
10709
10815
|
isDeactivated?: boolean | undefined;
|
|
10710
10816
|
meta?: Record<string, any> | undefined;
|
|
@@ -10727,6 +10833,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10727
10833
|
nextCredentialsRefreshAt?: string | undefined;
|
|
10728
10834
|
nextRetryTimestamp?: string | undefined;
|
|
10729
10835
|
retryAttempts?: number | undefined;
|
|
10836
|
+
canTest?: boolean | undefined;
|
|
10837
|
+
canRefreshCredentials?: boolean | undefined;
|
|
10730
10838
|
archivedAt?: string | undefined;
|
|
10731
10839
|
isDeactivated?: boolean | undefined;
|
|
10732
10840
|
meta?: Record<string, any> | undefined;
|
|
@@ -10742,6 +10850,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10742
10850
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10743
10851
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10744
10852
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10853
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10745
10854
|
flowId: z.ZodOptional<z.ZodString>;
|
|
10746
10855
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
10747
10856
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -10819,6 +10928,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10819
10928
|
oauth1: "oauth1";
|
|
10820
10929
|
"client-credentials": "client-credentials";
|
|
10821
10930
|
}>>;
|
|
10931
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10932
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
10933
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10934
|
+
}, z.core.$strip>>>;
|
|
10822
10935
|
}, z.core.$strip>>;
|
|
10823
10936
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10824
10937
|
element: z.ZodObject<{
|
|
@@ -10832,6 +10945,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10832
10945
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10833
10946
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10834
10947
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10948
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10835
10949
|
flowId: z.ZodOptional<z.ZodString>;
|
|
10836
10950
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
10837
10951
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -10910,6 +11024,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10910
11024
|
oauth1: "oauth1";
|
|
10911
11025
|
"client-credentials": "client-credentials";
|
|
10912
11026
|
}>>;
|
|
11027
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11028
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11029
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11030
|
+
}, z.core.$strip>>>;
|
|
10913
11031
|
}, z.core.$strip>;
|
|
10914
11032
|
}, z.core.$strip>>>;
|
|
10915
11033
|
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
@@ -10946,6 +11064,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10946
11064
|
appUuid?: string | undefined;
|
|
10947
11065
|
isDeactivated?: boolean | undefined;
|
|
10948
11066
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
11067
|
+
optionsConfig?: Record<string, {
|
|
11068
|
+
disabled?: boolean | undefined;
|
|
11069
|
+
parameters?: Record<string, any> | undefined;
|
|
11070
|
+
}> | undefined;
|
|
10949
11071
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
10950
11072
|
id: string;
|
|
10951
11073
|
name: string;
|
|
@@ -10978,6 +11100,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
10978
11100
|
appUuid?: string | undefined;
|
|
10979
11101
|
isDeactivated?: boolean | undefined;
|
|
10980
11102
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
11103
|
+
optionsConfig?: Record<string, {
|
|
11104
|
+
disabled?: boolean | undefined;
|
|
11105
|
+
parameters?: Record<string, any> | undefined;
|
|
11106
|
+
}> | undefined;
|
|
10981
11107
|
}, unknown>>>>;
|
|
10982
11108
|
}, z.core.$strip>;
|
|
10983
11109
|
type FlowInstanceApiResponse = z.infer<typeof FlowInstanceApiResponse>;
|
|
@@ -11009,6 +11135,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
11009
11135
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11010
11136
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11011
11137
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11138
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11012
11139
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11013
11140
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
11014
11141
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -11066,6 +11193,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
11066
11193
|
oauth1: "oauth1";
|
|
11067
11194
|
"client-credentials": "client-credentials";
|
|
11068
11195
|
}>>;
|
|
11196
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11197
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11198
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11199
|
+
}, z.core.$strip>>>;
|
|
11069
11200
|
}, z.core.$strip>>;
|
|
11070
11201
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11071
11202
|
element: z.ZodObject<{
|
|
@@ -11078,6 +11209,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
11078
11209
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11079
11210
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11080
11211
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11212
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11081
11213
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11082
11214
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
11083
11215
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -11136,6 +11268,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
11136
11268
|
oauth1: "oauth1";
|
|
11137
11269
|
"client-credentials": "client-credentials";
|
|
11138
11270
|
}>>;
|
|
11271
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11272
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11273
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11274
|
+
}, z.core.$strip>>>;
|
|
11139
11275
|
}, z.core.$strip>;
|
|
11140
11276
|
}, z.core.$strip>>>;
|
|
11141
11277
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
@@ -11152,12 +11288,14 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
11152
11288
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11153
11289
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11154
11290
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
11291
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11155
11292
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
11156
11293
|
connection: "connection";
|
|
11157
11294
|
integration: "integration";
|
|
11158
11295
|
universal: "universal";
|
|
11159
11296
|
}>>;
|
|
11160
11297
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
11298
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
11161
11299
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
11162
11300
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
11163
11301
|
}, z.core.$strip>;
|
|
@@ -11172,6 +11310,7 @@ declare const CreateDataSourceRequest: z.ZodObject<{
|
|
|
11172
11310
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11173
11311
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11174
11312
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11313
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11175
11314
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11176
11315
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
11177
11316
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -11192,6 +11331,7 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
|
|
|
11192
11331
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11193
11332
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11194
11333
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11334
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11195
11335
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11196
11336
|
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11197
11337
|
universalDataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -11402,6 +11542,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11402
11542
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
11403
11543
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11404
11544
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
11545
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
11405
11546
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11406
11547
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11407
11548
|
}, z.core.$strip>>;
|
|
@@ -11424,6 +11565,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11424
11565
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
11425
11566
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
11426
11567
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
11568
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
11569
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
11427
11570
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11428
11571
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11429
11572
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -11467,6 +11610,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11467
11610
|
oauth1: "oauth1";
|
|
11468
11611
|
"client-credentials": "client-credentials";
|
|
11469
11612
|
}>>;
|
|
11613
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11614
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11615
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11616
|
+
}, z.core.$strip>>>;
|
|
11470
11617
|
}, z.core.$strip>>;
|
|
11471
11618
|
fieldMapping: z.ZodOptional<z.ZodObject<{
|
|
11472
11619
|
id: z.ZodString;
|
|
@@ -11478,6 +11625,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11478
11625
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11479
11626
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11480
11627
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11628
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11481
11629
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11482
11630
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
11483
11631
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -11651,6 +11799,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11651
11799
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
11652
11800
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11653
11801
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
11802
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
11654
11803
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11655
11804
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11656
11805
|
}, z.core.$strip>>;
|
|
@@ -11664,6 +11813,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11664
11813
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11665
11814
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11666
11815
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11816
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11667
11817
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11668
11818
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
11669
11819
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -11702,6 +11852,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11702
11852
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
11703
11853
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
11704
11854
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
11855
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
11856
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
11705
11857
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11706
11858
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11707
11859
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -11745,6 +11897,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11745
11897
|
oauth1: "oauth1";
|
|
11746
11898
|
"client-credentials": "client-credentials";
|
|
11747
11899
|
}>>;
|
|
11900
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11901
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11902
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11903
|
+
}, z.core.$strip>>>;
|
|
11748
11904
|
}, z.core.$strip>>;
|
|
11749
11905
|
path: z.ZodOptional<z.ZodString>;
|
|
11750
11906
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
@@ -11876,6 +12032,8 @@ declare class ConnectionAccessor {
|
|
|
11876
12032
|
nextCredentialsRefreshAt?: string | undefined;
|
|
11877
12033
|
nextRetryTimestamp?: string | undefined;
|
|
11878
12034
|
retryAttempts?: number | undefined;
|
|
12035
|
+
canTest?: boolean | undefined;
|
|
12036
|
+
canRefreshCredentials?: boolean | undefined;
|
|
11879
12037
|
archivedAt?: string | undefined;
|
|
11880
12038
|
isDeactivated?: boolean | undefined;
|
|
11881
12039
|
meta?: Record<string, any> | undefined;
|
|
@@ -11889,6 +12047,7 @@ declare class ConnectionAccessor {
|
|
|
11889
12047
|
lastActiveAt?: string | undefined;
|
|
11890
12048
|
isTest?: boolean | undefined;
|
|
11891
12049
|
isBillable?: boolean | undefined;
|
|
12050
|
+
isActive?: boolean | undefined;
|
|
11892
12051
|
createdAt?: string | undefined;
|
|
11893
12052
|
archivedAt?: string | undefined;
|
|
11894
12053
|
} | undefined;
|
|
@@ -11924,6 +12083,10 @@ declare class ConnectionAccessor {
|
|
|
11924
12083
|
appUuid?: string | undefined;
|
|
11925
12084
|
isDeactivated?: boolean | undefined;
|
|
11926
12085
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
12086
|
+
optionsConfig?: Record<string, {
|
|
12087
|
+
disabled?: boolean | undefined;
|
|
12088
|
+
parameters?: Record<string, any> | undefined;
|
|
12089
|
+
}> | undefined;
|
|
11927
12090
|
} | undefined;
|
|
11928
12091
|
} | null>;
|
|
11929
12092
|
openReconnectUI({}?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
@@ -11966,7 +12129,7 @@ declare class ConnectionProxy {
|
|
|
11966
12129
|
declare function createOrUpdateConnection(options?: {
|
|
11967
12130
|
authOptionKey?: string;
|
|
11968
12131
|
name?: string;
|
|
11969
|
-
|
|
12132
|
+
input?: any;
|
|
11970
12133
|
connectorParameters?: any;
|
|
11971
12134
|
integrationId?: string;
|
|
11972
12135
|
connectorId?: string;
|
|
@@ -12040,6 +12203,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
12040
12203
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12041
12204
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12042
12205
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12206
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12043
12207
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12044
12208
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
12045
12209
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -12102,6 +12266,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
12102
12266
|
oauth1: "oauth1";
|
|
12103
12267
|
"client-credentials": "client-credentials";
|
|
12104
12268
|
}>>;
|
|
12269
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12270
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
12271
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12272
|
+
}, z.core.$strip>>>;
|
|
12105
12273
|
}, z.core.$strip>>;
|
|
12106
12274
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12107
12275
|
element: z.ZodObject<{
|
|
@@ -12114,6 +12282,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
12114
12282
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12115
12283
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12116
12284
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12285
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12117
12286
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12118
12287
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
12119
12288
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -12177,6 +12346,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
12177
12346
|
oauth1: "oauth1";
|
|
12178
12347
|
"client-credentials": "client-credentials";
|
|
12179
12348
|
}>>;
|
|
12349
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12350
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
12351
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12352
|
+
}, z.core.$strip>>>;
|
|
12180
12353
|
}, z.core.$strip>;
|
|
12181
12354
|
}, z.core.$strip>>>;
|
|
12182
12355
|
}, z.core.$strip>;
|
|
@@ -12192,12 +12365,14 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
12192
12365
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12193
12366
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12194
12367
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
12368
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12195
12369
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
12196
12370
|
connection: "connection";
|
|
12197
12371
|
integration: "integration";
|
|
12198
12372
|
universal: "universal";
|
|
12199
12373
|
}>>;
|
|
12200
12374
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
12375
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
12201
12376
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
12202
12377
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
12203
12378
|
}, z.core.$strip>;
|
|
@@ -12212,6 +12387,7 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
|
12212
12387
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12213
12388
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12214
12389
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12390
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12215
12391
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12216
12392
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
12217
12393
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -12237,6 +12413,7 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
|
|
|
12237
12413
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
12238
12414
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12239
12415
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12416
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12240
12417
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12241
12418
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12242
12419
|
universalFieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -12284,7 +12461,6 @@ declare const CreateIntegrationRequest: z.ZodObject<{
|
|
|
12284
12461
|
name: z.ZodOptional<z.ZodString>;
|
|
12285
12462
|
description: z.ZodOptional<z.ZodString>;
|
|
12286
12463
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12287
|
-
baseUri: z.ZodOptional<z.ZodString>;
|
|
12288
12464
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
12289
12465
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
12290
12466
|
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
@@ -12292,6 +12468,11 @@ declare const CreateIntegrationRequest: z.ZodObject<{
|
|
|
12292
12468
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
12293
12469
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12294
12470
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12471
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12472
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12473
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
12474
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12475
|
+
}, z.core.$strip>>>;
|
|
12295
12476
|
}, z.core.$strip>;
|
|
12296
12477
|
type CreateIntegrationRequest = z.infer<typeof CreateIntegrationRequest>;
|
|
12297
12478
|
declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
@@ -12300,7 +12481,6 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
12300
12481
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12301
12482
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12302
12483
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
12303
|
-
baseUri: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12304
12484
|
logoUri: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12305
12485
|
appUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12306
12486
|
oAuthCallbackUri: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>>;
|
|
@@ -12308,6 +12488,11 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
12308
12488
|
connectorVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12309
12489
|
connectorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12310
12490
|
connectorUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12491
|
+
parameters: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
12492
|
+
optionsConfig: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12493
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
12494
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12495
|
+
}, z.core.$strip>>>>;
|
|
12311
12496
|
}, z.core.$strip>;
|
|
12312
12497
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
12313
12498
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
@@ -12386,6 +12571,10 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
12386
12571
|
oauth1: "oauth1";
|
|
12387
12572
|
"client-credentials": "client-credentials";
|
|
12388
12573
|
}>>;
|
|
12574
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12575
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
12576
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12577
|
+
}, z.core.$strip>>>;
|
|
12389
12578
|
connection: z.ZodOptional<z.ZodObject<{
|
|
12390
12579
|
id: z.ZodString;
|
|
12391
12580
|
name: z.ZodString;
|
|
@@ -12405,6 +12594,8 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
12405
12594
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
12406
12595
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
12407
12596
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
12597
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
12598
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
12408
12599
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12409
12600
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12410
12601
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -12428,7 +12619,6 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
12428
12619
|
helpUri: z.ZodOptional<z.ZodString>;
|
|
12429
12620
|
}, z.core.$strip>>;
|
|
12430
12621
|
}, z.core.$strip>>>;
|
|
12431
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
12432
12622
|
}, z.core.$strip>;
|
|
12433
12623
|
type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
12434
12624
|
type Integration = IntegrationApiResponse;
|
|
@@ -12455,8 +12645,9 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
12455
12645
|
getConnectorSpec(): Promise<ConnectionSpec>;
|
|
12456
12646
|
open({ onClose }?: OpenIntegrationUIIntegrationConfigurationOptions): Promise<void>;
|
|
12457
12647
|
openNewConnection({ allowMultipleConnections, name, connectorParameters, }?: OpenNewConnectionOptions): Promise<ConnectionApiResponse | null>;
|
|
12458
|
-
connect({ name, parameters, connectorParameters, authOptionKey, allowMultipleConnections, redirectUri, sameWindow, onPopupClosed, }?: {
|
|
12648
|
+
connect({ name, input, parameters, connectorParameters, authOptionKey, allowMultipleConnections, redirectUri, sameWindow, onPopupClosed, }?: {
|
|
12459
12649
|
name?: string;
|
|
12650
|
+
input?: any;
|
|
12460
12651
|
parameters?: any;
|
|
12461
12652
|
connectorParameters?: any;
|
|
12462
12653
|
authOptionKey?: string;
|
|
@@ -12487,6 +12678,8 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
12487
12678
|
nextCredentialsRefreshAt?: string | undefined;
|
|
12488
12679
|
nextRetryTimestamp?: string | undefined;
|
|
12489
12680
|
retryAttempts?: number | undefined;
|
|
12681
|
+
canTest?: boolean | undefined;
|
|
12682
|
+
canRefreshCredentials?: boolean | undefined;
|
|
12490
12683
|
archivedAt?: string | undefined;
|
|
12491
12684
|
isDeactivated?: boolean | undefined;
|
|
12492
12685
|
meta?: Record<string, any> | undefined;
|
|
@@ -12500,6 +12693,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
12500
12693
|
lastActiveAt?: string | undefined;
|
|
12501
12694
|
isTest?: boolean | undefined;
|
|
12502
12695
|
isBillable?: boolean | undefined;
|
|
12696
|
+
isActive?: boolean | undefined;
|
|
12503
12697
|
createdAt?: string | undefined;
|
|
12504
12698
|
archivedAt?: string | undefined;
|
|
12505
12699
|
} | undefined;
|
|
@@ -12535,6 +12729,10 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
12535
12729
|
appUuid?: string | undefined;
|
|
12536
12730
|
isDeactivated?: boolean | undefined;
|
|
12537
12731
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
12732
|
+
optionsConfig?: Record<string, {
|
|
12733
|
+
disabled?: boolean | undefined;
|
|
12734
|
+
parameters?: Record<string, any> | undefined;
|
|
12735
|
+
}> | undefined;
|
|
12538
12736
|
} | undefined;
|
|
12539
12737
|
} | null>;
|
|
12540
12738
|
createConnection({ parameters, name, }: {
|
|
@@ -12569,7 +12767,9 @@ declare const FindPackagesQuery: z.ZodObject<{
|
|
|
12569
12767
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12570
12768
|
parentId: z.ZodOptional<z.ZodString>;
|
|
12571
12769
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
12770
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
12572
12771
|
userId: z.ZodOptional<z.ZodString>;
|
|
12772
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12573
12773
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12574
12774
|
}, z.core.$strip>;
|
|
12575
12775
|
type FindPackagesQuery = z.infer<typeof FindPackagesQuery>;
|
|
@@ -12585,6 +12785,7 @@ declare const CreatePackageRequest: z.ZodObject<{
|
|
|
12585
12785
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12586
12786
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12587
12787
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12788
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12588
12789
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12589
12790
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12590
12791
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -12606,6 +12807,7 @@ declare const UpdatePackageRequest: z.ZodObject<{
|
|
|
12606
12807
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12607
12808
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12608
12809
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12810
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
12609
12811
|
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12610
12812
|
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12611
12813
|
elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -12633,6 +12835,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12633
12835
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12634
12836
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12635
12837
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12838
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12636
12839
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12637
12840
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12638
12841
|
key: z.ZodString;
|
|
@@ -12666,6 +12869,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12666
12869
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12667
12870
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12668
12871
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12872
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12669
12873
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12670
12874
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12671
12875
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -12717,6 +12921,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12717
12921
|
oauth1: "oauth1";
|
|
12718
12922
|
"client-credentials": "client-credentials";
|
|
12719
12923
|
}>>;
|
|
12924
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12925
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
12926
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12927
|
+
}, z.core.$strip>>>;
|
|
12720
12928
|
}, z.core.$strip>;
|
|
12721
12929
|
}, z.core.$strip>>>;
|
|
12722
12930
|
}, z.core.$strip>;
|
|
@@ -12822,6 +13030,7 @@ declare const CustomerApiResponse: z.ZodObject<{
|
|
|
12822
13030
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
12823
13031
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12824
13032
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13033
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
12825
13034
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12826
13035
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12827
13036
|
}, z.core.$strip>;
|
|
@@ -13003,6 +13212,8 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
13003
13212
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
13004
13213
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
13005
13214
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
13215
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
13216
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
13006
13217
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13007
13218
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13008
13219
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -13046,6 +13257,10 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
13046
13257
|
oauth1: "oauth1";
|
|
13047
13258
|
"client-credentials": "client-credentials";
|
|
13048
13259
|
}>>;
|
|
13260
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13261
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
13262
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13263
|
+
}, z.core.$strip>>>;
|
|
13049
13264
|
}, z.core.$strip>>;
|
|
13050
13265
|
user: z.ZodOptional<z.ZodObject<{
|
|
13051
13266
|
id: z.ZodString;
|
|
@@ -13057,6 +13272,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
13057
13272
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13058
13273
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13059
13274
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13275
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
13060
13276
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13061
13277
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13062
13278
|
}, z.core.$strip>>;
|
|
@@ -13173,6 +13389,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
13173
13389
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13174
13390
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13175
13391
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13392
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
13176
13393
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13177
13394
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13178
13395
|
}, z.core.$strip>>;
|
|
@@ -13243,6 +13460,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
13243
13460
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13244
13461
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13245
13462
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13463
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
13246
13464
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13247
13465
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13248
13466
|
}, z.core.$strip>>;
|
|
@@ -13332,6 +13550,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
13332
13550
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13333
13551
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13334
13552
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13553
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
13335
13554
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13336
13555
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13337
13556
|
}, z.core.$strip>>;
|
|
@@ -13354,6 +13573,8 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
13354
13573
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
13355
13574
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
13356
13575
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
13576
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
13577
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
13357
13578
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13358
13579
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13359
13580
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -13397,6 +13618,10 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
13397
13618
|
oauth1: "oauth1";
|
|
13398
13619
|
"client-credentials": "client-credentials";
|
|
13399
13620
|
}>>;
|
|
13621
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13622
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
13623
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13624
|
+
}, z.core.$strip>>>;
|
|
13400
13625
|
}, z.core.$strip>>;
|
|
13401
13626
|
}, z.core.$strip>;
|
|
13402
13627
|
type ExternalEventSubscriptionApiResponse = z.infer<typeof ExternalEventSubscriptionApiResponse>;
|
|
@@ -13532,6 +13757,10 @@ declare const ExternalEvent: z.ZodObject<{
|
|
|
13532
13757
|
oauth1: "oauth1";
|
|
13533
13758
|
"client-credentials": "client-credentials";
|
|
13534
13759
|
}>>;
|
|
13760
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13761
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
13762
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13763
|
+
}, z.core.$strip>>>;
|
|
13535
13764
|
}, z.core.$strip>;
|
|
13536
13765
|
}, z.core.$strip>>>;
|
|
13537
13766
|
}, z.core.$strip>;
|
|
@@ -13564,6 +13793,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
13564
13793
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13565
13794
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13566
13795
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13796
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13567
13797
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13568
13798
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13569
13799
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13621,6 +13851,10 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
13621
13851
|
oauth1: "oauth1";
|
|
13622
13852
|
"client-credentials": "client-credentials";
|
|
13623
13853
|
}>>;
|
|
13854
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13855
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
13856
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13857
|
+
}, z.core.$strip>>>;
|
|
13624
13858
|
}, z.core.$strip>>;
|
|
13625
13859
|
user: z.ZodOptional<z.ZodObject<{
|
|
13626
13860
|
id: z.ZodString;
|
|
@@ -13632,6 +13866,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
13632
13866
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13633
13867
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13634
13868
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13869
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
13635
13870
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13636
13871
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13637
13872
|
}, z.core.$strip>>;
|
|
@@ -13645,6 +13880,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
13645
13880
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13646
13881
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13647
13882
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13883
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13648
13884
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13649
13885
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13650
13886
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13676,6 +13912,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
13676
13912
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13677
13913
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13678
13914
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13915
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13679
13916
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13680
13917
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13681
13918
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13735,6 +13972,10 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
13735
13972
|
oauth1: "oauth1";
|
|
13736
13973
|
"client-credentials": "client-credentials";
|
|
13737
13974
|
}>>;
|
|
13975
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13976
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
13977
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13978
|
+
}, z.core.$strip>>>;
|
|
13738
13979
|
}, z.core.$strip>;
|
|
13739
13980
|
}, z.core.$strip>>>;
|
|
13740
13981
|
defaultOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13760,7 +14001,9 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
13760
14001
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13761
14002
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13762
14003
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14004
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
13763
14005
|
userId: z.ZodOptional<z.ZodString>;
|
|
14006
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13764
14007
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13765
14008
|
}, z.core.$strip>;
|
|
13766
14009
|
type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
@@ -13774,6 +14017,7 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
13774
14017
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13775
14018
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13776
14019
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14020
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13777
14021
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13778
14022
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13779
14023
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13793,6 +14037,7 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
13793
14037
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13794
14038
|
parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13795
14039
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14040
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13796
14041
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13797
14042
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13798
14043
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -13812,6 +14057,7 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
13812
14057
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13813
14058
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13814
14059
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14060
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13815
14061
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13816
14062
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13817
14063
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13831,6 +14077,7 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
13831
14077
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13832
14078
|
parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13833
14079
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14080
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13834
14081
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13835
14082
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13836
14083
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -13861,6 +14108,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13861
14108
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13862
14109
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13863
14110
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14111
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13864
14112
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13865
14113
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13866
14114
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13918,6 +14166,10 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13918
14166
|
oauth1: "oauth1";
|
|
13919
14167
|
"client-credentials": "client-credentials";
|
|
13920
14168
|
}>>;
|
|
14169
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14170
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
14171
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14172
|
+
}, z.core.$strip>>>;
|
|
13921
14173
|
}, z.core.$strip>>;
|
|
13922
14174
|
user: z.ZodOptional<z.ZodObject<{
|
|
13923
14175
|
id: z.ZodString;
|
|
@@ -13929,6 +14181,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13929
14181
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13930
14182
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13931
14183
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
14184
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
13932
14185
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13933
14186
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13934
14187
|
}, z.core.$strip>>;
|
|
@@ -13942,6 +14195,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13942
14195
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13943
14196
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13944
14197
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14198
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13945
14199
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13946
14200
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13947
14201
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -13973,6 +14227,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13973
14227
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13974
14228
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13975
14229
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14230
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13976
14231
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13977
14232
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13978
14233
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -14032,6 +14287,10 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
14032
14287
|
oauth1: "oauth1";
|
|
14033
14288
|
"client-credentials": "client-credentials";
|
|
14034
14289
|
}>>;
|
|
14290
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14291
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
14292
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14293
|
+
}, z.core.$strip>>>;
|
|
14035
14294
|
}, z.core.$strip>;
|
|
14036
14295
|
}, z.core.$strip>>>;
|
|
14037
14296
|
defaultOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -14059,7 +14318,9 @@ declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
|
14059
14318
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
14060
14319
|
parentId: z.ZodOptional<z.ZodString>;
|
|
14061
14320
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14321
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
14062
14322
|
userId: z.ZodOptional<z.ZodString>;
|
|
14323
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
14063
14324
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14064
14325
|
}, z.core.$strip>;
|
|
14065
14326
|
type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
@@ -14079,7 +14340,9 @@ declare const FindActionInstancesQuery: z.ZodObject<{
|
|
|
14079
14340
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
14080
14341
|
parentId: z.ZodOptional<z.ZodString>;
|
|
14081
14342
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14343
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
14082
14344
|
userId: z.ZodOptional<z.ZodString>;
|
|
14345
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
14083
14346
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14084
14347
|
}, z.core.$strip>;
|
|
14085
14348
|
type FindActionInstancesQuery = FindActionsQuery;
|
|
@@ -14111,6 +14374,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
14111
14374
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
14112
14375
|
parentId: z.ZodOptional<z.ZodString>;
|
|
14113
14376
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14377
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14114
14378
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14115
14379
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14116
14380
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -14141,6 +14405,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
14141
14405
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
14142
14406
|
parentId: z.ZodOptional<z.ZodString>;
|
|
14143
14407
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14408
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14144
14409
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14145
14410
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14146
14411
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -14200,6 +14465,10 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
14200
14465
|
oauth1: "oauth1";
|
|
14201
14466
|
"client-credentials": "client-credentials";
|
|
14202
14467
|
}>>;
|
|
14468
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14469
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
14470
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14471
|
+
}, z.core.$strip>>>;
|
|
14203
14472
|
}, z.core.$strip>>;
|
|
14204
14473
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14205
14474
|
id: z.ZodString;
|
|
@@ -14220,6 +14489,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
14220
14489
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
14221
14490
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
14222
14491
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
14492
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
14493
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
14223
14494
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14224
14495
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14225
14496
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -14234,6 +14505,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
14234
14505
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
14235
14506
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14236
14507
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
14508
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
14237
14509
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14238
14510
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14239
14511
|
}, z.core.$strip>>;
|
|
@@ -14277,6 +14549,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
14277
14549
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
14278
14550
|
parentId: z.ZodOptional<z.ZodString>;
|
|
14279
14551
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14552
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14280
14553
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14281
14554
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14282
14555
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -14307,6 +14580,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
14307
14580
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
14308
14581
|
parentId: z.ZodOptional<z.ZodString>;
|
|
14309
14582
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14583
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14310
14584
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14311
14585
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14312
14586
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -14366,6 +14640,10 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
14366
14640
|
oauth1: "oauth1";
|
|
14367
14641
|
"client-credentials": "client-credentials";
|
|
14368
14642
|
}>>;
|
|
14643
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14644
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
14645
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14646
|
+
}, z.core.$strip>>>;
|
|
14369
14647
|
}, z.core.$strip>>;
|
|
14370
14648
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14371
14649
|
id: z.ZodString;
|
|
@@ -14386,6 +14664,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
14386
14664
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
14387
14665
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
14388
14666
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
14667
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
14668
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
14389
14669
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14390
14670
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14391
14671
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -14400,6 +14680,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
14400
14680
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
14401
14681
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14402
14682
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
14683
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
14403
14684
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14404
14685
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14405
14686
|
}, z.core.$strip>>;
|
|
@@ -14601,6 +14882,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
14601
14882
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
14602
14883
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14603
14884
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
14885
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
14604
14886
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14605
14887
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14606
14888
|
}, z.core.$strip>>;
|
|
@@ -14680,6 +14962,10 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
14680
14962
|
oauth1: "oauth1";
|
|
14681
14963
|
"client-credentials": "client-credentials";
|
|
14682
14964
|
}>>;
|
|
14965
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14966
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
14967
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14968
|
+
}, z.core.$strip>>>;
|
|
14683
14969
|
}, z.core.$strip>>;
|
|
14684
14970
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14685
14971
|
id: z.ZodString;
|
|
@@ -14700,6 +14986,8 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
14700
14986
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
14701
14987
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
14702
14988
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
14989
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
14990
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
14703
14991
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14704
14992
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14705
14993
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -14753,6 +15041,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
14753
15041
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
14754
15042
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14755
15043
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
15044
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
14756
15045
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14757
15046
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14758
15047
|
}, z.core.$strip>>;
|
|
@@ -14832,6 +15121,10 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
14832
15121
|
oauth1: "oauth1";
|
|
14833
15122
|
"client-credentials": "client-credentials";
|
|
14834
15123
|
}>>;
|
|
15124
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
15125
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
15126
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15127
|
+
}, z.core.$strip>>>;
|
|
14835
15128
|
}, z.core.$strip>>;
|
|
14836
15129
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14837
15130
|
id: z.ZodString;
|
|
@@ -14852,6 +15145,8 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
14852
15145
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
14853
15146
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
14854
15147
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
15148
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
15149
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
14855
15150
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14856
15151
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14857
15152
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -14874,6 +15169,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
14874
15169
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
14875
15170
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14876
15171
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
15172
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
14877
15173
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14878
15174
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14879
15175
|
}, z.core.$strip>>;
|
|
@@ -15032,6 +15328,15 @@ declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
|
|
|
15032
15328
|
|
|
15033
15329
|
declare function setEditablePropertiesForWorkspaceElement<T extends Record<string, unknown>>(currentElement: T, newEditableFields: Record<string, unknown>, exportSchema: z.ZodTypeAny): T;
|
|
15034
15330
|
|
|
15331
|
+
declare const REFERENCE_ELEMENT_TYPE_SELF: "self";
|
|
15332
|
+
interface FilterFieldMeta {
|
|
15333
|
+
referenceElementType?: WorkspaceElementType | typeof REFERENCE_ELEMENT_TYPE_SELF;
|
|
15334
|
+
filterTitle?: string;
|
|
15335
|
+
hidden?: boolean;
|
|
15336
|
+
isFlag?: boolean;
|
|
15337
|
+
}
|
|
15338
|
+
declare function getFilterFieldMeta(meta: unknown): FilterFieldMeta | undefined;
|
|
15339
|
+
|
|
15035
15340
|
interface WorkspaceElementSpec {
|
|
15036
15341
|
type: WorkspaceElementType;
|
|
15037
15342
|
apiPath: string;
|
|
@@ -15086,12 +15391,17 @@ declare enum AlertType {
|
|
|
15086
15391
|
workspaceElementCreationsPerSecond = "workspaceElementCreationsPerSecond",
|
|
15087
15392
|
workspaceElementCreationsPerHour = "workspaceElementCreationsPerHour",
|
|
15088
15393
|
externalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay",
|
|
15394
|
+
apiRequestsPerCustomerPerSecond = "apiRequestsPerCustomerPerSecond",
|
|
15395
|
+
apiRequestsPerCustomerPerHour = "apiRequestsPerCustomerPerHour",
|
|
15396
|
+
webhookRequestsPerCustomerPerSecond = "webhookRequestsPerCustomerPerSecond",
|
|
15397
|
+
webhookRequestsPerCustomerPerHour = "webhookRequestsPerCustomerPerHour",
|
|
15089
15398
|
totalUsagePerDay = "totalUsagePerDay",
|
|
15090
15399
|
totalUsagePer30Days = "totalUsagePer30Days",
|
|
15091
15400
|
testAlert = "testAlert"
|
|
15092
15401
|
}
|
|
15093
15402
|
declare enum AlertCategory {
|
|
15094
15403
|
RATE_LIMIT = "rateLimit",
|
|
15404
|
+
CUSTOMER_RATE_LIMIT = "customerRateLimit",
|
|
15095
15405
|
USAGE = "usage",
|
|
15096
15406
|
TEST = "test"
|
|
15097
15407
|
}
|
|
@@ -15104,6 +15414,10 @@ declare const ALERT_TYPE_CATEGORIES: {
|
|
|
15104
15414
|
readonly workspaceElementCreationsPerSecond: AlertCategory.RATE_LIMIT;
|
|
15105
15415
|
readonly workspaceElementCreationsPerHour: AlertCategory.RATE_LIMIT;
|
|
15106
15416
|
readonly externalEventsPerCustomerPerDay: AlertCategory.RATE_LIMIT;
|
|
15417
|
+
readonly apiRequestsPerCustomerPerSecond: AlertCategory.CUSTOMER_RATE_LIMIT;
|
|
15418
|
+
readonly apiRequestsPerCustomerPerHour: AlertCategory.CUSTOMER_RATE_LIMIT;
|
|
15419
|
+
readonly webhookRequestsPerCustomerPerSecond: AlertCategory.CUSTOMER_RATE_LIMIT;
|
|
15420
|
+
readonly webhookRequestsPerCustomerPerHour: AlertCategory.CUSTOMER_RATE_LIMIT;
|
|
15107
15421
|
readonly totalUsagePerDay: AlertCategory.USAGE;
|
|
15108
15422
|
readonly totalUsagePer30Days: AlertCategory.USAGE;
|
|
15109
15423
|
readonly testAlert: AlertCategory.TEST;
|
|
@@ -15112,6 +15426,7 @@ type AlertsByCategory<C extends AlertCategory> = {
|
|
|
15112
15426
|
[K in keyof typeof ALERT_TYPE_CATEGORIES]: (typeof ALERT_TYPE_CATEGORIES)[K] extends C ? K : never;
|
|
15113
15427
|
}[keyof typeof ALERT_TYPE_CATEGORIES];
|
|
15114
15428
|
type RateLimitAlerts = AlertsByCategory<AlertCategory.RATE_LIMIT>;
|
|
15429
|
+
type CustomerRateLimitAlerts = AlertsByCategory<AlertCategory.CUSTOMER_RATE_LIMIT>;
|
|
15115
15430
|
type UsageAlerts = AlertsByCategory<AlertCategory.USAGE>;
|
|
15116
15431
|
type TestAlerts = AlertsByCategory<AlertCategory.TEST>;
|
|
15117
15432
|
declare const AlertSchema: z.ZodObject<{
|
|
@@ -15130,6 +15445,10 @@ declare const AlertSchema: z.ZodObject<{
|
|
|
15130
15445
|
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
15131
15446
|
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
15132
15447
|
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
15448
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
15449
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
15450
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
15451
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
15133
15452
|
totalUsagePerDay: AlertType.totalUsagePerDay;
|
|
15134
15453
|
totalUsagePer30Days: AlertType.totalUsagePer30Days;
|
|
15135
15454
|
testAlert: AlertType.testAlert;
|
|
@@ -15173,6 +15492,10 @@ declare const AlertDeliverySettingsSchema: z.ZodObject<{
|
|
|
15173
15492
|
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
15174
15493
|
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
15175
15494
|
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
15495
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
15496
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
15497
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
15498
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
15176
15499
|
totalUsagePerDay: AlertType.totalUsagePerDay;
|
|
15177
15500
|
totalUsagePer30Days: AlertType.totalUsagePer30Days;
|
|
15178
15501
|
testAlert: AlertType.testAlert;
|
|
@@ -15217,7 +15540,7 @@ declare enum WorkspaceNotificationType {
|
|
|
15217
15540
|
CopilotActivity = "copilot-activity",
|
|
15218
15541
|
LocalClientUpdate = "local-client-update"
|
|
15219
15542
|
}
|
|
15220
|
-
declare
|
|
15543
|
+
declare enum ParallelExecutionLimits {
|
|
15221
15544
|
ParallelEventPulls = "parallelEventPulls",
|
|
15222
15545
|
ParallelIncrementalEventPullsPerConnection = "parallelIncrementalEventPullsPerConnection",
|
|
15223
15546
|
ParallelFullSyncEventPullsPerConnection = "parallelFullSyncEventPullsPerConnection",
|
|
@@ -15231,7 +15554,7 @@ declare const enum ParallelExecutionLimits {
|
|
|
15231
15554
|
ParallelPathfinderAgentSessions = "parallelPathfinderAgentSessions",
|
|
15232
15555
|
ParallelInstantTasksActiveJobs = "parallelInstantTasksActiveJobs"
|
|
15233
15556
|
}
|
|
15234
|
-
declare
|
|
15557
|
+
declare enum RateLimits {
|
|
15235
15558
|
fileUploadsMbPerHour = "fileUploadsMbPerHour",
|
|
15236
15559
|
ApiRequestsPerSecond = "apiRequestsPerSecond",
|
|
15237
15560
|
ApiRequestsPerHour = "apiRequestsPerHour",
|
|
@@ -15241,14 +15564,14 @@ declare const enum RateLimits {
|
|
|
15241
15564
|
WorkspaceElementCreationsPerHour = "workspaceElementCreationsPerHour",
|
|
15242
15565
|
ExternalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay"
|
|
15243
15566
|
}
|
|
15244
|
-
declare
|
|
15567
|
+
declare enum WorkspaceSizeLimits {
|
|
15245
15568
|
TotalNumberOfCustomers = "totalNumberOfCustomers",
|
|
15246
15569
|
TotalNumberOfConnections = "totalNumberOfConnections",
|
|
15247
15570
|
TotalNumberOfWorkspaceElements = "totalNumberOfWorkspaceElements",
|
|
15248
15571
|
InstantTasksQueueSize = "instantTasksQueueSize",
|
|
15249
15572
|
QueuedTasksQueueSize = "queuedTasksQueueSize"
|
|
15250
15573
|
}
|
|
15251
|
-
declare
|
|
15574
|
+
declare enum CustomerLimits {
|
|
15252
15575
|
ParallelApiRequestsPerCustomer = "parallelApiRequestsPerCustomer",
|
|
15253
15576
|
ParallelBackgroundJobsPerCustomer = "parallelBackgroundJobsPerCustomer",
|
|
15254
15577
|
ApiRequestsPerCustomerPerSecond = "apiRequestsPerCustomerPerSecond",
|
|
@@ -15334,6 +15657,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
15334
15657
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15335
15658
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
15336
15659
|
}, z$1.core.$strip>>;
|
|
15660
|
+
parallelPathfinderAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
15661
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15662
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15663
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
15664
|
+
}, z$1.core.$strip>>;
|
|
15337
15665
|
ParallelWriteDatabaseRequests: z$1.ZodOptional<z$1.ZodObject<{
|
|
15338
15666
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15339
15667
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -15466,6 +15794,13 @@ interface WorkspaceExport {
|
|
|
15466
15794
|
[WorkspaceElementType.Flow]: FlowExportProperties[];
|
|
15467
15795
|
[WorkspaceElementType.Package]: PackageExportProperties[];
|
|
15468
15796
|
}
|
|
15797
|
+
declare const WorkspaceSettingsSchema: z$1.ZodObject<{
|
|
15798
|
+
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15799
|
+
enableWebhookLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15800
|
+
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15801
|
+
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15802
|
+
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15803
|
+
}, z$1.core.$strip>;
|
|
15469
15804
|
declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
15470
15805
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15471
15806
|
enableWebhookLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -15555,6 +15890,11 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
15555
15890
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15556
15891
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
15557
15892
|
}, z$1.core.$strip>>;
|
|
15893
|
+
parallelPathfinderAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
15894
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15895
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15896
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
15897
|
+
}, z$1.core.$strip>>;
|
|
15558
15898
|
ParallelWriteDatabaseRequests: z$1.ZodOptional<z$1.ZodObject<{
|
|
15559
15899
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
15560
15900
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -15693,6 +16033,10 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
15693
16033
|
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
15694
16034
|
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
15695
16035
|
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
16036
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
16037
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
16038
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
16039
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
15696
16040
|
totalUsagePerDay: AlertType.totalUsagePerDay;
|
|
15697
16041
|
totalUsagePer30Days: AlertType.totalUsagePer30Days;
|
|
15698
16042
|
testAlert: AlertType.testAlert;
|
|
@@ -15712,34 +16056,258 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
15712
16056
|
isThrottled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15713
16057
|
isDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
15714
16058
|
isBackgroundJobsDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16059
|
+
lastExternalApiRequestDate: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15715
16060
|
}, z$1.core.$strip>;
|
|
15716
|
-
|
|
15717
|
-
|
|
15718
|
-
|
|
15719
|
-
|
|
15720
|
-
|
|
15721
|
-
|
|
15722
|
-
|
|
15723
|
-
|
|
15724
|
-
|
|
15725
|
-
|
|
15726
|
-
|
|
15727
|
-
|
|
15728
|
-
|
|
15729
|
-
auth
|
|
15730
|
-
credentialsSchema
|
|
15731
|
-
apiClient
|
|
15732
|
-
|
|
15733
|
-
|
|
15734
|
-
|
|
15735
|
-
|
|
15736
|
-
|
|
15737
|
-
|
|
15738
|
-
|
|
15739
|
-
|
|
15740
|
-
|
|
15741
|
-
|
|
15742
|
-
|
|
16061
|
+
declare const Workspace: z$1.ZodObject<{
|
|
16062
|
+
id: z$1.ZodString;
|
|
16063
|
+
key: z$1.ZodString;
|
|
16064
|
+
logoUri: z$1.ZodOptional<z$1.ZodString>;
|
|
16065
|
+
userFieldsSchema: z$1.ZodOptional<z$1.ZodAny>;
|
|
16066
|
+
apiBaseUri: z$1.ZodOptional<z$1.ZodString>;
|
|
16067
|
+
webhookUri: z$1.ZodOptional<z$1.ZodString>;
|
|
16068
|
+
publicKey: z$1.ZodOptional<z$1.ZodString>;
|
|
16069
|
+
publicKeys: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
16070
|
+
name: z$1.ZodString;
|
|
16071
|
+
publicKey: z$1.ZodString;
|
|
16072
|
+
}, z$1.core.$strip>>>;
|
|
16073
|
+
enabledWebhookEvents: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
16074
|
+
auth: z$1.ZodOptional<z$1.ZodAny>;
|
|
16075
|
+
credentialsSchema: z$1.ZodOptional<z$1.ZodAny>;
|
|
16076
|
+
apiClient: z$1.ZodOptional<z$1.ZodAny>;
|
|
16077
|
+
apiRequestHeaders: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
16078
|
+
apiRequestQuery: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
16079
|
+
isOnPrem: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16080
|
+
connectorBaseUri: z$1.ZodOptional<z$1.ZodString>;
|
|
16081
|
+
connectorRevision: z$1.ZodOptional<z$1.ZodString>;
|
|
16082
|
+
featureFlags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
16083
|
+
limits: z$1.ZodOptional<z$1.ZodObject<{
|
|
16084
|
+
parallelEventPulls: z$1.ZodOptional<z$1.ZodObject<{
|
|
16085
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16086
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16087
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16088
|
+
}, z$1.core.$strip>>;
|
|
16089
|
+
parallelIncrementalEventPullsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
16090
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16091
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16092
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16093
|
+
}, z$1.core.$strip>>;
|
|
16094
|
+
parallelFullSyncEventPullsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
16095
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16096
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16097
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16098
|
+
}, z$1.core.$strip>>;
|
|
16099
|
+
parallelFlowRuns: z$1.ZodOptional<z$1.ZodObject<{
|
|
16100
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16101
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16102
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16103
|
+
}, z$1.core.$strip>>;
|
|
16104
|
+
parallelFlowRunsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
16105
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16106
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16107
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16108
|
+
}, z$1.core.$strip>>;
|
|
16109
|
+
parallelApiRequests: z$1.ZodOptional<z$1.ZodObject<{
|
|
16110
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16111
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16112
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16113
|
+
}, z$1.core.$strip>>;
|
|
16114
|
+
parallelSseRequests: z$1.ZodOptional<z$1.ZodObject<{
|
|
16115
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16116
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16117
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16118
|
+
}, z$1.core.$strip>>;
|
|
16119
|
+
parallelBackgroundJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
16120
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16121
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16122
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16123
|
+
}, z$1.core.$strip>>;
|
|
16124
|
+
parallelEventLogs: z$1.ZodOptional<z$1.ZodObject<{
|
|
16125
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16126
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16127
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16128
|
+
}, z$1.core.$strip>>;
|
|
16129
|
+
parallelEventLogsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
16130
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16131
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16132
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16133
|
+
}, z$1.core.$strip>>;
|
|
16134
|
+
parallelInstantTasksActiveJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
16135
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16136
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16137
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16138
|
+
}, z$1.core.$strip>>;
|
|
16139
|
+
parallelPathfinderAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
16140
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16141
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16142
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16143
|
+
}, z$1.core.$strip>>;
|
|
16144
|
+
ParallelWriteDatabaseRequests: z$1.ZodOptional<z$1.ZodObject<{
|
|
16145
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16146
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16147
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16148
|
+
}, z$1.core.$strip>>;
|
|
16149
|
+
fileUploadsMbPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
16150
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16151
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16152
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16153
|
+
}, z$1.core.$strip>>;
|
|
16154
|
+
apiRequestsPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16155
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16156
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16157
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16158
|
+
}, z$1.core.$strip>>;
|
|
16159
|
+
apiRequestsPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
16160
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16161
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16162
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16163
|
+
}, z$1.core.$strip>>;
|
|
16164
|
+
webhookRequestsPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16165
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16166
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16167
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16168
|
+
}, z$1.core.$strip>>;
|
|
16169
|
+
webhookRequestsPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
16170
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16171
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16172
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16173
|
+
}, z$1.core.$strip>>;
|
|
16174
|
+
workspaceElementCreationsPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16175
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16176
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16177
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16178
|
+
}, z$1.core.$strip>>;
|
|
16179
|
+
workspaceElementCreationsPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
16180
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16181
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16182
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16183
|
+
}, z$1.core.$strip>>;
|
|
16184
|
+
createDatabaseRequestsPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16185
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16186
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16187
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16188
|
+
}, z$1.core.$strip>>;
|
|
16189
|
+
totalNumberOfCustomers: z$1.ZodOptional<z$1.ZodObject<{
|
|
16190
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16191
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16192
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16193
|
+
}, z$1.core.$strip>>;
|
|
16194
|
+
totalNumberOfConnections: z$1.ZodOptional<z$1.ZodObject<{
|
|
16195
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16196
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16197
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16198
|
+
}, z$1.core.$strip>>;
|
|
16199
|
+
totalNumberOfWorkspaceElements: z$1.ZodOptional<z$1.ZodObject<{
|
|
16200
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16201
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16202
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16203
|
+
}, z$1.core.$strip>>;
|
|
16204
|
+
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
16205
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16206
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16207
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16208
|
+
}, z$1.core.$strip>>;
|
|
16209
|
+
QueuedTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
16210
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16211
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16212
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16213
|
+
}, z$1.core.$strip>>;
|
|
16214
|
+
parallelApiRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
|
|
16215
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16216
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16217
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16218
|
+
}, z$1.core.$strip>>;
|
|
16219
|
+
parallelBackgroundJobsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
|
|
16220
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16221
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16222
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16223
|
+
}, z$1.core.$strip>>;
|
|
16224
|
+
apiRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16225
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16226
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16227
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16228
|
+
}, z$1.core.$strip>>;
|
|
16229
|
+
apiRequestsPerCustomerPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
16230
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16231
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16232
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16233
|
+
}, z$1.core.$strip>>;
|
|
16234
|
+
webhookRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16235
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16236
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16237
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16238
|
+
}, z$1.core.$strip>>;
|
|
16239
|
+
webhookRequestsPerCustomerPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
16240
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16241
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16242
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16243
|
+
}, z$1.core.$strip>>;
|
|
16244
|
+
externalEventsPerCustomerPerDay: z$1.ZodOptional<z$1.ZodObject<{
|
|
16245
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16246
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16247
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16248
|
+
}, z$1.core.$strip>>;
|
|
16249
|
+
createDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16250
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16251
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16252
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16253
|
+
}, z$1.core.$strip>>;
|
|
16254
|
+
updateDatabaseRequestsPerCustomerPerSecond: z$1.ZodOptional<z$1.ZodObject<{
|
|
16255
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16256
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16257
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16258
|
+
}, z$1.core.$strip>>;
|
|
16259
|
+
parallelWriteDatabaseRequestsPerCustomer: z$1.ZodOptional<z$1.ZodObject<{
|
|
16260
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16261
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
16262
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
16263
|
+
}, z$1.core.$strip>>;
|
|
16264
|
+
}, z$1.core.$strip>>;
|
|
16265
|
+
settings: z$1.ZodOptional<z$1.ZodObject<{
|
|
16266
|
+
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16267
|
+
enableWebhookLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16268
|
+
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16269
|
+
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16270
|
+
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16271
|
+
}, z$1.core.$strip>>;
|
|
16272
|
+
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
16273
|
+
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
16274
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
16275
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
16276
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
16277
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
16278
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
16279
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
16280
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
16281
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
16282
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
16283
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
16284
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
16285
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
16286
|
+
totalUsagePerDay: AlertType.totalUsagePerDay;
|
|
16287
|
+
totalUsagePer30Days: AlertType.totalUsagePer30Days;
|
|
16288
|
+
testAlert: AlertType.testAlert;
|
|
16289
|
+
}>, z$1.ZodOptional<z$1.ZodObject<{
|
|
16290
|
+
internal: z$1.ZodLiteral<true>;
|
|
16291
|
+
webhook: z$1.ZodOptional<z$1.ZodObject<{
|
|
16292
|
+
enabled: z$1.ZodBoolean;
|
|
16293
|
+
}, z$1.core.$strip>>;
|
|
16294
|
+
email: z$1.ZodOptional<z$1.ZodObject<{
|
|
16295
|
+
enabled: z$1.ZodBoolean;
|
|
16296
|
+
}, z$1.core.$strip>>;
|
|
16297
|
+
}, z$1.core.$strip>>>>;
|
|
16298
|
+
}, z$1.core.$strip>>;
|
|
16299
|
+
type: z$1.ZodOptional<z$1.ZodEnum<typeof WorkspaceType>>;
|
|
16300
|
+
jwksUri: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16301
|
+
isTrial: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16302
|
+
isThrottled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16303
|
+
isDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16304
|
+
isBackgroundJobsDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
16305
|
+
lastExternalApiRequestDate: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16306
|
+
}, z$1.core.$strip>;
|
|
16307
|
+
type Workspace = z$1.infer<typeof Workspace>;
|
|
16308
|
+
type WorkspaceSettings = z$1.infer<typeof WorkspaceSettingsSchema>;
|
|
16309
|
+
type EngineWorkspaceSettings = WorkspaceSettings;
|
|
16310
|
+
type EngineWorkspace = Workspace;
|
|
15743
16311
|
interface WorkspaceUser {
|
|
15744
16312
|
id: string;
|
|
15745
16313
|
workspaceId: string;
|
|
@@ -15814,6 +16382,7 @@ interface WorkspaceExportComparisonOptions {
|
|
|
15814
16382
|
declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
15815
16383
|
declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
|
15816
16384
|
|
|
16385
|
+
type OrgFeatureFlags = Record<string, boolean>;
|
|
15817
16386
|
declare enum OrgLimitsType {
|
|
15818
16387
|
NUMBER_OF_WORKSPACES = "numberOfWorkspaces",
|
|
15819
16388
|
TODAY_USAGE = "todayUsage",
|
|
@@ -15848,6 +16417,7 @@ interface Org {
|
|
|
15848
16417
|
infraAutoChargeThreshold?: number;
|
|
15849
16418
|
infraAutoChargePurchaseAmount?: number;
|
|
15850
16419
|
infraAutoChargeMonthlyLimit?: number;
|
|
16420
|
+
effectiveFeatureFlags?: OrgFeatureFlags;
|
|
15851
16421
|
}
|
|
15852
16422
|
declare enum OrgPlan {
|
|
15853
16423
|
Core = "core",
|
|
@@ -15913,6 +16483,7 @@ declare const MembraneAgentKey: z.ZodOptional<z.ZodObject<{
|
|
|
15913
16483
|
key: z.ZodOptional<z.ZodString>;
|
|
15914
16484
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
15915
16485
|
}, z.core.$strip>>;
|
|
16486
|
+
declare const OrgFeatureFlagsSchema: z.ZodRecord<z.ZodString, z.ZodBoolean>;
|
|
15916
16487
|
declare const OrgSchema: z.ZodObject<{
|
|
15917
16488
|
id: z.ZodString;
|
|
15918
16489
|
key: z.ZodString;
|
|
@@ -15949,6 +16520,7 @@ declare const OrgSchema: z.ZodObject<{
|
|
|
15949
16520
|
infraAutoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
15950
16521
|
infraAutoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
15951
16522
|
infraAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
16523
|
+
effectiveFeatureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
15952
16524
|
}, z.core.$strip>;
|
|
15953
16525
|
declare const AccountResponse: z.ZodObject<{
|
|
15954
16526
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -16016,6 +16588,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
16016
16588
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
16017
16589
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
16018
16590
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
16591
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
16019
16592
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16020
16593
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16021
16594
|
}, z.core.$strip>>;
|
|
@@ -16029,6 +16602,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
16029
16602
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
16030
16603
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
16031
16604
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
16605
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
16032
16606
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16033
16607
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16034
16608
|
}, z.core.$strip>>;
|
|
@@ -16110,6 +16684,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
16110
16684
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
16111
16685
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
16112
16686
|
}, z.core.$strip>>;
|
|
16687
|
+
parallelPathfinderAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
16688
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
16689
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
16690
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
16691
|
+
}, z.core.$strip>>;
|
|
16113
16692
|
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
16114
16693
|
value: z.ZodOptional<z.ZodNumber>;
|
|
16115
16694
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -16248,6 +16827,10 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
16248
16827
|
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
16249
16828
|
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
16250
16829
|
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
16830
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
16831
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
16832
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
16833
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
16251
16834
|
totalUsagePerDay: AlertType.totalUsagePerDay;
|
|
16252
16835
|
totalUsagePer30Days: AlertType.totalUsagePer30Days;
|
|
16253
16836
|
testAlert: AlertType.testAlert;
|
|
@@ -16267,6 +16850,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
16267
16850
|
isThrottled: z.ZodOptional<z.ZodBoolean>;
|
|
16268
16851
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
16269
16852
|
isBackgroundJobsDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
16853
|
+
lastExternalApiRequestDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16270
16854
|
}, z.core.$strip>>;
|
|
16271
16855
|
superAdminToken: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16272
16856
|
orgs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -16305,6 +16889,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
16305
16889
|
infraAutoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
16306
16890
|
infraAutoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
16307
16891
|
infraAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
16892
|
+
effectiveFeatureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
16308
16893
|
}, z.core.$strip>>>;
|
|
16309
16894
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16310
16895
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -16941,6 +17526,39 @@ declare function parseDate(value: any): Date | undefined;
|
|
|
16941
17526
|
declare function isBusinessDay(date: Date): boolean;
|
|
16942
17527
|
declare function getBusinessDaysBetween(startDate: Date, endDate: Date): Set<string>;
|
|
16943
17528
|
|
|
17529
|
+
declare const StatsFilterQuery: z.ZodObject<{
|
|
17530
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
17531
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
17532
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
17533
|
+
}, z.core.$strip>;
|
|
17534
|
+
type StatsFilterQuery = z.infer<typeof StatsFilterQuery>;
|
|
17535
|
+
declare const ActivityStatsQuery: z.ZodObject<{
|
|
17536
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
17537
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
17538
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
17539
|
+
startDatetime: z.ZodString;
|
|
17540
|
+
}, z.core.$strip>;
|
|
17541
|
+
type ActivityStatsQuery = z.infer<typeof ActivityStatsQuery>;
|
|
17542
|
+
declare const IntegrationLayerStatsQuery: z.ZodObject<{
|
|
17543
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
17544
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
17545
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
17546
|
+
}, z.core.$strip>;
|
|
17547
|
+
type IntegrationLayerStatsQuery = z.infer<typeof IntegrationLayerStatsQuery>;
|
|
17548
|
+
declare const ActionRunsStatsQuery: z.ZodObject<{
|
|
17549
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
17550
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
17551
|
+
startDatetime: z.ZodString;
|
|
17552
|
+
}, z.core.$strip>;
|
|
17553
|
+
type ActionRunsStatsQuery = z.infer<typeof ActionRunsStatsQuery>;
|
|
17554
|
+
declare const FlowRunsStatsQuery: z.ZodObject<{
|
|
17555
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
17556
|
+
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
17557
|
+
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
17558
|
+
startDatetime: z.ZodString;
|
|
17559
|
+
}, z.core.$strip>;
|
|
17560
|
+
type FlowRunsStatsQuery = z.infer<typeof FlowRunsStatsQuery>;
|
|
17561
|
+
|
|
16944
17562
|
declare enum LogRecordType {
|
|
16945
17563
|
MSG = "message",
|
|
16946
17564
|
TEXT = "text",
|
|
@@ -17053,6 +17671,7 @@ interface App {
|
|
|
17053
17671
|
readmeSlug?: string;
|
|
17054
17672
|
isPublic?: boolean;
|
|
17055
17673
|
isReadOnly: boolean;
|
|
17674
|
+
isConnected?: boolean;
|
|
17056
17675
|
}
|
|
17057
17676
|
interface AppCategory {
|
|
17058
17677
|
count: number;
|
|
@@ -17368,6 +17987,10 @@ declare enum AgentSessionState {
|
|
|
17368
17987
|
BUSY = "busy",
|
|
17369
17988
|
IDLE = "idle"
|
|
17370
17989
|
}
|
|
17990
|
+
declare enum AgentName {
|
|
17991
|
+
MEMBRANE = "membrane",
|
|
17992
|
+
SELF_INTEGRATING = "self-integrating"
|
|
17993
|
+
}
|
|
17371
17994
|
declare const AgentSession: z.ZodObject<{
|
|
17372
17995
|
id: z.ZodString;
|
|
17373
17996
|
workspaceId: z.ZodString;
|
|
@@ -17386,6 +18009,7 @@ declare const AgentSession: z.ZodObject<{
|
|
|
17386
18009
|
usage: z.ZodOptional<z.ZodNumber>;
|
|
17387
18010
|
hasWorker: z.ZodBoolean;
|
|
17388
18011
|
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
18012
|
+
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
17389
18013
|
createdAt: z.ZodISODateTime;
|
|
17390
18014
|
updatedAt: z.ZodISODateTime;
|
|
17391
18015
|
}, z.core.$strip>;
|
|
@@ -17672,5 +18296,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
17672
18296
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
17673
18297
|
}
|
|
17674
18298
|
|
|
17675
|
-
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, OrgLimits, OrgLimitsType, OrgPlan, OrgSchema, OrgUserRole, OrgUserStatus, OrgWorkspaceSchema, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUserSchema, RATE_LIMITS, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspacePublicKey, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
17676
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgUser, OrgWorkspace, Package, PatchAgentSession, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|
|
18299
|
+
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, OrgFeatureFlagsSchema, OrgLimits, OrgLimitsType, OrgPlan, OrgSchema, OrgUserRole, OrgUserStatus, OrgWorkspaceSchema, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUserSchema, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, StatsFilterQuery, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
18300
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgFeatureFlags, OrgUser, OrgWorkspace, Package, PatchAgentSession, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSettings, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|