@membranehq/sdk 0.11.0 → 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.
Files changed (56) hide show
  1. package/dist/bundle.d.ts +199 -0
  2. package/dist/bundle.js +177 -48
  3. package/dist/bundle.js.map +1 -1
  4. package/dist/dts/accessors/connections-accessors.d.ts +7 -0
  5. package/dist/dts/accessors/integrations-accessors.d.ts +7 -0
  6. package/dist/dts/alerts/types.d.ts +18 -0
  7. package/dist/dts/index.browser.d.ts +1 -0
  8. package/dist/dts/orgs/types.d.ts +12 -0
  9. package/dist/dts/stats/index.d.ts +33 -0
  10. package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +18 -0
  11. package/dist/dts/workspace-elements/api/actions-api.d.ts +34 -0
  12. package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -0
  13. package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +1 -0
  14. package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +1 -0
  15. package/dist/dts/workspace-elements/api/connections-api.d.ts +21 -0
  16. package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -0
  17. package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +7 -0
  18. package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +8 -0
  19. package/dist/dts/workspace-elements/api/data-sources-api.d.ts +14 -0
  20. package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +7 -0
  21. package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +7 -0
  22. package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +7 -0
  23. package/dist/dts/workspace-elements/api/external-events-api.d.ts +4 -0
  24. package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +16 -0
  25. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +14 -0
  26. package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +14 -0
  27. package/dist/dts/workspace-elements/api/flows-api.d.ts +38 -0
  28. package/dist/dts/workspace-elements/api/integrations-api.d.ts +16 -0
  29. package/dist/dts/workspace-elements/api/packages-api.d.ts +10 -0
  30. package/dist/dts/workspace-elements/base/action-instances/types.d.ts +1 -0
  31. package/dist/dts/workspace-elements/base/actions/index.d.ts +3 -0
  32. package/dist/dts/workspace-elements/base/connections/types.d.ts +2 -0
  33. package/dist/dts/workspace-elements/base/customers/index.d.ts +1 -0
  34. package/dist/dts/workspace-elements/base/data-sources/index.d.ts +3 -0
  35. package/dist/dts/workspace-elements/base/external-apps/index.d.ts +1 -0
  36. package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
  37. package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
  38. package/dist/dts/workspace-elements/base/integrations/index.d.ts +28 -0
  39. package/dist/dts/workspace-elements/base/packages/index.d.ts +2 -0
  40. package/dist/dts/workspace-elements/filter-meta.d.ts +9 -0
  41. package/dist/dts/workspace-elements/index.d.ts +1 -0
  42. package/dist/dts/workspace-elements/types.d.ts +4 -0
  43. package/dist/dts/workspaces/types.d.ts +276 -34
  44. package/dist/index.browser.d.mts +651 -33
  45. package/dist/index.browser.d.ts +651 -33
  46. package/dist/index.browser.js +182 -12
  47. package/dist/index.browser.js.map +1 -1
  48. package/dist/index.browser.mjs +172 -13
  49. package/dist/index.browser.mjs.map +1 -1
  50. package/dist/index.node.d.mts +651 -33
  51. package/dist/index.node.d.ts +651 -33
  52. package/dist/index.node.js +182 -12
  53. package/dist/index.node.js.map +1 -1
  54. package/dist/index.node.mjs +172 -13
  55. package/dist/index.node.mjs.map +1 -1
  56. package/package.json +2 -2
@@ -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<{
@@ -8427,6 +8457,11 @@ declare const IntegrationEditableProperties: z.ZodObject<{
8427
8457
  connectorVersion: z.ZodOptional<z.ZodString>;
8428
8458
  connectorId: z.ZodOptional<z.ZodString>;
8429
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>>>;
8430
8465
  }, z.core.$strip>;
8431
8466
  type IntegrationEditableProperties = z.infer<typeof IntegrationEditableProperties>;
8432
8467
  declare const IntegrationExportProperties: z.ZodObject<{
@@ -8441,6 +8476,11 @@ declare const IntegrationExportProperties: z.ZodObject<{
8441
8476
  logoBase64: z.ZodOptional<z.ZodString>;
8442
8477
  connectorVersion: z.ZodOptional<z.ZodString>;
8443
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>>>;
8444
8484
  connectorUuid: z.ZodOptional<z.ZodString>;
8445
8485
  }, z.core.$strip>;
8446
8486
  type IntegrationExportProperties = z.infer<typeof IntegrationExportProperties>;
@@ -8488,6 +8528,10 @@ declare const AppliedToIntegrations: <Element extends z.ZodType>(elementSchema:
8488
8528
  oauth1: "oauth1";
8489
8529
  "client-credentials": "client-credentials";
8490
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>>>;
8491
8535
  }, z.core.$strip>;
8492
8536
  }, z.core.$strip>>;
8493
8537
  type AppliedToIntegrations<Element> = z.infer<ReturnType<typeof AppliedToIntegrations<z.ZodType<Element>>>>;
@@ -8518,6 +8562,7 @@ declare const PackageEditableProperties: z.ZodObject<{
8518
8562
  parentUuid: z.ZodOptional<z.ZodString>;
8519
8563
  connectionId: z.ZodOptional<z.ZodString>;
8520
8564
  instanceKey: z.ZodOptional<z.ZodString>;
8565
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
8521
8566
  scenarioTemplateId: z.ZodOptional<z.ZodString>;
8522
8567
  externalAppId: z.ZodOptional<z.ZodString>;
8523
8568
  elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -8568,6 +8613,7 @@ declare const BasePackage: z.ZodObject<{
8568
8613
  parentUuid: z.ZodOptional<z.ZodString>;
8569
8614
  connectionId: z.ZodOptional<z.ZodString>;
8570
8615
  instanceKey: z.ZodOptional<z.ZodString>;
8616
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
8571
8617
  scenarioTemplateId: z.ZodOptional<z.ZodString>;
8572
8618
  externalAppId: z.ZodOptional<z.ZodString>;
8573
8619
  elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -8642,6 +8688,7 @@ declare const BaseCustomer: z.ZodObject<{
8642
8688
  lastActiveAt: z.ZodOptional<z.ZodString>;
8643
8689
  isTest: z.ZodOptional<z.ZodBoolean>;
8644
8690
  isBillable: z.ZodOptional<z.ZodBoolean>;
8691
+ isActive: z.ZodOptional<z.ZodBoolean>;
8645
8692
  createdAt: z.ZodOptional<z.ZodString>;
8646
8693
  archivedAt: z.ZodOptional<z.ZodString>;
8647
8694
  }, z.core.$strip>;
@@ -9281,6 +9328,8 @@ declare const ConnectionApiResponse: z.ZodObject<{
9281
9328
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
9282
9329
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
9283
9330
  retryAttempts: z.ZodOptional<z.ZodNumber>;
9331
+ canTest: z.ZodOptional<z.ZodBoolean>;
9332
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
9284
9333
  archivedAt: z.ZodOptional<z.ZodString>;
9285
9334
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
9286
9335
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -9294,6 +9343,7 @@ declare const ConnectionApiResponse: z.ZodObject<{
9294
9343
  lastActiveAt: z.ZodOptional<z.ZodString>;
9295
9344
  isTest: z.ZodOptional<z.ZodBoolean>;
9296
9345
  isBillable: z.ZodOptional<z.ZodBoolean>;
9346
+ isActive: z.ZodOptional<z.ZodBoolean>;
9297
9347
  createdAt: z.ZodOptional<z.ZodString>;
9298
9348
  archivedAt: z.ZodOptional<z.ZodString>;
9299
9349
  }, z.core.$strip>>;
@@ -9336,6 +9386,10 @@ declare const ConnectionApiResponse: z.ZodObject<{
9336
9386
  oauth1: "oauth1";
9337
9387
  "client-credentials": "client-credentials";
9338
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>>>;
9339
9393
  }, z.core.$strip>>;
9340
9394
  }, z.core.$strip>;
9341
9395
  type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
@@ -9358,6 +9412,8 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
9358
9412
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
9359
9413
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
9360
9414
  retryAttempts: z.ZodOptional<z.ZodNumber>;
9415
+ canTest: z.ZodOptional<z.ZodBoolean>;
9416
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
9361
9417
  archivedAt: z.ZodOptional<z.ZodString>;
9362
9418
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
9363
9419
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -9371,6 +9427,7 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
9371
9427
  lastActiveAt: z.ZodOptional<z.ZodString>;
9372
9428
  isTest: z.ZodOptional<z.ZodBoolean>;
9373
9429
  isBillable: z.ZodOptional<z.ZodBoolean>;
9430
+ isActive: z.ZodOptional<z.ZodBoolean>;
9374
9431
  createdAt: z.ZodOptional<z.ZodString>;
9375
9432
  archivedAt: z.ZodOptional<z.ZodString>;
9376
9433
  }, z.core.$strip>>;
@@ -9413,6 +9470,10 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
9413
9470
  oauth1: "oauth1";
9414
9471
  "client-credentials": "client-credentials";
9415
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>>>;
9416
9477
  }, z.core.$strip>>;
9417
9478
  credentials: z.ZodOptional<z.ZodUnknown>;
9418
9479
  input: z.ZodOptional<z.ZodUnknown>;
@@ -9443,6 +9504,8 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
9443
9504
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
9444
9505
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
9445
9506
  retryAttempts: z.ZodOptional<z.ZodNumber>;
9507
+ canTest: z.ZodOptional<z.ZodBoolean>;
9508
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
9446
9509
  archivedAt: z.ZodOptional<z.ZodString>;
9447
9510
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
9448
9511
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -9456,6 +9519,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
9456
9519
  lastActiveAt: z.ZodOptional<z.ZodString>;
9457
9520
  isTest: z.ZodOptional<z.ZodBoolean>;
9458
9521
  isBillable: z.ZodOptional<z.ZodBoolean>;
9522
+ isActive: z.ZodOptional<z.ZodBoolean>;
9459
9523
  createdAt: z.ZodOptional<z.ZodString>;
9460
9524
  archivedAt: z.ZodOptional<z.ZodString>;
9461
9525
  }, z.core.$strip>>;
@@ -9498,6 +9562,10 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
9498
9562
  oauth1: "oauth1";
9499
9563
  "client-credentials": "client-credentials";
9500
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>>>;
9501
9569
  }, z.core.$strip>>;
9502
9570
  }, z.core.$strip>;
9503
9571
  }, z.core.$strip>, z.ZodObject<{
@@ -9894,6 +9962,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
9894
9962
  lastActiveAt: z.ZodOptional<z.ZodString>;
9895
9963
  isTest: z.ZodOptional<z.ZodBoolean>;
9896
9964
  isBillable: z.ZodOptional<z.ZodBoolean>;
9965
+ isActive: z.ZodOptional<z.ZodBoolean>;
9897
9966
  createdAt: z.ZodOptional<z.ZodString>;
9898
9967
  archivedAt: z.ZodOptional<z.ZodString>;
9899
9968
  }, z.core.$strip>>;
@@ -9907,6 +9976,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
9907
9976
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9908
9977
  integrationUuid: z.ZodOptional<z.ZodString>;
9909
9978
  parentUuid: z.ZodOptional<z.ZodString>;
9979
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
9910
9980
  connectionId: z.ZodOptional<z.ZodString>;
9911
9981
  dataSourceId: z.ZodOptional<z.ZodString>;
9912
9982
  universalDataSourceId: z.ZodOptional<z.ZodString>;
@@ -9945,6 +10015,8 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
9945
10015
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
9946
10016
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
9947
10017
  retryAttempts: z.ZodOptional<z.ZodNumber>;
10018
+ canTest: z.ZodOptional<z.ZodBoolean>;
10019
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
9948
10020
  archivedAt: z.ZodOptional<z.ZodString>;
9949
10021
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
9950
10022
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -9988,6 +10060,10 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
9988
10060
  oauth1: "oauth1";
9989
10061
  "client-credentials": "client-credentials";
9990
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>>>;
9991
10067
  }, z.core.$strip>>;
9992
10068
  path: z.ZodOptional<z.ZodString>;
9993
10069
  defaultPath: z.ZodOptional<z.ZodString>;
@@ -10094,6 +10170,8 @@ declare const FlowRunApiResponse: z.ZodObject<{
10094
10170
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
10095
10171
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
10096
10172
  retryAttempts: z.ZodOptional<z.ZodNumber>;
10173
+ canTest: z.ZodOptional<z.ZodBoolean>;
10174
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
10097
10175
  archivedAt: z.ZodOptional<z.ZodString>;
10098
10176
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
10099
10177
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -10137,6 +10215,10 @@ declare const FlowRunApiResponse: z.ZodObject<{
10137
10215
  oauth1: "oauth1";
10138
10216
  "client-credentials": "client-credentials";
10139
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>>>;
10140
10222
  }, z.core.$strip>>;
10141
10223
  user: z.ZodOptional<z.ZodObject<{
10142
10224
  id: z.ZodString;
@@ -10148,6 +10230,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
10148
10230
  lastActiveAt: z.ZodOptional<z.ZodString>;
10149
10231
  isTest: z.ZodOptional<z.ZodBoolean>;
10150
10232
  isBillable: z.ZodOptional<z.ZodBoolean>;
10233
+ isActive: z.ZodOptional<z.ZodBoolean>;
10151
10234
  createdAt: z.ZodOptional<z.ZodString>;
10152
10235
  archivedAt: z.ZodOptional<z.ZodString>;
10153
10236
  }, z.core.$strip>>;
@@ -10227,6 +10310,8 @@ declare const FindFlowRunsResponse: z.ZodObject<{
10227
10310
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
10228
10311
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
10229
10312
  retryAttempts: z.ZodOptional<z.ZodNumber>;
10313
+ canTest: z.ZodOptional<z.ZodBoolean>;
10314
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
10230
10315
  archivedAt: z.ZodOptional<z.ZodString>;
10231
10316
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
10232
10317
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -10270,6 +10355,10 @@ declare const FindFlowRunsResponse: z.ZodObject<{
10270
10355
  oauth1: "oauth1";
10271
10356
  "client-credentials": "client-credentials";
10272
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>>>;
10273
10362
  }, z.core.$strip>>;
10274
10363
  user: z.ZodOptional<z.ZodObject<{
10275
10364
  id: z.ZodString;
@@ -10281,6 +10370,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
10281
10370
  lastActiveAt: z.ZodOptional<z.ZodString>;
10282
10371
  isTest: z.ZodOptional<z.ZodBoolean>;
10283
10372
  isBillable: z.ZodOptional<z.ZodBoolean>;
10373
+ isActive: z.ZodOptional<z.ZodBoolean>;
10284
10374
  createdAt: z.ZodOptional<z.ZodString>;
10285
10375
  archivedAt: z.ZodOptional<z.ZodString>;
10286
10376
  }, z.core.$strip>>;
@@ -10301,6 +10391,7 @@ declare const FlowApiResponse: z.ZodObject<{
10301
10391
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10302
10392
  integrationUuid: z.ZodOptional<z.ZodString>;
10303
10393
  parentUuid: z.ZodOptional<z.ZodString>;
10394
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
10304
10395
  flowId: z.ZodOptional<z.ZodString>;
10305
10396
  universalFlowId: z.ZodOptional<z.ZodString>;
10306
10397
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -10378,6 +10469,10 @@ declare const FlowApiResponse: z.ZodObject<{
10378
10469
  oauth1: "oauth1";
10379
10470
  "client-credentials": "client-credentials";
10380
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>>>;
10381
10476
  }, z.core.$strip>>;
10382
10477
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
10383
10478
  element: z.ZodObject<{
@@ -10391,6 +10486,7 @@ declare const FlowApiResponse: z.ZodObject<{
10391
10486
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10392
10487
  integrationUuid: z.ZodOptional<z.ZodString>;
10393
10488
  parentUuid: z.ZodOptional<z.ZodString>;
10489
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
10394
10490
  flowId: z.ZodOptional<z.ZodString>;
10395
10491
  universalFlowId: z.ZodOptional<z.ZodString>;
10396
10492
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -10469,6 +10565,10 @@ declare const FlowApiResponse: z.ZodObject<{
10469
10565
  oauth1: "oauth1";
10470
10566
  "client-credentials": "client-credentials";
10471
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>>>;
10472
10572
  }, z.core.$strip>;
10473
10573
  }, z.core.$strip>>>;
10474
10574
  dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
@@ -10485,12 +10585,14 @@ declare const FindFlowsQuery: z.ZodObject<{
10485
10585
  connectionId: z.ZodOptional<z.ZodString>;
10486
10586
  integrationId: z.ZodOptional<z.ZodString>;
10487
10587
  integrationKey: z.ZodOptional<z.ZodString>;
10588
+ isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
10488
10589
  layer: z.ZodOptional<z.ZodEnum<{
10489
10590
  connection: "connection";
10490
10591
  integration: "integration";
10491
10592
  universal: "universal";
10492
10593
  }>>;
10493
10594
  universalParentId: z.ZodOptional<z.ZodString>;
10595
+ tenantId: z.ZodOptional<z.ZodString>;
10494
10596
  flowId: z.ZodOptional<z.ZodString>;
10495
10597
  universalFlowId: z.ZodOptional<z.ZodString>;
10496
10598
  }, z.core.$strip>;
@@ -10506,6 +10608,7 @@ declare const CreateFlowRequest: z.ZodObject<{
10506
10608
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10507
10609
  integrationUuid: z.ZodOptional<z.ZodString>;
10508
10610
  parentUuid: z.ZodOptional<z.ZodString>;
10611
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
10509
10612
  flowId: z.ZodOptional<z.ZodString>;
10510
10613
  universalFlowId: z.ZodOptional<z.ZodString>;
10511
10614
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -10547,6 +10650,7 @@ declare const UpdateFlowRequest: z.ZodObject<{
10547
10650
  meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
10548
10651
  integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10549
10652
  parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10653
+ isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
10550
10654
  flowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10551
10655
  universalFlowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
10552
10656
  parametersSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
@@ -10669,6 +10773,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10669
10773
  lastActiveAt?: string | undefined;
10670
10774
  isTest?: boolean | undefined;
10671
10775
  isBillable?: boolean | undefined;
10776
+ isActive?: boolean | undefined;
10672
10777
  createdAt?: string | undefined;
10673
10778
  archivedAt?: string | undefined;
10674
10779
  }, unknown, z.core.$ZodTypeInternals<{
@@ -10681,6 +10786,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10681
10786
  lastActiveAt?: string | undefined;
10682
10787
  isTest?: boolean | undefined;
10683
10788
  isBillable?: boolean | undefined;
10789
+ isActive?: boolean | undefined;
10684
10790
  createdAt?: string | undefined;
10685
10791
  archivedAt?: string | undefined;
10686
10792
  }, unknown>>>>;
@@ -10703,6 +10809,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10703
10809
  nextCredentialsRefreshAt?: string | undefined;
10704
10810
  nextRetryTimestamp?: string | undefined;
10705
10811
  retryAttempts?: number | undefined;
10812
+ canTest?: boolean | undefined;
10813
+ canRefreshCredentials?: boolean | undefined;
10706
10814
  archivedAt?: string | undefined;
10707
10815
  isDeactivated?: boolean | undefined;
10708
10816
  meta?: Record<string, any> | undefined;
@@ -10725,6 +10833,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10725
10833
  nextCredentialsRefreshAt?: string | undefined;
10726
10834
  nextRetryTimestamp?: string | undefined;
10727
10835
  retryAttempts?: number | undefined;
10836
+ canTest?: boolean | undefined;
10837
+ canRefreshCredentials?: boolean | undefined;
10728
10838
  archivedAt?: string | undefined;
10729
10839
  isDeactivated?: boolean | undefined;
10730
10840
  meta?: Record<string, any> | undefined;
@@ -10740,6 +10850,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10740
10850
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10741
10851
  integrationUuid: z.ZodOptional<z.ZodString>;
10742
10852
  parentUuid: z.ZodOptional<z.ZodString>;
10853
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
10743
10854
  flowId: z.ZodOptional<z.ZodString>;
10744
10855
  universalFlowId: z.ZodOptional<z.ZodString>;
10745
10856
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -10817,6 +10928,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10817
10928
  oauth1: "oauth1";
10818
10929
  "client-credentials": "client-credentials";
10819
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>>>;
10820
10935
  }, z.core.$strip>>;
10821
10936
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
10822
10937
  element: z.ZodObject<{
@@ -10830,6 +10945,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10830
10945
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10831
10946
  integrationUuid: z.ZodOptional<z.ZodString>;
10832
10947
  parentUuid: z.ZodOptional<z.ZodString>;
10948
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
10833
10949
  flowId: z.ZodOptional<z.ZodString>;
10834
10950
  universalFlowId: z.ZodOptional<z.ZodString>;
10835
10951
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -10908,6 +11024,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10908
11024
  oauth1: "oauth1";
10909
11025
  "client-credentials": "client-credentials";
10910
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>>>;
10911
11031
  }, z.core.$strip>;
10912
11032
  }, z.core.$strip>>>;
10913
11033
  dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
@@ -10944,6 +11064,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10944
11064
  appUuid?: string | undefined;
10945
11065
  isDeactivated?: boolean | undefined;
10946
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;
10947
11071
  }, unknown, z.core.$ZodTypeInternals<{
10948
11072
  id: string;
10949
11073
  name: string;
@@ -10976,6 +11100,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
10976
11100
  appUuid?: string | undefined;
10977
11101
  isDeactivated?: boolean | undefined;
10978
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;
10979
11107
  }, unknown>>>>;
10980
11108
  }, z.core.$strip>;
10981
11109
  type FlowInstanceApiResponse = z.infer<typeof FlowInstanceApiResponse>;
@@ -11007,6 +11135,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
11007
11135
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11008
11136
  integrationUuid: z.ZodOptional<z.ZodString>;
11009
11137
  parentUuid: z.ZodOptional<z.ZodString>;
11138
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
11010
11139
  connectionId: z.ZodOptional<z.ZodString>;
11011
11140
  dataSourceId: z.ZodOptional<z.ZodString>;
11012
11141
  universalDataSourceId: z.ZodOptional<z.ZodString>;
@@ -11064,6 +11193,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
11064
11193
  oauth1: "oauth1";
11065
11194
  "client-credentials": "client-credentials";
11066
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>>>;
11067
11200
  }, z.core.$strip>>;
11068
11201
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
11069
11202
  element: z.ZodObject<{
@@ -11076,6 +11209,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
11076
11209
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11077
11210
  integrationUuid: z.ZodOptional<z.ZodString>;
11078
11211
  parentUuid: z.ZodOptional<z.ZodString>;
11212
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
11079
11213
  connectionId: z.ZodOptional<z.ZodString>;
11080
11214
  dataSourceId: z.ZodOptional<z.ZodString>;
11081
11215
  universalDataSourceId: z.ZodOptional<z.ZodString>;
@@ -11134,6 +11268,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
11134
11268
  oauth1: "oauth1";
11135
11269
  "client-credentials": "client-credentials";
11136
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>>>;
11137
11275
  }, z.core.$strip>;
11138
11276
  }, z.core.$strip>>>;
11139
11277
  defaultPath: z.ZodOptional<z.ZodString>;
@@ -11150,12 +11288,14 @@ declare const FindDataSourcesQuery: z.ZodObject<{
11150
11288
  connectionId: z.ZodOptional<z.ZodString>;
11151
11289
  integrationId: z.ZodOptional<z.ZodString>;
11152
11290
  integrationKey: z.ZodOptional<z.ZodString>;
11291
+ isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
11153
11292
  layer: z.ZodOptional<z.ZodEnum<{
11154
11293
  connection: "connection";
11155
11294
  integration: "integration";
11156
11295
  universal: "universal";
11157
11296
  }>>;
11158
11297
  universalParentId: z.ZodOptional<z.ZodString>;
11298
+ tenantId: z.ZodOptional<z.ZodString>;
11159
11299
  dataSourceId: z.ZodOptional<z.ZodString>;
11160
11300
  universalDataSourceId: z.ZodOptional<z.ZodString>;
11161
11301
  }, z.core.$strip>;
@@ -11170,6 +11310,7 @@ declare const CreateDataSourceRequest: z.ZodObject<{
11170
11310
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11171
11311
  integrationUuid: z.ZodOptional<z.ZodString>;
11172
11312
  parentUuid: z.ZodOptional<z.ZodString>;
11313
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
11173
11314
  connectionId: z.ZodOptional<z.ZodString>;
11174
11315
  dataSourceId: z.ZodOptional<z.ZodString>;
11175
11316
  universalDataSourceId: z.ZodOptional<z.ZodString>;
@@ -11190,6 +11331,7 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
11190
11331
  meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
11191
11332
  integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11192
11333
  parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11334
+ isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
11193
11335
  connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11194
11336
  dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11195
11337
  universalDataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -11400,6 +11542,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11400
11542
  lastActiveAt: z.ZodOptional<z.ZodString>;
11401
11543
  isTest: z.ZodOptional<z.ZodBoolean>;
11402
11544
  isBillable: z.ZodOptional<z.ZodBoolean>;
11545
+ isActive: z.ZodOptional<z.ZodBoolean>;
11403
11546
  createdAt: z.ZodOptional<z.ZodString>;
11404
11547
  archivedAt: z.ZodOptional<z.ZodString>;
11405
11548
  }, z.core.$strip>>;
@@ -11422,6 +11565,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11422
11565
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
11423
11566
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
11424
11567
  retryAttempts: z.ZodOptional<z.ZodNumber>;
11568
+ canTest: z.ZodOptional<z.ZodBoolean>;
11569
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
11425
11570
  archivedAt: z.ZodOptional<z.ZodString>;
11426
11571
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
11427
11572
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -11465,6 +11610,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11465
11610
  oauth1: "oauth1";
11466
11611
  "client-credentials": "client-credentials";
11467
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>>>;
11468
11617
  }, z.core.$strip>>;
11469
11618
  fieldMapping: z.ZodOptional<z.ZodObject<{
11470
11619
  id: z.ZodString;
@@ -11476,6 +11625,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11476
11625
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11477
11626
  integrationUuid: z.ZodOptional<z.ZodString>;
11478
11627
  parentUuid: z.ZodOptional<z.ZodString>;
11628
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
11479
11629
  connectionId: z.ZodOptional<z.ZodString>;
11480
11630
  fieldMappingId: z.ZodOptional<z.ZodString>;
11481
11631
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
@@ -11649,6 +11799,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11649
11799
  lastActiveAt: z.ZodOptional<z.ZodString>;
11650
11800
  isTest: z.ZodOptional<z.ZodBoolean>;
11651
11801
  isBillable: z.ZodOptional<z.ZodBoolean>;
11802
+ isActive: z.ZodOptional<z.ZodBoolean>;
11652
11803
  createdAt: z.ZodOptional<z.ZodString>;
11653
11804
  archivedAt: z.ZodOptional<z.ZodString>;
11654
11805
  }, z.core.$strip>>;
@@ -11662,6 +11813,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11662
11813
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11663
11814
  integrationUuid: z.ZodOptional<z.ZodString>;
11664
11815
  parentUuid: z.ZodOptional<z.ZodString>;
11816
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
11665
11817
  connectionId: z.ZodOptional<z.ZodString>;
11666
11818
  dataSourceId: z.ZodOptional<z.ZodString>;
11667
11819
  universalDataSourceId: z.ZodOptional<z.ZodString>;
@@ -11700,6 +11852,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11700
11852
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
11701
11853
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
11702
11854
  retryAttempts: z.ZodOptional<z.ZodNumber>;
11855
+ canTest: z.ZodOptional<z.ZodBoolean>;
11856
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
11703
11857
  archivedAt: z.ZodOptional<z.ZodString>;
11704
11858
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
11705
11859
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -11743,6 +11897,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
11743
11897
  oauth1: "oauth1";
11744
11898
  "client-credentials": "client-credentials";
11745
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>>>;
11746
11904
  }, z.core.$strip>>;
11747
11905
  path: z.ZodOptional<z.ZodString>;
11748
11906
  defaultPath: z.ZodOptional<z.ZodString>;
@@ -11874,6 +12032,8 @@ declare class ConnectionAccessor {
11874
12032
  nextCredentialsRefreshAt?: string | undefined;
11875
12033
  nextRetryTimestamp?: string | undefined;
11876
12034
  retryAttempts?: number | undefined;
12035
+ canTest?: boolean | undefined;
12036
+ canRefreshCredentials?: boolean | undefined;
11877
12037
  archivedAt?: string | undefined;
11878
12038
  isDeactivated?: boolean | undefined;
11879
12039
  meta?: Record<string, any> | undefined;
@@ -11887,6 +12047,7 @@ declare class ConnectionAccessor {
11887
12047
  lastActiveAt?: string | undefined;
11888
12048
  isTest?: boolean | undefined;
11889
12049
  isBillable?: boolean | undefined;
12050
+ isActive?: boolean | undefined;
11890
12051
  createdAt?: string | undefined;
11891
12052
  archivedAt?: string | undefined;
11892
12053
  } | undefined;
@@ -11922,6 +12083,10 @@ declare class ConnectionAccessor {
11922
12083
  appUuid?: string | undefined;
11923
12084
  isDeactivated?: boolean | undefined;
11924
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;
11925
12090
  } | undefined;
11926
12091
  } | null>;
11927
12092
  openReconnectUI({}?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
@@ -12038,6 +12203,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
12038
12203
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
12039
12204
  integrationUuid: z.ZodOptional<z.ZodString>;
12040
12205
  parentUuid: z.ZodOptional<z.ZodString>;
12206
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
12041
12207
  connectionId: z.ZodOptional<z.ZodString>;
12042
12208
  fieldMappingId: z.ZodOptional<z.ZodString>;
12043
12209
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
@@ -12100,6 +12266,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
12100
12266
  oauth1: "oauth1";
12101
12267
  "client-credentials": "client-credentials";
12102
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>>>;
12103
12273
  }, z.core.$strip>>;
12104
12274
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
12105
12275
  element: z.ZodObject<{
@@ -12112,6 +12282,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
12112
12282
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
12113
12283
  integrationUuid: z.ZodOptional<z.ZodString>;
12114
12284
  parentUuid: z.ZodOptional<z.ZodString>;
12285
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
12115
12286
  connectionId: z.ZodOptional<z.ZodString>;
12116
12287
  fieldMappingId: z.ZodOptional<z.ZodString>;
12117
12288
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
@@ -12175,6 +12346,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
12175
12346
  oauth1: "oauth1";
12176
12347
  "client-credentials": "client-credentials";
12177
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>>>;
12178
12353
  }, z.core.$strip>;
12179
12354
  }, z.core.$strip>>>;
12180
12355
  }, z.core.$strip>;
@@ -12190,12 +12365,14 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
12190
12365
  connectionId: z.ZodOptional<z.ZodString>;
12191
12366
  integrationId: z.ZodOptional<z.ZodString>;
12192
12367
  integrationKey: z.ZodOptional<z.ZodString>;
12368
+ isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
12193
12369
  layer: z.ZodOptional<z.ZodEnum<{
12194
12370
  connection: "connection";
12195
12371
  integration: "integration";
12196
12372
  universal: "universal";
12197
12373
  }>>;
12198
12374
  universalParentId: z.ZodOptional<z.ZodString>;
12375
+ tenantId: z.ZodOptional<z.ZodString>;
12199
12376
  fieldMappingId: z.ZodOptional<z.ZodString>;
12200
12377
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
12201
12378
  }, z.core.$strip>;
@@ -12210,6 +12387,7 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
12210
12387
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
12211
12388
  integrationUuid: z.ZodOptional<z.ZodString>;
12212
12389
  parentUuid: z.ZodOptional<z.ZodString>;
12390
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
12213
12391
  connectionId: z.ZodOptional<z.ZodString>;
12214
12392
  fieldMappingId: z.ZodOptional<z.ZodString>;
12215
12393
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
@@ -12235,6 +12413,7 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
12235
12413
  meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
12236
12414
  integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12237
12415
  parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12416
+ isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
12238
12417
  connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12239
12418
  fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12240
12419
  universalFieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -12289,6 +12468,11 @@ declare const CreateIntegrationRequest: z.ZodObject<{
12289
12468
  connectorVersion: z.ZodOptional<z.ZodString>;
12290
12469
  connectorId: z.ZodOptional<z.ZodString>;
12291
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>>>;
12292
12476
  }, z.core.$strip>;
12293
12477
  type CreateIntegrationRequest = z.infer<typeof CreateIntegrationRequest>;
12294
12478
  declare const UpdateIntegrationRequest: z.ZodObject<{
@@ -12304,6 +12488,11 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
12304
12488
  connectorVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12305
12489
  connectorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12306
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>>>>;
12307
12496
  }, z.core.$strip>;
12308
12497
  type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
12309
12498
  declare const FindIntegrationsQuery: z.ZodObject<{
@@ -12382,6 +12571,10 @@ declare const IntegrationApiResponse: z.ZodObject<{
12382
12571
  oauth1: "oauth1";
12383
12572
  "client-credentials": "client-credentials";
12384
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>>>;
12385
12578
  connection: z.ZodOptional<z.ZodObject<{
12386
12579
  id: z.ZodString;
12387
12580
  name: z.ZodString;
@@ -12401,6 +12594,8 @@ declare const IntegrationApiResponse: z.ZodObject<{
12401
12594
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
12402
12595
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
12403
12596
  retryAttempts: z.ZodOptional<z.ZodNumber>;
12597
+ canTest: z.ZodOptional<z.ZodBoolean>;
12598
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
12404
12599
  archivedAt: z.ZodOptional<z.ZodString>;
12405
12600
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
12406
12601
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -12483,6 +12678,8 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
12483
12678
  nextCredentialsRefreshAt?: string | undefined;
12484
12679
  nextRetryTimestamp?: string | undefined;
12485
12680
  retryAttempts?: number | undefined;
12681
+ canTest?: boolean | undefined;
12682
+ canRefreshCredentials?: boolean | undefined;
12486
12683
  archivedAt?: string | undefined;
12487
12684
  isDeactivated?: boolean | undefined;
12488
12685
  meta?: Record<string, any> | undefined;
@@ -12496,6 +12693,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
12496
12693
  lastActiveAt?: string | undefined;
12497
12694
  isTest?: boolean | undefined;
12498
12695
  isBillable?: boolean | undefined;
12696
+ isActive?: boolean | undefined;
12499
12697
  createdAt?: string | undefined;
12500
12698
  archivedAt?: string | undefined;
12501
12699
  } | undefined;
@@ -12531,6 +12729,10 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
12531
12729
  appUuid?: string | undefined;
12532
12730
  isDeactivated?: boolean | undefined;
12533
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;
12534
12736
  } | undefined;
12535
12737
  } | null>;
12536
12738
  createConnection({ parameters, name, }: {
@@ -12565,7 +12767,9 @@ declare const FindPackagesQuery: z.ZodObject<{
12565
12767
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
12566
12768
  parentId: z.ZodOptional<z.ZodString>;
12567
12769
  universalParentId: z.ZodOptional<z.ZodString>;
12770
+ tenantId: z.ZodOptional<z.ZodString>;
12568
12771
  userId: z.ZodOptional<z.ZodString>;
12772
+ isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
12569
12773
  externalAppId: z.ZodOptional<z.ZodString>;
12570
12774
  }, z.core.$strip>;
12571
12775
  type FindPackagesQuery = z.infer<typeof FindPackagesQuery>;
@@ -12581,6 +12785,7 @@ declare const CreatePackageRequest: z.ZodObject<{
12581
12785
  parentUuid: z.ZodOptional<z.ZodString>;
12582
12786
  connectionId: z.ZodOptional<z.ZodString>;
12583
12787
  instanceKey: z.ZodOptional<z.ZodString>;
12788
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
12584
12789
  scenarioTemplateId: z.ZodOptional<z.ZodString>;
12585
12790
  externalAppId: z.ZodOptional<z.ZodString>;
12586
12791
  elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -12602,6 +12807,7 @@ declare const UpdatePackageRequest: z.ZodObject<{
12602
12807
  parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12603
12808
  connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12604
12809
  instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12810
+ isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
12605
12811
  scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12606
12812
  externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
12607
12813
  elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -12629,6 +12835,7 @@ declare const PackageApiResponse: z.ZodObject<{
12629
12835
  parentUuid: z.ZodOptional<z.ZodString>;
12630
12836
  connectionId: z.ZodOptional<z.ZodString>;
12631
12837
  instanceKey: z.ZodOptional<z.ZodString>;
12838
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
12632
12839
  scenarioTemplateId: z.ZodOptional<z.ZodString>;
12633
12840
  externalAppId: z.ZodOptional<z.ZodString>;
12634
12841
  key: z.ZodString;
@@ -12662,6 +12869,7 @@ declare const PackageApiResponse: z.ZodObject<{
12662
12869
  parentUuid: z.ZodOptional<z.ZodString>;
12663
12870
  connectionId: z.ZodOptional<z.ZodString>;
12664
12871
  instanceKey: z.ZodOptional<z.ZodString>;
12872
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
12665
12873
  scenarioTemplateId: z.ZodOptional<z.ZodString>;
12666
12874
  externalAppId: z.ZodOptional<z.ZodString>;
12667
12875
  elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -12713,6 +12921,10 @@ declare const PackageApiResponse: z.ZodObject<{
12713
12921
  oauth1: "oauth1";
12714
12922
  "client-credentials": "client-credentials";
12715
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>>>;
12716
12928
  }, z.core.$strip>;
12717
12929
  }, z.core.$strip>>>;
12718
12930
  }, z.core.$strip>;
@@ -12818,6 +13030,7 @@ declare const CustomerApiResponse: z.ZodObject<{
12818
13030
  lastActiveAt: z.ZodOptional<z.ZodString>;
12819
13031
  isTest: z.ZodOptional<z.ZodBoolean>;
12820
13032
  isBillable: z.ZodOptional<z.ZodBoolean>;
13033
+ isActive: z.ZodOptional<z.ZodBoolean>;
12821
13034
  createdAt: z.ZodOptional<z.ZodString>;
12822
13035
  archivedAt: z.ZodOptional<z.ZodString>;
12823
13036
  }, z.core.$strip>;
@@ -12999,6 +13212,8 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
12999
13212
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
13000
13213
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
13001
13214
  retryAttempts: z.ZodOptional<z.ZodNumber>;
13215
+ canTest: z.ZodOptional<z.ZodBoolean>;
13216
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
13002
13217
  archivedAt: z.ZodOptional<z.ZodString>;
13003
13218
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
13004
13219
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -13042,6 +13257,10 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
13042
13257
  oauth1: "oauth1";
13043
13258
  "client-credentials": "client-credentials";
13044
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>>>;
13045
13264
  }, z.core.$strip>>;
13046
13265
  user: z.ZodOptional<z.ZodObject<{
13047
13266
  id: z.ZodString;
@@ -13053,6 +13272,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
13053
13272
  lastActiveAt: z.ZodOptional<z.ZodString>;
13054
13273
  isTest: z.ZodOptional<z.ZodBoolean>;
13055
13274
  isBillable: z.ZodOptional<z.ZodBoolean>;
13275
+ isActive: z.ZodOptional<z.ZodBoolean>;
13056
13276
  createdAt: z.ZodOptional<z.ZodString>;
13057
13277
  archivedAt: z.ZodOptional<z.ZodString>;
13058
13278
  }, z.core.$strip>>;
@@ -13169,6 +13389,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
13169
13389
  lastActiveAt: z.ZodOptional<z.ZodString>;
13170
13390
  isTest: z.ZodOptional<z.ZodBoolean>;
13171
13391
  isBillable: z.ZodOptional<z.ZodBoolean>;
13392
+ isActive: z.ZodOptional<z.ZodBoolean>;
13172
13393
  createdAt: z.ZodOptional<z.ZodString>;
13173
13394
  archivedAt: z.ZodOptional<z.ZodString>;
13174
13395
  }, z.core.$strip>>;
@@ -13239,6 +13460,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
13239
13460
  lastActiveAt: z.ZodOptional<z.ZodString>;
13240
13461
  isTest: z.ZodOptional<z.ZodBoolean>;
13241
13462
  isBillable: z.ZodOptional<z.ZodBoolean>;
13463
+ isActive: z.ZodOptional<z.ZodBoolean>;
13242
13464
  createdAt: z.ZodOptional<z.ZodString>;
13243
13465
  archivedAt: z.ZodOptional<z.ZodString>;
13244
13466
  }, z.core.$strip>>;
@@ -13328,6 +13550,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
13328
13550
  lastActiveAt: z.ZodOptional<z.ZodString>;
13329
13551
  isTest: z.ZodOptional<z.ZodBoolean>;
13330
13552
  isBillable: z.ZodOptional<z.ZodBoolean>;
13553
+ isActive: z.ZodOptional<z.ZodBoolean>;
13331
13554
  createdAt: z.ZodOptional<z.ZodString>;
13332
13555
  archivedAt: z.ZodOptional<z.ZodString>;
13333
13556
  }, z.core.$strip>>;
@@ -13350,6 +13573,8 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
13350
13573
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
13351
13574
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
13352
13575
  retryAttempts: z.ZodOptional<z.ZodNumber>;
13576
+ canTest: z.ZodOptional<z.ZodBoolean>;
13577
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
13353
13578
  archivedAt: z.ZodOptional<z.ZodString>;
13354
13579
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
13355
13580
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -13393,6 +13618,10 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
13393
13618
  oauth1: "oauth1";
13394
13619
  "client-credentials": "client-credentials";
13395
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>>>;
13396
13625
  }, z.core.$strip>>;
13397
13626
  }, z.core.$strip>;
13398
13627
  type ExternalEventSubscriptionApiResponse = z.infer<typeof ExternalEventSubscriptionApiResponse>;
@@ -13528,6 +13757,10 @@ declare const ExternalEvent: z.ZodObject<{
13528
13757
  oauth1: "oauth1";
13529
13758
  "client-credentials": "client-credentials";
13530
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>>>;
13531
13764
  }, z.core.$strip>;
13532
13765
  }, z.core.$strip>>>;
13533
13766
  }, z.core.$strip>;
@@ -13560,6 +13793,7 @@ declare const ActionApiResponse: z.ZodObject<{
13560
13793
  integrationUuid: z.ZodOptional<z.ZodString>;
13561
13794
  parentId: z.ZodOptional<z.ZodString>;
13562
13795
  parentUuid: z.ZodOptional<z.ZodString>;
13796
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13563
13797
  connectionId: z.ZodOptional<z.ZodString>;
13564
13798
  instanceKey: z.ZodOptional<z.ZodString>;
13565
13799
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13617,6 +13851,10 @@ declare const ActionApiResponse: z.ZodObject<{
13617
13851
  oauth1: "oauth1";
13618
13852
  "client-credentials": "client-credentials";
13619
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>>>;
13620
13858
  }, z.core.$strip>>;
13621
13859
  user: z.ZodOptional<z.ZodObject<{
13622
13860
  id: z.ZodString;
@@ -13628,6 +13866,7 @@ declare const ActionApiResponse: z.ZodObject<{
13628
13866
  lastActiveAt: z.ZodOptional<z.ZodString>;
13629
13867
  isTest: z.ZodOptional<z.ZodBoolean>;
13630
13868
  isBillable: z.ZodOptional<z.ZodBoolean>;
13869
+ isActive: z.ZodOptional<z.ZodBoolean>;
13631
13870
  createdAt: z.ZodOptional<z.ZodString>;
13632
13871
  archivedAt: z.ZodOptional<z.ZodString>;
13633
13872
  }, z.core.$strip>>;
@@ -13641,6 +13880,7 @@ declare const ActionApiResponse: z.ZodObject<{
13641
13880
  integrationUuid: z.ZodOptional<z.ZodString>;
13642
13881
  parentId: z.ZodOptional<z.ZodString>;
13643
13882
  parentUuid: z.ZodOptional<z.ZodString>;
13883
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13644
13884
  connectionId: z.ZodOptional<z.ZodString>;
13645
13885
  instanceKey: z.ZodOptional<z.ZodString>;
13646
13886
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13672,6 +13912,7 @@ declare const ActionApiResponse: z.ZodObject<{
13672
13912
  integrationUuid: z.ZodOptional<z.ZodString>;
13673
13913
  parentId: z.ZodOptional<z.ZodString>;
13674
13914
  parentUuid: z.ZodOptional<z.ZodString>;
13915
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13675
13916
  connectionId: z.ZodOptional<z.ZodString>;
13676
13917
  instanceKey: z.ZodOptional<z.ZodString>;
13677
13918
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13731,6 +13972,10 @@ declare const ActionApiResponse: z.ZodObject<{
13731
13972
  oauth1: "oauth1";
13732
13973
  "client-credentials": "client-credentials";
13733
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>>>;
13734
13979
  }, z.core.$strip>;
13735
13980
  }, z.core.$strip>>>;
13736
13981
  defaultOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13756,7 +14001,9 @@ declare const FindActionsQuery: z.ZodObject<{
13756
14001
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
13757
14002
  parentId: z.ZodOptional<z.ZodString>;
13758
14003
  universalParentId: z.ZodOptional<z.ZodString>;
14004
+ tenantId: z.ZodOptional<z.ZodString>;
13759
14005
  userId: z.ZodOptional<z.ZodString>;
14006
+ isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
13760
14007
  externalAppId: z.ZodOptional<z.ZodString>;
13761
14008
  }, z.core.$strip>;
13762
14009
  type FindActionsQuery = z.infer<typeof FindActionsQuery>;
@@ -13770,6 +14017,7 @@ declare const CreateActionRequest: z.ZodObject<{
13770
14017
  integrationUuid: z.ZodOptional<z.ZodString>;
13771
14018
  parentId: z.ZodOptional<z.ZodString>;
13772
14019
  parentUuid: z.ZodOptional<z.ZodString>;
14020
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13773
14021
  connectionId: z.ZodOptional<z.ZodString>;
13774
14022
  instanceKey: z.ZodOptional<z.ZodString>;
13775
14023
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13789,6 +14037,7 @@ declare const UpdateActionRequest: z.ZodObject<{
13789
14037
  integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13790
14038
  parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13791
14039
  parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14040
+ isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
13792
14041
  connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13793
14042
  instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13794
14043
  inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
@@ -13808,6 +14057,7 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
13808
14057
  integrationUuid: z.ZodOptional<z.ZodString>;
13809
14058
  parentId: z.ZodOptional<z.ZodString>;
13810
14059
  parentUuid: z.ZodOptional<z.ZodString>;
14060
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13811
14061
  connectionId: z.ZodOptional<z.ZodString>;
13812
14062
  instanceKey: z.ZodOptional<z.ZodString>;
13813
14063
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13827,6 +14077,7 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
13827
14077
  integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13828
14078
  parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13829
14079
  parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
14080
+ isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
13830
14081
  connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13831
14082
  instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
13832
14083
  inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
@@ -13857,6 +14108,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
13857
14108
  integrationUuid: z.ZodOptional<z.ZodString>;
13858
14109
  parentId: z.ZodOptional<z.ZodString>;
13859
14110
  parentUuid: z.ZodOptional<z.ZodString>;
14111
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13860
14112
  connectionId: z.ZodOptional<z.ZodString>;
13861
14113
  instanceKey: z.ZodOptional<z.ZodString>;
13862
14114
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13914,6 +14166,10 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
13914
14166
  oauth1: "oauth1";
13915
14167
  "client-credentials": "client-credentials";
13916
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>>>;
13917
14173
  }, z.core.$strip>>;
13918
14174
  user: z.ZodOptional<z.ZodObject<{
13919
14175
  id: z.ZodString;
@@ -13925,6 +14181,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
13925
14181
  lastActiveAt: z.ZodOptional<z.ZodString>;
13926
14182
  isTest: z.ZodOptional<z.ZodBoolean>;
13927
14183
  isBillable: z.ZodOptional<z.ZodBoolean>;
14184
+ isActive: z.ZodOptional<z.ZodBoolean>;
13928
14185
  createdAt: z.ZodOptional<z.ZodString>;
13929
14186
  archivedAt: z.ZodOptional<z.ZodString>;
13930
14187
  }, z.core.$strip>>;
@@ -13938,6 +14195,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
13938
14195
  integrationUuid: z.ZodOptional<z.ZodString>;
13939
14196
  parentId: z.ZodOptional<z.ZodString>;
13940
14197
  parentUuid: z.ZodOptional<z.ZodString>;
14198
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13941
14199
  connectionId: z.ZodOptional<z.ZodString>;
13942
14200
  instanceKey: z.ZodOptional<z.ZodString>;
13943
14201
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -13969,6 +14227,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
13969
14227
  integrationUuid: z.ZodOptional<z.ZodString>;
13970
14228
  parentId: z.ZodOptional<z.ZodString>;
13971
14229
  parentUuid: z.ZodOptional<z.ZodString>;
14230
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
13972
14231
  connectionId: z.ZodOptional<z.ZodString>;
13973
14232
  instanceKey: z.ZodOptional<z.ZodString>;
13974
14233
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -14028,6 +14287,10 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
14028
14287
  oauth1: "oauth1";
14029
14288
  "client-credentials": "client-credentials";
14030
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>>>;
14031
14294
  }, z.core.$strip>;
14032
14295
  }, z.core.$strip>>>;
14033
14296
  defaultOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -14055,7 +14318,9 @@ declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
14055
14318
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
14056
14319
  parentId: z.ZodOptional<z.ZodString>;
14057
14320
  universalParentId: z.ZodOptional<z.ZodString>;
14321
+ tenantId: z.ZodOptional<z.ZodString>;
14058
14322
  userId: z.ZodOptional<z.ZodString>;
14323
+ isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
14059
14324
  externalAppId: z.ZodOptional<z.ZodString>;
14060
14325
  }, z.core.$strip>;
14061
14326
  type ListActionInstancesForConnectionQuery = FindActionsQuery;
@@ -14075,7 +14340,9 @@ declare const FindActionInstancesQuery: z.ZodObject<{
14075
14340
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
14076
14341
  parentId: z.ZodOptional<z.ZodString>;
14077
14342
  universalParentId: z.ZodOptional<z.ZodString>;
14343
+ tenantId: z.ZodOptional<z.ZodString>;
14078
14344
  userId: z.ZodOptional<z.ZodString>;
14345
+ isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
14079
14346
  externalAppId: z.ZodOptional<z.ZodString>;
14080
14347
  }, z.core.$strip>;
14081
14348
  type FindActionInstancesQuery = FindActionsQuery;
@@ -14107,6 +14374,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
14107
14374
  integrationUuid: z.ZodOptional<z.ZodString>;
14108
14375
  parentId: z.ZodOptional<z.ZodString>;
14109
14376
  parentUuid: z.ZodOptional<z.ZodString>;
14377
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
14110
14378
  connectionId: z.ZodOptional<z.ZodString>;
14111
14379
  instanceKey: z.ZodOptional<z.ZodString>;
14112
14380
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -14137,6 +14405,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
14137
14405
  integrationUuid: z.ZodOptional<z.ZodString>;
14138
14406
  parentId: z.ZodOptional<z.ZodString>;
14139
14407
  parentUuid: z.ZodOptional<z.ZodString>;
14408
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
14140
14409
  connectionId: z.ZodOptional<z.ZodString>;
14141
14410
  instanceKey: z.ZodOptional<z.ZodString>;
14142
14411
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -14196,6 +14465,10 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
14196
14465
  oauth1: "oauth1";
14197
14466
  "client-credentials": "client-credentials";
14198
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>>>;
14199
14472
  }, z.core.$strip>>;
14200
14473
  connection: z.ZodOptional<z.ZodObject<{
14201
14474
  id: z.ZodString;
@@ -14216,6 +14489,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
14216
14489
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
14217
14490
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
14218
14491
  retryAttempts: z.ZodOptional<z.ZodNumber>;
14492
+ canTest: z.ZodOptional<z.ZodBoolean>;
14493
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
14219
14494
  archivedAt: z.ZodOptional<z.ZodString>;
14220
14495
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
14221
14496
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -14230,6 +14505,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
14230
14505
  lastActiveAt: z.ZodOptional<z.ZodString>;
14231
14506
  isTest: z.ZodOptional<z.ZodBoolean>;
14232
14507
  isBillable: z.ZodOptional<z.ZodBoolean>;
14508
+ isActive: z.ZodOptional<z.ZodBoolean>;
14233
14509
  createdAt: z.ZodOptional<z.ZodString>;
14234
14510
  archivedAt: z.ZodOptional<z.ZodString>;
14235
14511
  }, z.core.$strip>>;
@@ -14273,6 +14549,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
14273
14549
  integrationUuid: z.ZodOptional<z.ZodString>;
14274
14550
  parentId: z.ZodOptional<z.ZodString>;
14275
14551
  parentUuid: z.ZodOptional<z.ZodString>;
14552
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
14276
14553
  connectionId: z.ZodOptional<z.ZodString>;
14277
14554
  instanceKey: z.ZodOptional<z.ZodString>;
14278
14555
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -14303,6 +14580,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
14303
14580
  integrationUuid: z.ZodOptional<z.ZodString>;
14304
14581
  parentId: z.ZodOptional<z.ZodString>;
14305
14582
  parentUuid: z.ZodOptional<z.ZodString>;
14583
+ isUniversal: z.ZodOptional<z.ZodBoolean>;
14306
14584
  connectionId: z.ZodOptional<z.ZodString>;
14307
14585
  instanceKey: z.ZodOptional<z.ZodString>;
14308
14586
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
@@ -14362,6 +14640,10 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
14362
14640
  oauth1: "oauth1";
14363
14641
  "client-credentials": "client-credentials";
14364
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>>>;
14365
14647
  }, z.core.$strip>>;
14366
14648
  connection: z.ZodOptional<z.ZodObject<{
14367
14649
  id: z.ZodString;
@@ -14382,6 +14664,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
14382
14664
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
14383
14665
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
14384
14666
  retryAttempts: z.ZodOptional<z.ZodNumber>;
14667
+ canTest: z.ZodOptional<z.ZodBoolean>;
14668
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
14385
14669
  archivedAt: z.ZodOptional<z.ZodString>;
14386
14670
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
14387
14671
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -14396,6 +14680,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
14396
14680
  lastActiveAt: z.ZodOptional<z.ZodString>;
14397
14681
  isTest: z.ZodOptional<z.ZodBoolean>;
14398
14682
  isBillable: z.ZodOptional<z.ZodBoolean>;
14683
+ isActive: z.ZodOptional<z.ZodBoolean>;
14399
14684
  createdAt: z.ZodOptional<z.ZodString>;
14400
14685
  archivedAt: z.ZodOptional<z.ZodString>;
14401
14686
  }, z.core.$strip>>;
@@ -14597,6 +14882,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
14597
14882
  lastActiveAt: z.ZodOptional<z.ZodString>;
14598
14883
  isTest: z.ZodOptional<z.ZodBoolean>;
14599
14884
  isBillable: z.ZodOptional<z.ZodBoolean>;
14885
+ isActive: z.ZodOptional<z.ZodBoolean>;
14600
14886
  createdAt: z.ZodOptional<z.ZodString>;
14601
14887
  archivedAt: z.ZodOptional<z.ZodString>;
14602
14888
  }, z.core.$strip>>;
@@ -14676,6 +14962,10 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
14676
14962
  oauth1: "oauth1";
14677
14963
  "client-credentials": "client-credentials";
14678
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>>>;
14679
14969
  }, z.core.$strip>>;
14680
14970
  connection: z.ZodOptional<z.ZodObject<{
14681
14971
  id: z.ZodString;
@@ -14696,6 +14986,8 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
14696
14986
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
14697
14987
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
14698
14988
  retryAttempts: z.ZodOptional<z.ZodNumber>;
14989
+ canTest: z.ZodOptional<z.ZodBoolean>;
14990
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
14699
14991
  archivedAt: z.ZodOptional<z.ZodString>;
14700
14992
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
14701
14993
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -14749,6 +15041,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
14749
15041
  lastActiveAt: z.ZodOptional<z.ZodString>;
14750
15042
  isTest: z.ZodOptional<z.ZodBoolean>;
14751
15043
  isBillable: z.ZodOptional<z.ZodBoolean>;
15044
+ isActive: z.ZodOptional<z.ZodBoolean>;
14752
15045
  createdAt: z.ZodOptional<z.ZodString>;
14753
15046
  archivedAt: z.ZodOptional<z.ZodString>;
14754
15047
  }, z.core.$strip>>;
@@ -14828,6 +15121,10 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
14828
15121
  oauth1: "oauth1";
14829
15122
  "client-credentials": "client-credentials";
14830
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>>>;
14831
15128
  }, z.core.$strip>>;
14832
15129
  connection: z.ZodOptional<z.ZodObject<{
14833
15130
  id: z.ZodString;
@@ -14848,6 +15145,8 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
14848
15145
  nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
14849
15146
  nextRetryTimestamp: z.ZodOptional<z.ZodString>;
14850
15147
  retryAttempts: z.ZodOptional<z.ZodNumber>;
15148
+ canTest: z.ZodOptional<z.ZodBoolean>;
15149
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
14851
15150
  archivedAt: z.ZodOptional<z.ZodString>;
14852
15151
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
14853
15152
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -14870,6 +15169,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
14870
15169
  lastActiveAt: z.ZodOptional<z.ZodString>;
14871
15170
  isTest: z.ZodOptional<z.ZodBoolean>;
14872
15171
  isBillable: z.ZodOptional<z.ZodBoolean>;
15172
+ isActive: z.ZodOptional<z.ZodBoolean>;
14873
15173
  createdAt: z.ZodOptional<z.ZodString>;
14874
15174
  archivedAt: z.ZodOptional<z.ZodString>;
14875
15175
  }, z.core.$strip>>;
@@ -15028,6 +15328,15 @@ declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
15028
15328
 
15029
15329
  declare function setEditablePropertiesForWorkspaceElement<T extends Record<string, unknown>>(currentElement: T, newEditableFields: Record<string, unknown>, exportSchema: z.ZodTypeAny): T;
15030
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
+
15031
15340
  interface WorkspaceElementSpec {
15032
15341
  type: WorkspaceElementType;
15033
15342
  apiPath: string;
@@ -15082,12 +15391,17 @@ declare enum AlertType {
15082
15391
  workspaceElementCreationsPerSecond = "workspaceElementCreationsPerSecond",
15083
15392
  workspaceElementCreationsPerHour = "workspaceElementCreationsPerHour",
15084
15393
  externalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay",
15394
+ apiRequestsPerCustomerPerSecond = "apiRequestsPerCustomerPerSecond",
15395
+ apiRequestsPerCustomerPerHour = "apiRequestsPerCustomerPerHour",
15396
+ webhookRequestsPerCustomerPerSecond = "webhookRequestsPerCustomerPerSecond",
15397
+ webhookRequestsPerCustomerPerHour = "webhookRequestsPerCustomerPerHour",
15085
15398
  totalUsagePerDay = "totalUsagePerDay",
15086
15399
  totalUsagePer30Days = "totalUsagePer30Days",
15087
15400
  testAlert = "testAlert"
15088
15401
  }
15089
15402
  declare enum AlertCategory {
15090
15403
  RATE_LIMIT = "rateLimit",
15404
+ CUSTOMER_RATE_LIMIT = "customerRateLimit",
15091
15405
  USAGE = "usage",
15092
15406
  TEST = "test"
15093
15407
  }
@@ -15100,6 +15414,10 @@ declare const ALERT_TYPE_CATEGORIES: {
15100
15414
  readonly workspaceElementCreationsPerSecond: AlertCategory.RATE_LIMIT;
15101
15415
  readonly workspaceElementCreationsPerHour: AlertCategory.RATE_LIMIT;
15102
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;
15103
15421
  readonly totalUsagePerDay: AlertCategory.USAGE;
15104
15422
  readonly totalUsagePer30Days: AlertCategory.USAGE;
15105
15423
  readonly testAlert: AlertCategory.TEST;
@@ -15108,6 +15426,7 @@ type AlertsByCategory<C extends AlertCategory> = {
15108
15426
  [K in keyof typeof ALERT_TYPE_CATEGORIES]: (typeof ALERT_TYPE_CATEGORIES)[K] extends C ? K : never;
15109
15427
  }[keyof typeof ALERT_TYPE_CATEGORIES];
15110
15428
  type RateLimitAlerts = AlertsByCategory<AlertCategory.RATE_LIMIT>;
15429
+ type CustomerRateLimitAlerts = AlertsByCategory<AlertCategory.CUSTOMER_RATE_LIMIT>;
15111
15430
  type UsageAlerts = AlertsByCategory<AlertCategory.USAGE>;
15112
15431
  type TestAlerts = AlertsByCategory<AlertCategory.TEST>;
15113
15432
  declare const AlertSchema: z.ZodObject<{
@@ -15126,6 +15445,10 @@ declare const AlertSchema: z.ZodObject<{
15126
15445
  workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
15127
15446
  workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
15128
15447
  externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
15448
+ apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
15449
+ apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
15450
+ webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
15451
+ webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
15129
15452
  totalUsagePerDay: AlertType.totalUsagePerDay;
15130
15453
  totalUsagePer30Days: AlertType.totalUsagePer30Days;
15131
15454
  testAlert: AlertType.testAlert;
@@ -15169,6 +15492,10 @@ declare const AlertDeliverySettingsSchema: z.ZodObject<{
15169
15492
  workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
15170
15493
  workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
15171
15494
  externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
15495
+ apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
15496
+ apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
15497
+ webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
15498
+ webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
15172
15499
  totalUsagePerDay: AlertType.totalUsagePerDay;
15173
15500
  totalUsagePer30Days: AlertType.totalUsagePer30Days;
15174
15501
  testAlert: AlertType.testAlert;
@@ -15213,7 +15540,7 @@ declare enum WorkspaceNotificationType {
15213
15540
  CopilotActivity = "copilot-activity",
15214
15541
  LocalClientUpdate = "local-client-update"
15215
15542
  }
15216
- declare const enum ParallelExecutionLimits {
15543
+ declare enum ParallelExecutionLimits {
15217
15544
  ParallelEventPulls = "parallelEventPulls",
15218
15545
  ParallelIncrementalEventPullsPerConnection = "parallelIncrementalEventPullsPerConnection",
15219
15546
  ParallelFullSyncEventPullsPerConnection = "parallelFullSyncEventPullsPerConnection",
@@ -15227,7 +15554,7 @@ declare const enum ParallelExecutionLimits {
15227
15554
  ParallelPathfinderAgentSessions = "parallelPathfinderAgentSessions",
15228
15555
  ParallelInstantTasksActiveJobs = "parallelInstantTasksActiveJobs"
15229
15556
  }
15230
- declare const enum RateLimits {
15557
+ declare enum RateLimits {
15231
15558
  fileUploadsMbPerHour = "fileUploadsMbPerHour",
15232
15559
  ApiRequestsPerSecond = "apiRequestsPerSecond",
15233
15560
  ApiRequestsPerHour = "apiRequestsPerHour",
@@ -15237,14 +15564,14 @@ declare const enum RateLimits {
15237
15564
  WorkspaceElementCreationsPerHour = "workspaceElementCreationsPerHour",
15238
15565
  ExternalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay"
15239
15566
  }
15240
- declare const enum WorkspaceSizeLimits {
15567
+ declare enum WorkspaceSizeLimits {
15241
15568
  TotalNumberOfCustomers = "totalNumberOfCustomers",
15242
15569
  TotalNumberOfConnections = "totalNumberOfConnections",
15243
15570
  TotalNumberOfWorkspaceElements = "totalNumberOfWorkspaceElements",
15244
15571
  InstantTasksQueueSize = "instantTasksQueueSize",
15245
15572
  QueuedTasksQueueSize = "queuedTasksQueueSize"
15246
15573
  }
15247
- declare const enum CustomerLimits {
15574
+ declare enum CustomerLimits {
15248
15575
  ParallelApiRequestsPerCustomer = "parallelApiRequestsPerCustomer",
15249
15576
  ParallelBackgroundJobsPerCustomer = "parallelBackgroundJobsPerCustomer",
15250
15577
  ApiRequestsPerCustomerPerSecond = "apiRequestsPerCustomerPerSecond",
@@ -15330,6 +15657,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
15330
15657
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15331
15658
  unit: z$1.ZodEnum<typeof LimitUnits>;
15332
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>>;
15333
15665
  ParallelWriteDatabaseRequests: z$1.ZodOptional<z$1.ZodObject<{
15334
15666
  value: z$1.ZodOptional<z$1.ZodNumber>;
15335
15667
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
@@ -15462,6 +15794,13 @@ interface WorkspaceExport {
15462
15794
  [WorkspaceElementType.Flow]: FlowExportProperties[];
15463
15795
  [WorkspaceElementType.Package]: PackageExportProperties[];
15464
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>;
15465
15804
  declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
15466
15805
  enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
15467
15806
  enableWebhookLogs: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -15551,6 +15890,11 @@ declare const AppSchema: z$1.ZodObject<{
15551
15890
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
15552
15891
  unit: z$1.ZodEnum<typeof LimitUnits>;
15553
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>>;
15554
15898
  ParallelWriteDatabaseRequests: z$1.ZodOptional<z$1.ZodObject<{
15555
15899
  value: z$1.ZodOptional<z$1.ZodNumber>;
15556
15900
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
@@ -15689,6 +16033,10 @@ declare const AppSchema: z$1.ZodObject<{
15689
16033
  workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
15690
16034
  workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
15691
16035
  externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
16036
+ apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
16037
+ apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
16038
+ webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
16039
+ webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
15692
16040
  totalUsagePerDay: AlertType.totalUsagePerDay;
15693
16041
  totalUsagePer30Days: AlertType.totalUsagePer30Days;
15694
16042
  testAlert: AlertType.testAlert;
@@ -15708,34 +16056,258 @@ declare const AppSchema: z$1.ZodObject<{
15708
16056
  isThrottled: z$1.ZodOptional<z$1.ZodBoolean>;
15709
16057
  isDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
15710
16058
  isBackgroundJobsDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
16059
+ lastExternalApiRequestDate: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
15711
16060
  }, z$1.core.$strip>;
15712
- type EngineWorkspaceSettings = z$1.Infer<typeof EngineWorkspaceSettingsSchema>;
15713
- interface EngineWorkspace {
15714
- id: string;
15715
- key: string;
15716
- logoUri?: string;
15717
- webhookUri?: string;
15718
- publicKey?: string;
15719
- publicKeys?: {
15720
- name?: string;
15721
- publicKey: string;
15722
- }[];
15723
- enabledWebhookEvents?: string[];
15724
- userFieldsSchema?: DataSchema;
15725
- auth?: ConnectorAuth;
15726
- credentialsSchema?: DataSchema;
15727
- apiClient?: RestApiClientOptions;
15728
- apiBaseUri?: string;
15729
- apiRequestHeaders: Record<string, any>;
15730
- apiRequestQuery: Record<string, any>;
15731
- isOnPrem?: boolean;
15732
- connectorBaseUri?: string;
15733
- limits: WorkspaceLimits;
15734
- settings?: EngineWorkspaceSettings;
15735
- alertDeliverySettings?: AlertDeliverySettings;
15736
- type?: WorkspaceType;
15737
- jwksUri?: string | null;
15738
- }
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;
15739
16311
  interface WorkspaceUser {
15740
16312
  id: string;
15741
16313
  workspaceId: string;
@@ -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<{
@@ -16942,6 +17526,39 @@ declare function parseDate(value: any): Date | undefined;
16942
17526
  declare function isBusinessDay(date: Date): boolean;
16943
17527
  declare function getBusinessDaysBetween(startDate: Date, endDate: Date): Set<string>;
16944
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
+
16945
17562
  declare enum LogRecordType {
16946
17563
  MSG = "message",
16947
17564
  TEXT = "text",
@@ -17054,6 +17671,7 @@ interface App {
17054
17671
  readmeSlug?: string;
17055
17672
  isPublic?: boolean;
17056
17673
  isReadOnly: boolean;
17674
+ isConnected?: boolean;
17057
17675
  }
17058
17676
  interface AppCategory {
17059
17677
  count: number;
@@ -17678,5 +18296,5 @@ declare class MembraneClient extends MembraneApiClient {
17678
18296
  connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
17679
18297
  }
17680
18298
 
17681
- 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, 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, 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, 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, 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 };
17682
- 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, 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, 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 };