@membranehq/sdk 0.6.0 → 0.7.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 (54) hide show
  1. package/dist/bundle.d.ts +177 -804
  2. package/dist/bundle.js +23 -19
  3. package/dist/bundle.js.map +1 -1
  4. package/dist/dts/accessors/action-instances-accessors.d.ts +8 -8
  5. package/dist/dts/accessors/actions-accessors.d.ts +7 -7
  6. package/dist/dts/accessors/app-data-schema-instances-accessors.d.ts +3 -3
  7. package/dist/dts/accessors/app-data-schemas-accessors.d.ts +3 -3
  8. package/dist/dts/accessors/app-event-subscriptions-accessors.d.ts +3 -3
  9. package/dist/dts/accessors/app-event-types-accessors.d.ts +3 -3
  10. package/dist/dts/accessors/base-accessors.d.ts +8 -8
  11. package/dist/dts/accessors/connections-accessors.d.ts +8 -8
  12. package/dist/dts/accessors/customers-accessors.d.ts +5 -5
  13. package/dist/dts/accessors/data-link-table-instances-accessors.d.ts +3 -3
  14. package/dist/dts/accessors/data-link-tables-accessors.d.ts +3 -3
  15. package/dist/dts/accessors/data-sources-accessors.d.ts +14 -14
  16. package/dist/dts/accessors/external-event-subscriptions-accessors.d.ts +3 -3
  17. package/dist/dts/accessors/field-mapping-instances-accessors.d.ts +7 -7
  18. package/dist/dts/accessors/field-mappings-accessors.d.ts +7 -7
  19. package/dist/dts/accessors/flow-instances-accessors.d.ts +8 -8
  20. package/dist/dts/accessors/flow-runs-accessors.d.ts +3 -3
  21. package/dist/dts/accessors/flows-accessors.d.ts +7 -7
  22. package/dist/dts/accessors/integrations-accessors.d.ts +3 -3
  23. package/dist/dts/accessors/scenarios-accessors.d.ts +3 -3
  24. package/dist/dts/accessors/screens-accessors.d.ts +3 -3
  25. package/dist/dts/api-client.d.ts +3 -3
  26. package/dist/dts/auth/accessors.d.ts +2 -2
  27. package/dist/dts/client.d.ts +5 -5
  28. package/dist/dts/data-builder/index.d.ts +1 -1
  29. package/dist/dts/data-schema/arbitrary-fields.test.d.ts +1 -0
  30. package/dist/dts/data-schema/types.d.ts +1 -0
  31. package/dist/dts/error-tools/index.d.ts +1 -1
  32. package/dist/dts/errors/index.d.ts +14 -14
  33. package/dist/dts/formulas/base.d.ts +3 -1
  34. package/dist/dts/index.d.ts +2 -1
  35. package/dist/dts/index.umd.d.ts +2 -2
  36. package/dist/dts/integration-elements/connection-level-element.accessor.d.ts +5 -5
  37. package/dist/dts/integration-elements/integration-level-element.accessor.d.ts +5 -5
  38. package/dist/dts/orgs/types.d.ts +1 -0
  39. package/dist/dts/workspace-elements/api/action-instances-api.d.ts +0 -3
  40. package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +20 -20
  41. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +40 -40
  42. package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +0 -12
  43. package/dist/dts/workspace-elements/api/flows-api.d.ts +10 -623
  44. package/dist/dts/workspace-elements/base/action-instances/types.d.ts +0 -3
  45. package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +12 -12
  46. package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +0 -3
  47. package/dist/dts/workspace-elements/errors.d.ts +2 -2
  48. package/dist/index.d.ts +212 -842
  49. package/dist/index.js +84 -73
  50. package/dist/index.js.map +1 -1
  51. package/dist/index.module.d.mts +212 -842
  52. package/dist/index.module.mjs +79 -69
  53. package/dist/index.module.mjs.map +1 -1
  54. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -46,45 +46,45 @@ declare const ErrorDataSchema: z.ZodType<ErrorDataSchema>;
46
46
  interface ErrorDataFields extends z.infer<typeof ErrorDataSchema> {
47
47
  }
48
48
  type ErrorConstructorArg = string | ErrorDataFields | Error;
49
- declare function isIntegrationAppError(error: any): any;
49
+ declare function isMembraneError(error: any): any;
50
50
  declare class ErrorData implements ErrorDataFields {
51
51
  constructor(arg: ErrorConstructorArg);
52
52
  }
53
53
  interface ErrorData extends ErrorDataFields {
54
54
  }
55
- declare class IntegrationAppError extends Error {
56
- isIntegrationAppError: true;
55
+ declare class MembraneError extends Error {
56
+ isMembraneError: true;
57
57
  data: ErrorData;
58
58
  constructor(arg: ErrorConstructorArg);
59
59
  }
60
- declare class InternalError extends IntegrationAppError {
60
+ declare class InternalError extends MembraneError {
61
61
  constructor(arg: ErrorConstructorArg);
62
62
  }
63
- declare class BadRequestError extends IntegrationAppError {
63
+ declare class BadRequestError extends MembraneError {
64
64
  constructor(arg: ErrorConstructorArg);
65
65
  }
66
- declare class ConcurrencyError extends IntegrationAppError {
66
+ declare class ConcurrencyError extends MembraneError {
67
67
  constructor(arg: ErrorConstructorArg);
68
68
  }
69
- declare class ConfigurationError extends IntegrationAppError {
69
+ declare class ConfigurationError extends MembraneError {
70
70
  constructor(arg: ErrorConstructorArg);
71
71
  }
72
- declare class FlowInstanceSetupError extends IntegrationAppError {
72
+ declare class FlowInstanceSetupError extends MembraneError {
73
73
  constructor(arg: ErrorConstructorArg);
74
74
  }
75
- declare class FlowRunError extends IntegrationAppError {
75
+ declare class FlowRunError extends MembraneError {
76
76
  constructor(arg: ErrorConstructorArg);
77
77
  }
78
- declare class ActionRunError extends IntegrationAppError {
78
+ declare class ActionRunError extends MembraneError {
79
79
  constructor(arg: ErrorConstructorArg);
80
80
  }
81
- declare class ActionInstanceSetupError extends IntegrationAppError {
81
+ declare class ActionInstanceSetupError extends MembraneError {
82
82
  constructor(arg: ErrorConstructorArg);
83
83
  }
84
- declare class UnitRunError extends IntegrationAppError {
84
+ declare class UnitRunError extends MembraneError {
85
85
  constructor(arg: ErrorConstructorArg);
86
86
  }
87
- declare class ConnectionError extends IntegrationAppError {
87
+ declare class ConnectionError extends MembraneError {
88
88
  constructor(arg: ErrorConstructorArg);
89
89
  }
90
90
  declare class NotFoundError extends BadRequestError {
@@ -99,7 +99,7 @@ declare class NotAuthenticatedError extends BadRequestError {
99
99
  declare class AccessDeniedError extends BadRequestError {
100
100
  constructor(arg: ErrorConstructorArg);
101
101
  }
102
- declare class CustomCodeError extends IntegrationAppError {
102
+ declare class CustomCodeError extends MembraneError {
103
103
  constructor(arg: ErrorConstructorArg);
104
104
  }
105
105
 
@@ -308,6 +308,7 @@ interface DataSchema {
308
308
  isSensitive?: boolean;
309
309
  referenceCollectionPath?: string;
310
310
  referenceCollectionUri?: string;
311
+ [key: string]: any;
311
312
  }
312
313
  declare const DataSchema: z.ZodType<DataSchema>;
313
314
 
@@ -343,10 +344,10 @@ declare const BaseFieldMapping: z.ZodObject<{
343
344
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
344
345
  universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
345
346
  integrationId: z.ZodOptional<z.ZodString>;
346
- dataSourceId: z.ZodString;
347
- dataSourceKey: z.ZodString;
348
- appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>;
349
- direction: z.ZodNativeEnum<typeof FieldMappingDirection>;
347
+ dataSourceId: z.ZodOptional<z.ZodString>;
348
+ dataSourceKey: z.ZodOptional<z.ZodString>;
349
+ appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
350
+ direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
350
351
  defaultImportValue: z.ZodOptional<z.ZodAny>;
351
352
  defaultExportValue: z.ZodOptional<z.ZodAny>;
352
353
  importValue: z.ZodOptional<z.ZodAny>;
@@ -360,10 +361,6 @@ declare const BaseFieldMapping: z.ZodObject<{
360
361
  id: string;
361
362
  name: string;
362
363
  revision: string;
363
- dataSourceId: string;
364
- dataSourceKey: string;
365
- appSchema: DataSchema;
366
- direction: FieldMappingDirection;
367
364
  key?: string | undefined;
368
365
  uuid?: string | undefined;
369
366
  description?: string | undefined;
@@ -377,6 +374,10 @@ declare const BaseFieldMapping: z.ZodObject<{
377
374
  publishedRevision?: string | undefined;
378
375
  universalFieldMappingId?: string | undefined;
379
376
  universalFieldMappingRevision?: string | undefined;
377
+ dataSourceId?: string | undefined;
378
+ dataSourceKey?: string | undefined;
379
+ appSchema?: DataSchema | undefined;
380
+ direction?: FieldMappingDirection | undefined;
380
381
  defaultImportValue?: any;
381
382
  defaultExportValue?: any;
382
383
  importValue?: any;
@@ -389,10 +390,6 @@ declare const BaseFieldMapping: z.ZodObject<{
389
390
  id: string;
390
391
  name: string;
391
392
  revision: string;
392
- dataSourceId: string;
393
- dataSourceKey: string;
394
- appSchema: DataSchema;
395
- direction: FieldMappingDirection;
396
393
  key?: string | undefined;
397
394
  uuid?: string | undefined;
398
395
  description?: string | undefined;
@@ -406,6 +403,10 @@ declare const BaseFieldMapping: z.ZodObject<{
406
403
  publishedRevision?: string | undefined;
407
404
  universalFieldMappingId?: string | undefined;
408
405
  universalFieldMappingRevision?: string | undefined;
406
+ dataSourceId?: string | undefined;
407
+ dataSourceKey?: string | undefined;
408
+ appSchema?: DataSchema | undefined;
409
+ direction?: FieldMappingDirection | undefined;
409
410
  defaultImportValue?: any;
410
411
  defaultExportValue?: any;
411
412
  importValue?: any;
@@ -7002,7 +7003,6 @@ declare const BaseFlowInstance: z.ZodObject<{
7002
7003
  createdAt: z.ZodString;
7003
7004
  updatedAt: z.ZodString;
7004
7005
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
7005
- outdated: z.ZodOptional<z.ZodBoolean>;
7006
7006
  customized: z.ZodOptional<z.ZodObject<{
7007
7007
  name: z.ZodOptional<z.ZodBoolean>;
7008
7008
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -7042,7 +7042,6 @@ declare const BaseFlowInstance: z.ZodObject<{
7042
7042
  universalFlowId?: string | undefined;
7043
7043
  nodes?: Record<string, any> | undefined;
7044
7044
  flowId?: string | undefined;
7045
- outdated?: boolean | undefined;
7046
7045
  }, {
7047
7046
  id: string;
7048
7047
  name: string;
@@ -7071,7 +7070,6 @@ declare const BaseFlowInstance: z.ZodObject<{
7071
7070
  universalFlowId?: string | undefined;
7072
7071
  nodes?: Record<string, any> | undefined;
7073
7072
  flowId?: string | undefined;
7074
- outdated?: boolean | undefined;
7075
7073
  }>;
7076
7074
  type BaseFlowInstance = z.infer<typeof BaseFlowInstance>;
7077
7075
  declare enum FlowInstanceNodeState {
@@ -7441,7 +7439,6 @@ declare const BaseActionInstance: z.ZodObject<{
7441
7439
  inputSchema: z.ZodOptional<z.ZodAny>;
7442
7440
  config: z.ZodOptional<z.ZodAny>;
7443
7441
  outputSchema: z.ZodOptional<z.ZodAny>;
7444
- isOutdated: z.ZodOptional<z.ZodBoolean>;
7445
7442
  }, "strip", z.ZodTypeAny, {
7446
7443
  id: string;
7447
7444
  name: string;
@@ -7464,7 +7461,6 @@ declare const BaseActionInstance: z.ZodObject<{
7464
7461
  parentRevision?: string | undefined;
7465
7462
  outputSchema?: any;
7466
7463
  universalParentId?: string | undefined;
7467
- isOutdated?: boolean | undefined;
7468
7464
  }, {
7469
7465
  id: string;
7470
7466
  name: string;
@@ -7487,7 +7483,6 @@ declare const BaseActionInstance: z.ZodObject<{
7487
7483
  parentRevision?: string | undefined;
7488
7484
  outputSchema?: any;
7489
7485
  universalParentId?: string | undefined;
7490
- isOutdated?: boolean | undefined;
7491
7486
  }>;
7492
7487
  type BaseActionInstance = z.infer<typeof BaseActionInstance>;
7493
7488
 
@@ -8371,7 +8366,7 @@ declare const BaseActionRunLogRecord: z.ZodObject<{
8371
8366
  }>;
8372
8367
  type BaseActionRunLogRecord = z.infer<typeof BaseActionRunLogRecord>;
8373
8368
 
8374
- interface IntegrationAppClientOptions {
8369
+ interface MembraneClientOptions {
8375
8370
  token?: string;
8376
8371
  fetchToken?: () => Promise<string>;
8377
8372
  credentials?: any;
@@ -8380,12 +8375,12 @@ interface IntegrationAppClientOptions {
8380
8375
  uiUri?: string;
8381
8376
  accessToken?: string;
8382
8377
  }
8383
- declare class IntegrationAppApiClient {
8378
+ declare class MembraneApiClient {
8384
8379
  apiUri: string;
8385
8380
  uiUri: string;
8386
8381
  token?: string;
8387
8382
  protected fetchToken?: () => Promise<string>;
8388
- constructor({ uiUri, apiUri, accessToken, token, fetchToken, fetchCredentials, credentials, }?: IntegrationAppClientOptions);
8383
+ constructor({ uiUri, apiUri, accessToken, token, fetchToken, fetchCredentials, credentials, }?: MembraneClientOptions);
8389
8384
  setCredentials(credentials: any): Promise<any>;
8390
8385
  getToken(): Promise<string>;
8391
8386
  get<T = any>(uri: string, queryParams?: Record<string, any>, options?: AxiosRequestConfig): Promise<T>;
@@ -8515,12 +8510,12 @@ type SelectorType = {
8515
8510
  } | string;
8516
8511
  declare class ElementAccessor<Element, UpdateRequest, Selector extends SelectorType = string> {
8517
8512
  protected options: {
8518
- client: IntegrationAppApiClient;
8513
+ client: MembraneApiClient;
8519
8514
  path: string;
8520
8515
  selector: string | Selector;
8521
8516
  };
8522
8517
  constructor(options: {
8523
- client: IntegrationAppApiClient;
8518
+ client: MembraneApiClient;
8524
8519
  path: string;
8525
8520
  selector: string | Selector;
8526
8521
  });
@@ -8535,29 +8530,29 @@ declare class ElementAccessor<Element, UpdateRequest, Selector extends SelectorT
8535
8530
  declare class ElementListAccessor<Element, FindQuery, CreateRequest> {
8536
8531
  private client;
8537
8532
  private path;
8538
- constructor(client: IntegrationAppApiClient, path: string);
8533
+ constructor(client: MembraneApiClient, path: string);
8539
8534
  find(query?: FindQuery): Promise<PaginationResponse<Element>>;
8540
8535
  findAll(query?: Omit<FindQuery, 'limit'>): Promise<Element[]>;
8541
8536
  create(data: CreateRequest): Promise<Element>;
8542
8537
  }
8543
8538
  declare class ElementInstanceListAccessor<ElementInstance extends BaseElementInstance, FindQuery> {
8544
- protected client: IntegrationAppApiClient;
8539
+ protected client: MembraneApiClient;
8545
8540
  private path;
8546
- constructor(client: IntegrationAppApiClient, path: string);
8541
+ constructor(client: MembraneApiClient, path: string);
8547
8542
  find(query?: FindQuery): Promise<PaginationResponse<ElementInstance>>;
8548
8543
  }
8549
8544
  declare class ElementInstanceAccessor<ElementInstance extends BaseElementInstance, Selector extends {
8550
8545
  id?: string;
8551
8546
  }, CreateRequest, UpdateRequest> {
8552
8547
  protected options: {
8553
- client: IntegrationAppApiClient;
8548
+ client: MembraneApiClient;
8554
8549
  instancePath: string;
8555
8550
  selector: string | Selector;
8556
8551
  type?: WorkspaceElementType;
8557
8552
  };
8558
8553
  private id;
8559
8554
  constructor(options: {
8560
- client: IntegrationAppApiClient;
8555
+ client: MembraneApiClient;
8561
8556
  instancePath: string;
8562
8557
  selector: string | Selector;
8563
8558
  type?: WorkspaceElementType;
@@ -8576,12 +8571,12 @@ declare class ElementInstanceAccessor<ElementInstance extends BaseElementInstanc
8576
8571
  }
8577
8572
 
8578
8573
  declare class IntegrationLevelElementAccessor<Element, UpdateElementData> {
8579
- protected client: IntegrationAppApiClient;
8574
+ protected client: MembraneApiClient;
8580
8575
  protected integrationSelector: string;
8581
8576
  protected elementSelector: string;
8582
8577
  protected elementKey: string;
8583
8578
  protected endpoint: string;
8584
- constructor(client: IntegrationAppApiClient, integrationSelector: string, elementSelector: string, elementKey: string);
8579
+ constructor(client: MembraneApiClient, integrationSelector: string, elementSelector: string, elementKey: string);
8585
8580
  getUniqueIdentifier(): string;
8586
8581
  get(): Promise<Element>;
8587
8582
  patch(data: Partial<UpdateElementData>): Promise<Element>;
@@ -8590,33 +8585,33 @@ declare class IntegrationLevelElementAccessor<Element, UpdateElementData> {
8590
8585
  reset(): Promise<Element>;
8591
8586
  }
8592
8587
  declare class IntegrationLevelElementsListAccessor<Element, Query, CreateElementData> {
8593
- protected client: IntegrationAppApiClient;
8588
+ protected client: MembraneApiClient;
8594
8589
  protected integrationSelector: string;
8595
8590
  protected elementKey: string;
8596
8591
  protected endpoint: string;
8597
- constructor(client: IntegrationAppApiClient, integrationSelector: string, elementKey: string);
8592
+ constructor(client: MembraneApiClient, integrationSelector: string, elementKey: string);
8598
8593
  list(query?: Query): Promise<PaginationResponse<Element>>;
8599
8594
  create(data: CreateElementData): Promise<Element>;
8600
8595
  }
8601
8596
 
8602
8597
  declare class ActionsAccessor extends ElementListAccessor<Action, FindActionsQuery, CreateActionRequest> {
8603
- constructor(client: IntegrationAppApiClient);
8598
+ constructor(client: MembraneApiClient);
8604
8599
  }
8605
8600
  declare class ActionAccessor extends ElementAccessor<Action, UpdateActionRequest, ActionSelector> {
8606
- constructor(client: IntegrationAppApiClient, selector: ActionSelector | string);
8601
+ constructor(client: MembraneApiClient, selector: ActionSelector | string);
8607
8602
  apply(integrationKeys: string[]): Promise<Action[]>;
8608
8603
  reset(): Promise<any>;
8609
8604
  }
8610
8605
  declare class IntegrationLevelActionAccessor extends IntegrationLevelElementAccessor<Action, UpdateActionRequest> {
8611
- client: IntegrationAppApiClient;
8606
+ client: MembraneApiClient;
8612
8607
  integrationSelector: string;
8613
8608
  actionSelector: string;
8614
- constructor(client: IntegrationAppApiClient, integrationSelector: string, actionSelector: string);
8609
+ constructor(client: MembraneApiClient, integrationSelector: string, actionSelector: string);
8615
8610
  }
8616
8611
  declare class IntegrationLevelActionsListAccessor extends IntegrationLevelElementsListAccessor<Action, Omit<FindActionsQuery, 'integrationId'>, Omit<CreateActionRequest, 'integrationId'>> {
8617
- client: IntegrationAppApiClient;
8612
+ client: MembraneApiClient;
8618
8613
  integrationSelector: string;
8619
- constructor(client: IntegrationAppApiClient, integrationSelector: string);
8614
+ constructor(client: MembraneApiClient, integrationSelector: string);
8620
8615
  }
8621
8616
 
8622
8617
  declare const OpenConfigurationOptions: z.ZodObject<{
@@ -8636,13 +8631,13 @@ type InstanceKeyQuery = {
8636
8631
  };
8637
8632
 
8638
8633
  declare class ConnectionLevelElementAccessor<Element, UpdateElement> {
8639
- protected client: IntegrationAppApiClient;
8634
+ protected client: MembraneApiClient;
8640
8635
  protected connectionSelector: string;
8641
8636
  protected selector: string;
8642
8637
  protected elementKey: string;
8643
8638
  protected query: Record<string, any>;
8644
8639
  protected endpoint: string;
8645
- constructor(client: IntegrationAppApiClient, connectionSelector: string, selector: string, elementKey: string, query: Record<string, any>);
8640
+ constructor(client: MembraneApiClient, connectionSelector: string, selector: string, elementKey: string, query: Record<string, any>);
8646
8641
  protected uri(path?: string, query?: {}): string;
8647
8642
  getUniqueIdentifier(): string;
8648
8643
  get(query?: {
@@ -8656,10 +8651,10 @@ declare class ConnectionLevelElementAccessor<Element, UpdateElement> {
8656
8651
  setup(): Promise<Element>;
8657
8652
  }
8658
8653
  declare class ConnectionLevelElementsListAccessor<Element, Query> {
8659
- protected client: IntegrationAppApiClient;
8654
+ protected client: MembraneApiClient;
8660
8655
  protected connectionSelector: string;
8661
8656
  protected elementKey: string;
8662
- constructor(client: IntegrationAppApiClient, connectionSelector: string, elementKey: string);
8657
+ constructor(client: MembraneApiClient, connectionSelector: string, elementKey: string);
8663
8658
  list(query?: Query): Promise<PaginationResponse<Element[]>>;
8664
8659
  }
8665
8660
 
@@ -9766,7 +9761,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
9766
9761
  inputSchema: z.ZodOptional<z.ZodAny>;
9767
9762
  config: z.ZodOptional<z.ZodAny>;
9768
9763
  outputSchema: z.ZodOptional<z.ZodAny>;
9769
- isOutdated: z.ZodOptional<z.ZodBoolean>;
9770
9764
  } & {
9771
9765
  user: z.ZodOptional<z.ZodObject<{
9772
9766
  id: z.ZodString;
@@ -9904,7 +9898,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
9904
9898
  parentRevision?: string | undefined;
9905
9899
  outputSchema?: any;
9906
9900
  universalParentId?: string | undefined;
9907
- isOutdated?: boolean | undefined;
9908
9901
  parent?: {
9909
9902
  key: string;
9910
9903
  id: string;
@@ -9962,7 +9955,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
9962
9955
  parentRevision?: string | undefined;
9963
9956
  outputSchema?: any;
9964
9957
  universalParentId?: string | undefined;
9965
- isOutdated?: boolean | undefined;
9966
9958
  parent?: {
9967
9959
  key: string;
9968
9960
  id: string;
@@ -10066,28 +10058,28 @@ type UpdateActionInstanceRequest = z.infer<typeof UpdateActionInstanceRequest>;
10066
10058
  interface OpenActionConfigurationOptions extends OpenConfigurationOptions {
10067
10059
  }
10068
10060
  declare class ActionInstancesAccessor extends ElementInstanceListAccessor<ActionInstance, FindActionInstancesQuery> {
10069
- constructor(client: IntegrationAppApiClient);
10061
+ constructor(client: MembraneApiClient);
10070
10062
  }
10071
10063
  declare class ActionInstanceAccessor extends ElementInstanceAccessor<ActionInstance, ActionInstanceSelector, CreateActionInstanceRequest, UpdateActionInstanceRequest> {
10072
- client: IntegrationAppApiClient;
10073
- constructor(client: IntegrationAppApiClient, selector: string | ActionInstanceSelector);
10064
+ client: MembraneApiClient;
10065
+ constructor(client: MembraneApiClient, selector: string | ActionInstanceSelector);
10074
10066
  setup(): Promise<void>;
10075
10067
  reset(): Promise<void>;
10076
10068
  run(input?: any): Promise<ActionRunResponse>;
10077
10069
  open({ onClose }?: OpenActionConfigurationOptions): Promise<void>;
10078
10070
  }
10079
10071
  declare class ConnectionLevelActionAccessor extends ConnectionLevelElementAccessor<ActionInstance, UpdateActionInstanceRequest> {
10080
- client: IntegrationAppApiClient;
10072
+ client: MembraneApiClient;
10081
10073
  connectionSelector: string;
10082
10074
  actionSelector: string;
10083
10075
  query: InstanceKeyQuery;
10084
- constructor(client: IntegrationAppApiClient, connectionSelector: string, actionSelector: string, query: InstanceKeyQuery);
10076
+ constructor(client: MembraneApiClient, connectionSelector: string, actionSelector: string, query: InstanceKeyQuery);
10085
10077
  run(input?: any): Promise<ActionRunResponse>;
10086
10078
  }
10087
10079
  declare class ConnectionLevelActionsAccessor extends ConnectionLevelElementsListAccessor<ActionInstance, ListActionInstancesForConnectionQuery> {
10088
- client: IntegrationAppApiClient;
10080
+ client: MembraneApiClient;
10089
10081
  connectionSelector: string;
10090
- constructor(client: IntegrationAppApiClient, connectionSelector: string);
10082
+ constructor(client: MembraneApiClient, connectionSelector: string);
10091
10083
  }
10092
10084
 
10093
10085
  declare const DataSourceInstanceApiResponse: z.ZodObject<{
@@ -12121,163 +12113,19 @@ declare const FlowApiResponse: z.ZodObject<{
12121
12113
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
12122
12114
  element: z.ZodObject<{
12123
12115
  id: z.ZodString;
12124
- key: z.ZodOptional<z.ZodString>;
12125
- uuid: z.ZodOptional<z.ZodString>;
12126
- description: z.ZodOptional<z.ZodString>;
12127
- name: z.ZodString;
12128
- state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
12129
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
12130
- createdAt: z.ZodOptional<z.ZodString>;
12131
- updatedAt: z.ZodOptional<z.ZodString>;
12132
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
12133
- } & {
12134
12116
  integrationId: z.ZodOptional<z.ZodString>;
12135
- universalFlowId: z.ZodOptional<z.ZodString>;
12136
- universalFlowRevision: z.ZodOptional<z.ZodString>;
12137
- parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
12138
- nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
12139
- type: z.ZodOptional<z.ZodString>;
12140
- version: z.ZodOptional<z.ZodNumber>;
12141
- name: z.ZodOptional<z.ZodString>;
12142
- description: z.ZodOptional<z.ZodString>;
12143
- config: z.ZodOptional<z.ZodAny>;
12144
- concurrency: z.ZodOptional<z.ZodNumber>;
12145
- onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
12146
- ui: z.ZodOptional<z.ZodAny>;
12147
- inputSchema: z.ZodOptional<z.ZodAny>;
12148
- outputSchema: z.ZodOptional<z.ZodAny>;
12149
- outputExample: z.ZodOptional<z.ZodAny>;
12150
- links: z.ZodOptional<z.ZodArray<z.ZodObject<{
12151
- key: z.ZodOptional<z.ZodString>;
12152
- filter: z.ZodOptional<z.ZodAny>;
12153
- name: z.ZodOptional<z.ZodString>;
12154
- }, "strip", z.ZodTypeAny, {
12155
- key?: string | undefined;
12156
- filter?: any;
12157
- name?: string | undefined;
12158
- }, {
12159
- key?: string | undefined;
12160
- filter?: any;
12161
- name?: string | undefined;
12162
- }>, "many">>;
12163
- isCustomized: z.ZodOptional<z.ZodBoolean>;
12164
- }, "strip", z.ZodTypeAny, {
12165
- concurrency?: number | undefined;
12166
- type?: string | undefined;
12167
- name?: string | undefined;
12168
- description?: string | undefined;
12169
- inputSchema?: any;
12170
- config?: any;
12171
- isCustomized?: boolean | undefined;
12172
- outputSchema?: any;
12173
- version?: number | undefined;
12174
- onError?: "stop" | "continue" | undefined;
12175
- ui?: any;
12176
- outputExample?: any;
12177
- links?: {
12178
- key?: string | undefined;
12179
- filter?: any;
12180
- name?: string | undefined;
12181
- }[] | undefined;
12182
- }, {
12183
- concurrency?: number | undefined;
12184
- type?: string | undefined;
12185
- name?: string | undefined;
12186
- description?: string | undefined;
12187
- inputSchema?: any;
12188
- config?: any;
12189
- isCustomized?: boolean | undefined;
12190
- outputSchema?: any;
12191
- version?: number | undefined;
12192
- onError?: "stop" | "continue" | undefined;
12193
- ui?: any;
12194
- outputExample?: any;
12195
- links?: {
12196
- key?: string | undefined;
12197
- filter?: any;
12198
- name?: string | undefined;
12199
- }[] | undefined;
12200
- }>>>;
12201
- autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
12202
- archivedAt: z.ZodOptional<z.ZodString>;
12203
- revision: z.ZodString;
12204
12117
  customized: z.ZodOptional<z.ZodBoolean>;
12118
+ universalFlowId: z.ZodOptional<z.ZodString>;
12205
12119
  }, "strip", z.ZodTypeAny, {
12206
12120
  id: string;
12207
- name: string;
12208
- revision: string;
12209
- key?: string | undefined;
12210
- uuid?: string | undefined;
12211
- description?: string | undefined;
12212
- state?: WorkspaceElementState | undefined;
12213
- errors?: ErrorDataSchema[] | undefined;
12214
- createdAt?: string | undefined;
12215
- updatedAt?: string | undefined;
12216
- archivedAt?: string | undefined;
12217
- isDeactivated?: boolean | undefined;
12218
12121
  integrationId?: string | undefined;
12219
12122
  customized?: boolean | undefined;
12220
- parametersSchema?: DataSchema | undefined;
12221
12123
  universalFlowId?: string | undefined;
12222
- universalFlowRevision?: string | undefined;
12223
- nodes?: Record<string, {
12224
- concurrency?: number | undefined;
12225
- type?: string | undefined;
12226
- name?: string | undefined;
12227
- description?: string | undefined;
12228
- inputSchema?: any;
12229
- config?: any;
12230
- isCustomized?: boolean | undefined;
12231
- outputSchema?: any;
12232
- version?: number | undefined;
12233
- onError?: "stop" | "continue" | undefined;
12234
- ui?: any;
12235
- outputExample?: any;
12236
- links?: {
12237
- key?: string | undefined;
12238
- filter?: any;
12239
- name?: string | undefined;
12240
- }[] | undefined;
12241
- }> | undefined;
12242
- autoCreateInstances?: boolean | undefined;
12243
12124
  }, {
12244
12125
  id: string;
12245
- name: string;
12246
- revision: string;
12247
- key?: string | undefined;
12248
- uuid?: string | undefined;
12249
- description?: string | undefined;
12250
- state?: WorkspaceElementState | undefined;
12251
- errors?: ErrorDataSchema[] | undefined;
12252
- createdAt?: string | undefined;
12253
- updatedAt?: string | undefined;
12254
- archivedAt?: string | undefined;
12255
- isDeactivated?: boolean | undefined;
12256
12126
  integrationId?: string | undefined;
12257
12127
  customized?: boolean | undefined;
12258
- parametersSchema?: DataSchema | undefined;
12259
12128
  universalFlowId?: string | undefined;
12260
- universalFlowRevision?: string | undefined;
12261
- nodes?: Record<string, {
12262
- concurrency?: number | undefined;
12263
- type?: string | undefined;
12264
- name?: string | undefined;
12265
- description?: string | undefined;
12266
- inputSchema?: any;
12267
- config?: any;
12268
- isCustomized?: boolean | undefined;
12269
- outputSchema?: any;
12270
- version?: number | undefined;
12271
- onError?: "stop" | "continue" | undefined;
12272
- ui?: any;
12273
- outputExample?: any;
12274
- links?: {
12275
- key?: string | undefined;
12276
- filter?: any;
12277
- name?: string | undefined;
12278
- }[] | undefined;
12279
- }> | undefined;
12280
- autoCreateInstances?: boolean | undefined;
12281
12129
  }>;
12282
12130
  integration: z.ZodObject<{
12283
12131
  id: z.ZodString;
@@ -12409,42 +12257,9 @@ declare const FlowApiResponse: z.ZodObject<{
12409
12257
  };
12410
12258
  element: {
12411
12259
  id: string;
12412
- name: string;
12413
- revision: string;
12414
- key?: string | undefined;
12415
- uuid?: string | undefined;
12416
- description?: string | undefined;
12417
- state?: WorkspaceElementState | undefined;
12418
- errors?: ErrorDataSchema[] | undefined;
12419
- createdAt?: string | undefined;
12420
- updatedAt?: string | undefined;
12421
- archivedAt?: string | undefined;
12422
- isDeactivated?: boolean | undefined;
12423
12260
  integrationId?: string | undefined;
12424
12261
  customized?: boolean | undefined;
12425
- parametersSchema?: DataSchema | undefined;
12426
12262
  universalFlowId?: string | undefined;
12427
- universalFlowRevision?: string | undefined;
12428
- nodes?: Record<string, {
12429
- concurrency?: number | undefined;
12430
- type?: string | undefined;
12431
- name?: string | undefined;
12432
- description?: string | undefined;
12433
- inputSchema?: any;
12434
- config?: any;
12435
- isCustomized?: boolean | undefined;
12436
- outputSchema?: any;
12437
- version?: number | undefined;
12438
- onError?: "stop" | "continue" | undefined;
12439
- ui?: any;
12440
- outputExample?: any;
12441
- links?: {
12442
- key?: string | undefined;
12443
- filter?: any;
12444
- name?: string | undefined;
12445
- }[] | undefined;
12446
- }> | undefined;
12447
- autoCreateInstances?: boolean | undefined;
12448
12263
  };
12449
12264
  }, {
12450
12265
  integration: {
@@ -12481,44 +12296,12 @@ declare const FlowApiResponse: z.ZodObject<{
12481
12296
  };
12482
12297
  element: {
12483
12298
  id: string;
12484
- name: string;
12485
- revision: string;
12486
- key?: string | undefined;
12487
- uuid?: string | undefined;
12488
- description?: string | undefined;
12489
- state?: WorkspaceElementState | undefined;
12490
- errors?: ErrorDataSchema[] | undefined;
12491
- createdAt?: string | undefined;
12492
- updatedAt?: string | undefined;
12493
- archivedAt?: string | undefined;
12494
- isDeactivated?: boolean | undefined;
12495
12299
  integrationId?: string | undefined;
12496
12300
  customized?: boolean | undefined;
12497
- parametersSchema?: DataSchema | undefined;
12498
12301
  universalFlowId?: string | undefined;
12499
- universalFlowRevision?: string | undefined;
12500
- nodes?: Record<string, {
12501
- concurrency?: number | undefined;
12502
- type?: string | undefined;
12503
- name?: string | undefined;
12504
- description?: string | undefined;
12505
- inputSchema?: any;
12506
- config?: any;
12507
- isCustomized?: boolean | undefined;
12508
- outputSchema?: any;
12509
- version?: number | undefined;
12510
- onError?: "stop" | "continue" | undefined;
12511
- ui?: any;
12512
- outputExample?: any;
12513
- links?: {
12514
- key?: string | undefined;
12515
- filter?: any;
12516
- name?: string | undefined;
12517
- }[] | undefined;
12518
- }> | undefined;
12519
- autoCreateInstances?: boolean | undefined;
12520
12302
  };
12521
12303
  }>, "many">>;
12304
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
12522
12305
  }, "strip", z.ZodTypeAny, {
12523
12306
  id: string;
12524
12307
  name: string;
@@ -12602,44 +12385,12 @@ declare const FlowApiResponse: z.ZodObject<{
12602
12385
  };
12603
12386
  element: {
12604
12387
  id: string;
12605
- name: string;
12606
- revision: string;
12607
- key?: string | undefined;
12608
- uuid?: string | undefined;
12609
- description?: string | undefined;
12610
- state?: WorkspaceElementState | undefined;
12611
- errors?: ErrorDataSchema[] | undefined;
12612
- createdAt?: string | undefined;
12613
- updatedAt?: string | undefined;
12614
- archivedAt?: string | undefined;
12615
- isDeactivated?: boolean | undefined;
12616
12388
  integrationId?: string | undefined;
12617
12389
  customized?: boolean | undefined;
12618
- parametersSchema?: DataSchema | undefined;
12619
12390
  universalFlowId?: string | undefined;
12620
- universalFlowRevision?: string | undefined;
12621
- nodes?: Record<string, {
12622
- concurrency?: number | undefined;
12623
- type?: string | undefined;
12624
- name?: string | undefined;
12625
- description?: string | undefined;
12626
- inputSchema?: any;
12627
- config?: any;
12628
- isCustomized?: boolean | undefined;
12629
- outputSchema?: any;
12630
- version?: number | undefined;
12631
- onError?: "stop" | "continue" | undefined;
12632
- ui?: any;
12633
- outputExample?: any;
12634
- links?: {
12635
- key?: string | undefined;
12636
- filter?: any;
12637
- name?: string | undefined;
12638
- }[] | undefined;
12639
- }> | undefined;
12640
- autoCreateInstances?: boolean | undefined;
12641
12391
  };
12642
12392
  }[] | undefined;
12393
+ dependencies?: any[] | undefined;
12643
12394
  universalFlowId?: string | undefined;
12644
12395
  universalFlowRevision?: string | undefined;
12645
12396
  nodes?: Record<string, {
@@ -12745,44 +12496,12 @@ declare const FlowApiResponse: z.ZodObject<{
12745
12496
  };
12746
12497
  element: {
12747
12498
  id: string;
12748
- name: string;
12749
- revision: string;
12750
- key?: string | undefined;
12751
- uuid?: string | undefined;
12752
- description?: string | undefined;
12753
- state?: WorkspaceElementState | undefined;
12754
- errors?: ErrorDataSchema[] | undefined;
12755
- createdAt?: string | undefined;
12756
- updatedAt?: string | undefined;
12757
- archivedAt?: string | undefined;
12758
- isDeactivated?: boolean | undefined;
12759
12499
  integrationId?: string | undefined;
12760
12500
  customized?: boolean | undefined;
12761
- parametersSchema?: DataSchema | undefined;
12762
12501
  universalFlowId?: string | undefined;
12763
- universalFlowRevision?: string | undefined;
12764
- nodes?: Record<string, {
12765
- concurrency?: number | undefined;
12766
- type?: string | undefined;
12767
- name?: string | undefined;
12768
- description?: string | undefined;
12769
- inputSchema?: any;
12770
- config?: any;
12771
- isCustomized?: boolean | undefined;
12772
- outputSchema?: any;
12773
- version?: number | undefined;
12774
- onError?: "stop" | "continue" | undefined;
12775
- ui?: any;
12776
- outputExample?: any;
12777
- links?: {
12778
- key?: string | undefined;
12779
- filter?: any;
12780
- name?: string | undefined;
12781
- }[] | undefined;
12782
- }> | undefined;
12783
- autoCreateInstances?: boolean | undefined;
12784
12502
  };
12785
12503
  }[] | undefined;
12504
+ dependencies?: any[] | undefined;
12786
12505
  universalFlowId?: string | undefined;
12787
12506
  universalFlowRevision?: string | undefined;
12788
12507
  nodes?: Record<string, {
@@ -12832,7 +12551,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
12832
12551
  createdAt: z.ZodString;
12833
12552
  updatedAt: z.ZodString;
12834
12553
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
12835
- outdated: z.ZodOptional<z.ZodBoolean>;
12836
12554
  customized: z.ZodOptional<z.ZodObject<{
12837
12555
  name: z.ZodOptional<z.ZodBoolean>;
12838
12556
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -13089,163 +12807,19 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13089
12807
  appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
13090
12808
  element: z.ZodObject<{
13091
12809
  id: z.ZodString;
13092
- key: z.ZodOptional<z.ZodString>;
13093
- uuid: z.ZodOptional<z.ZodString>;
13094
- description: z.ZodOptional<z.ZodString>;
13095
- name: z.ZodString;
13096
- state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
13097
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
13098
- createdAt: z.ZodOptional<z.ZodString>;
13099
- updatedAt: z.ZodOptional<z.ZodString>;
13100
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
13101
- } & {
13102
12810
  integrationId: z.ZodOptional<z.ZodString>;
13103
- universalFlowId: z.ZodOptional<z.ZodString>;
13104
- universalFlowRevision: z.ZodOptional<z.ZodString>;
13105
- parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
13106
- nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
13107
- type: z.ZodOptional<z.ZodString>;
13108
- version: z.ZodOptional<z.ZodNumber>;
13109
- name: z.ZodOptional<z.ZodString>;
13110
- description: z.ZodOptional<z.ZodString>;
13111
- config: z.ZodOptional<z.ZodAny>;
13112
- concurrency: z.ZodOptional<z.ZodNumber>;
13113
- onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
13114
- ui: z.ZodOptional<z.ZodAny>;
13115
- inputSchema: z.ZodOptional<z.ZodAny>;
13116
- outputSchema: z.ZodOptional<z.ZodAny>;
13117
- outputExample: z.ZodOptional<z.ZodAny>;
13118
- links: z.ZodOptional<z.ZodArray<z.ZodObject<{
13119
- key: z.ZodOptional<z.ZodString>;
13120
- filter: z.ZodOptional<z.ZodAny>;
13121
- name: z.ZodOptional<z.ZodString>;
13122
- }, "strip", z.ZodTypeAny, {
13123
- key?: string | undefined;
13124
- filter?: any;
13125
- name?: string | undefined;
13126
- }, {
13127
- key?: string | undefined;
13128
- filter?: any;
13129
- name?: string | undefined;
13130
- }>, "many">>;
13131
- isCustomized: z.ZodOptional<z.ZodBoolean>;
13132
- }, "strip", z.ZodTypeAny, {
13133
- concurrency?: number | undefined;
13134
- type?: string | undefined;
13135
- name?: string | undefined;
13136
- description?: string | undefined;
13137
- inputSchema?: any;
13138
- config?: any;
13139
- isCustomized?: boolean | undefined;
13140
- outputSchema?: any;
13141
- version?: number | undefined;
13142
- onError?: "stop" | "continue" | undefined;
13143
- ui?: any;
13144
- outputExample?: any;
13145
- links?: {
13146
- key?: string | undefined;
13147
- filter?: any;
13148
- name?: string | undefined;
13149
- }[] | undefined;
13150
- }, {
13151
- concurrency?: number | undefined;
13152
- type?: string | undefined;
13153
- name?: string | undefined;
13154
- description?: string | undefined;
13155
- inputSchema?: any;
13156
- config?: any;
13157
- isCustomized?: boolean | undefined;
13158
- outputSchema?: any;
13159
- version?: number | undefined;
13160
- onError?: "stop" | "continue" | undefined;
13161
- ui?: any;
13162
- outputExample?: any;
13163
- links?: {
13164
- key?: string | undefined;
13165
- filter?: any;
13166
- name?: string | undefined;
13167
- }[] | undefined;
13168
- }>>>;
13169
- autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
13170
- archivedAt: z.ZodOptional<z.ZodString>;
13171
- revision: z.ZodString;
13172
12811
  customized: z.ZodOptional<z.ZodBoolean>;
12812
+ universalFlowId: z.ZodOptional<z.ZodString>;
13173
12813
  }, "strip", z.ZodTypeAny, {
13174
12814
  id: string;
13175
- name: string;
13176
- revision: string;
13177
- key?: string | undefined;
13178
- uuid?: string | undefined;
13179
- description?: string | undefined;
13180
- state?: WorkspaceElementState | undefined;
13181
- errors?: ErrorDataSchema[] | undefined;
13182
- createdAt?: string | undefined;
13183
- updatedAt?: string | undefined;
13184
- archivedAt?: string | undefined;
13185
- isDeactivated?: boolean | undefined;
13186
12815
  integrationId?: string | undefined;
13187
12816
  customized?: boolean | undefined;
13188
- parametersSchema?: DataSchema | undefined;
13189
12817
  universalFlowId?: string | undefined;
13190
- universalFlowRevision?: string | undefined;
13191
- nodes?: Record<string, {
13192
- concurrency?: number | undefined;
13193
- type?: string | undefined;
13194
- name?: string | undefined;
13195
- description?: string | undefined;
13196
- inputSchema?: any;
13197
- config?: any;
13198
- isCustomized?: boolean | undefined;
13199
- outputSchema?: any;
13200
- version?: number | undefined;
13201
- onError?: "stop" | "continue" | undefined;
13202
- ui?: any;
13203
- outputExample?: any;
13204
- links?: {
13205
- key?: string | undefined;
13206
- filter?: any;
13207
- name?: string | undefined;
13208
- }[] | undefined;
13209
- }> | undefined;
13210
- autoCreateInstances?: boolean | undefined;
13211
12818
  }, {
13212
12819
  id: string;
13213
- name: string;
13214
- revision: string;
13215
- key?: string | undefined;
13216
- uuid?: string | undefined;
13217
- description?: string | undefined;
13218
- state?: WorkspaceElementState | undefined;
13219
- errors?: ErrorDataSchema[] | undefined;
13220
- createdAt?: string | undefined;
13221
- updatedAt?: string | undefined;
13222
- archivedAt?: string | undefined;
13223
- isDeactivated?: boolean | undefined;
13224
12820
  integrationId?: string | undefined;
13225
12821
  customized?: boolean | undefined;
13226
- parametersSchema?: DataSchema | undefined;
13227
12822
  universalFlowId?: string | undefined;
13228
- universalFlowRevision?: string | undefined;
13229
- nodes?: Record<string, {
13230
- concurrency?: number | undefined;
13231
- type?: string | undefined;
13232
- name?: string | undefined;
13233
- description?: string | undefined;
13234
- inputSchema?: any;
13235
- config?: any;
13236
- isCustomized?: boolean | undefined;
13237
- outputSchema?: any;
13238
- version?: number | undefined;
13239
- onError?: "stop" | "continue" | undefined;
13240
- ui?: any;
13241
- outputExample?: any;
13242
- links?: {
13243
- key?: string | undefined;
13244
- filter?: any;
13245
- name?: string | undefined;
13246
- }[] | undefined;
13247
- }> | undefined;
13248
- autoCreateInstances?: boolean | undefined;
13249
12823
  }>;
13250
12824
  integration: z.ZodObject<{
13251
12825
  id: z.ZodString;
@@ -13377,42 +12951,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13377
12951
  };
13378
12952
  element: {
13379
12953
  id: string;
13380
- name: string;
13381
- revision: string;
13382
- key?: string | undefined;
13383
- uuid?: string | undefined;
13384
- description?: string | undefined;
13385
- state?: WorkspaceElementState | undefined;
13386
- errors?: ErrorDataSchema[] | undefined;
13387
- createdAt?: string | undefined;
13388
- updatedAt?: string | undefined;
13389
- archivedAt?: string | undefined;
13390
- isDeactivated?: boolean | undefined;
13391
12954
  integrationId?: string | undefined;
13392
12955
  customized?: boolean | undefined;
13393
- parametersSchema?: DataSchema | undefined;
13394
12956
  universalFlowId?: string | undefined;
13395
- universalFlowRevision?: string | undefined;
13396
- nodes?: Record<string, {
13397
- concurrency?: number | undefined;
13398
- type?: string | undefined;
13399
- name?: string | undefined;
13400
- description?: string | undefined;
13401
- inputSchema?: any;
13402
- config?: any;
13403
- isCustomized?: boolean | undefined;
13404
- outputSchema?: any;
13405
- version?: number | undefined;
13406
- onError?: "stop" | "continue" | undefined;
13407
- ui?: any;
13408
- outputExample?: any;
13409
- links?: {
13410
- key?: string | undefined;
13411
- filter?: any;
13412
- name?: string | undefined;
13413
- }[] | undefined;
13414
- }> | undefined;
13415
- autoCreateInstances?: boolean | undefined;
13416
12957
  };
13417
12958
  }, {
13418
12959
  integration: {
@@ -13449,44 +12990,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13449
12990
  };
13450
12991
  element: {
13451
12992
  id: string;
13452
- name: string;
13453
- revision: string;
13454
- key?: string | undefined;
13455
- uuid?: string | undefined;
13456
- description?: string | undefined;
13457
- state?: WorkspaceElementState | undefined;
13458
- errors?: ErrorDataSchema[] | undefined;
13459
- createdAt?: string | undefined;
13460
- updatedAt?: string | undefined;
13461
- archivedAt?: string | undefined;
13462
- isDeactivated?: boolean | undefined;
13463
12993
  integrationId?: string | undefined;
13464
12994
  customized?: boolean | undefined;
13465
- parametersSchema?: DataSchema | undefined;
13466
12995
  universalFlowId?: string | undefined;
13467
- universalFlowRevision?: string | undefined;
13468
- nodes?: Record<string, {
13469
- concurrency?: number | undefined;
13470
- type?: string | undefined;
13471
- name?: string | undefined;
13472
- description?: string | undefined;
13473
- inputSchema?: any;
13474
- config?: any;
13475
- isCustomized?: boolean | undefined;
13476
- outputSchema?: any;
13477
- version?: number | undefined;
13478
- onError?: "stop" | "continue" | undefined;
13479
- ui?: any;
13480
- outputExample?: any;
13481
- links?: {
13482
- key?: string | undefined;
13483
- filter?: any;
13484
- name?: string | undefined;
13485
- }[] | undefined;
13486
- }> | undefined;
13487
- autoCreateInstances?: boolean | undefined;
13488
12996
  };
13489
12997
  }>, "many">>;
12998
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
13490
12999
  }, "strip", z.ZodTypeAny, {
13491
13000
  id: string;
13492
13001
  name: string;
@@ -13570,44 +13079,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13570
13079
  };
13571
13080
  element: {
13572
13081
  id: string;
13573
- name: string;
13574
- revision: string;
13575
- key?: string | undefined;
13576
- uuid?: string | undefined;
13577
- description?: string | undefined;
13578
- state?: WorkspaceElementState | undefined;
13579
- errors?: ErrorDataSchema[] | undefined;
13580
- createdAt?: string | undefined;
13581
- updatedAt?: string | undefined;
13582
- archivedAt?: string | undefined;
13583
- isDeactivated?: boolean | undefined;
13584
13082
  integrationId?: string | undefined;
13585
13083
  customized?: boolean | undefined;
13586
- parametersSchema?: DataSchema | undefined;
13587
13084
  universalFlowId?: string | undefined;
13588
- universalFlowRevision?: string | undefined;
13589
- nodes?: Record<string, {
13590
- concurrency?: number | undefined;
13591
- type?: string | undefined;
13592
- name?: string | undefined;
13593
- description?: string | undefined;
13594
- inputSchema?: any;
13595
- config?: any;
13596
- isCustomized?: boolean | undefined;
13597
- outputSchema?: any;
13598
- version?: number | undefined;
13599
- onError?: "stop" | "continue" | undefined;
13600
- ui?: any;
13601
- outputExample?: any;
13602
- links?: {
13603
- key?: string | undefined;
13604
- filter?: any;
13605
- name?: string | undefined;
13606
- }[] | undefined;
13607
- }> | undefined;
13608
- autoCreateInstances?: boolean | undefined;
13609
13085
  };
13610
13086
  }[] | undefined;
13087
+ dependencies?: any[] | undefined;
13611
13088
  universalFlowId?: string | undefined;
13612
13089
  universalFlowRevision?: string | undefined;
13613
13090
  nodes?: Record<string, {
@@ -13713,44 +13190,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13713
13190
  };
13714
13191
  element: {
13715
13192
  id: string;
13716
- name: string;
13717
- revision: string;
13718
- key?: string | undefined;
13719
- uuid?: string | undefined;
13720
- description?: string | undefined;
13721
- state?: WorkspaceElementState | undefined;
13722
- errors?: ErrorDataSchema[] | undefined;
13723
- createdAt?: string | undefined;
13724
- updatedAt?: string | undefined;
13725
- archivedAt?: string | undefined;
13726
- isDeactivated?: boolean | undefined;
13727
13193
  integrationId?: string | undefined;
13728
13194
  customized?: boolean | undefined;
13729
- parametersSchema?: DataSchema | undefined;
13730
13195
  universalFlowId?: string | undefined;
13731
- universalFlowRevision?: string | undefined;
13732
- nodes?: Record<string, {
13733
- concurrency?: number | undefined;
13734
- type?: string | undefined;
13735
- name?: string | undefined;
13736
- description?: string | undefined;
13737
- inputSchema?: any;
13738
- config?: any;
13739
- isCustomized?: boolean | undefined;
13740
- outputSchema?: any;
13741
- version?: number | undefined;
13742
- onError?: "stop" | "continue" | undefined;
13743
- ui?: any;
13744
- outputExample?: any;
13745
- links?: {
13746
- key?: string | undefined;
13747
- filter?: any;
13748
- name?: string | undefined;
13749
- }[] | undefined;
13750
- }> | undefined;
13751
- autoCreateInstances?: boolean | undefined;
13752
13196
  };
13753
13197
  }[] | undefined;
13198
+ dependencies?: any[] | undefined;
13754
13199
  universalFlowId?: string | undefined;
13755
13200
  universalFlowRevision?: string | undefined;
13756
13201
  nodes?: Record<string, {
@@ -13981,44 +13426,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
13981
13426
  };
13982
13427
  element: {
13983
13428
  id: string;
13984
- name: string;
13985
- revision: string;
13986
- key?: string | undefined;
13987
- uuid?: string | undefined;
13988
- description?: string | undefined;
13989
- state?: WorkspaceElementState | undefined;
13990
- errors?: ErrorDataSchema[] | undefined;
13991
- createdAt?: string | undefined;
13992
- updatedAt?: string | undefined;
13993
- archivedAt?: string | undefined;
13994
- isDeactivated?: boolean | undefined;
13995
13429
  integrationId?: string | undefined;
13996
13430
  customized?: boolean | undefined;
13997
- parametersSchema?: DataSchema | undefined;
13998
13431
  universalFlowId?: string | undefined;
13999
- universalFlowRevision?: string | undefined;
14000
- nodes?: Record<string, {
14001
- concurrency?: number | undefined;
14002
- type?: string | undefined;
14003
- name?: string | undefined;
14004
- description?: string | undefined;
14005
- inputSchema?: any;
14006
- config?: any;
14007
- isCustomized?: boolean | undefined;
14008
- outputSchema?: any;
14009
- version?: number | undefined;
14010
- onError?: "stop" | "continue" | undefined;
14011
- ui?: any;
14012
- outputExample?: any;
14013
- links?: {
14014
- key?: string | undefined;
14015
- filter?: any;
14016
- name?: string | undefined;
14017
- }[] | undefined;
14018
- }> | undefined;
14019
- autoCreateInstances?: boolean | undefined;
14020
13432
  };
14021
13433
  }[] | undefined;
13434
+ dependencies?: any[] | undefined;
14022
13435
  universalFlowId?: string | undefined;
14023
13436
  universalFlowRevision?: string | undefined;
14024
13437
  nodes?: Record<string, {
@@ -14073,7 +13486,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
14073
13486
  universalFlowId?: string | undefined;
14074
13487
  nodes?: Record<string, any> | undefined;
14075
13488
  flowId?: string | undefined;
14076
- outdated?: boolean | undefined;
14077
13489
  }, {
14078
13490
  id: string;
14079
13491
  name: string;
@@ -14218,44 +13630,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
14218
13630
  };
14219
13631
  element: {
14220
13632
  id: string;
14221
- name: string;
14222
- revision: string;
14223
- key?: string | undefined;
14224
- uuid?: string | undefined;
14225
- description?: string | undefined;
14226
- state?: WorkspaceElementState | undefined;
14227
- errors?: ErrorDataSchema[] | undefined;
14228
- createdAt?: string | undefined;
14229
- updatedAt?: string | undefined;
14230
- archivedAt?: string | undefined;
14231
- isDeactivated?: boolean | undefined;
14232
13633
  integrationId?: string | undefined;
14233
13634
  customized?: boolean | undefined;
14234
- parametersSchema?: DataSchema | undefined;
14235
13635
  universalFlowId?: string | undefined;
14236
- universalFlowRevision?: string | undefined;
14237
- nodes?: Record<string, {
14238
- concurrency?: number | undefined;
14239
- type?: string | undefined;
14240
- name?: string | undefined;
14241
- description?: string | undefined;
14242
- inputSchema?: any;
14243
- config?: any;
14244
- isCustomized?: boolean | undefined;
14245
- outputSchema?: any;
14246
- version?: number | undefined;
14247
- onError?: "stop" | "continue" | undefined;
14248
- ui?: any;
14249
- outputExample?: any;
14250
- links?: {
14251
- key?: string | undefined;
14252
- filter?: any;
14253
- name?: string | undefined;
14254
- }[] | undefined;
14255
- }> | undefined;
14256
- autoCreateInstances?: boolean | undefined;
14257
13636
  };
14258
13637
  }[] | undefined;
13638
+ dependencies?: any[] | undefined;
14259
13639
  universalFlowId?: string | undefined;
14260
13640
  universalFlowRevision?: string | undefined;
14261
13641
  nodes?: Record<string, {
@@ -14310,7 +13690,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
14310
13690
  universalFlowId?: string | undefined;
14311
13691
  nodes?: Record<string, any> | undefined;
14312
13692
  flowId?: string | undefined;
14313
- outdated?: boolean | undefined;
14314
13693
  }>;
14315
13694
  type FlowInstanceApiResponse = z.infer<typeof FlowInstanceApiResponse>;
14316
13695
  type FlowInstance = FlowInstanceApiResponse;
@@ -15255,20 +14634,20 @@ type DataSource = DataSourceApiResponse;
15255
14634
  interface OpenDataSourceConfigurationOptions extends OpenConfigurationOptions {
15256
14635
  }
15257
14636
  declare class DataSourcesAccessor extends ElementListAccessor<DataSource, FindDataSourcesQuery, CreateDataSourceRequest> {
15258
- constructor(client: IntegrationAppApiClient);
14637
+ constructor(client: MembraneApiClient);
15259
14638
  }
15260
14639
  declare class DataSourceAccessor extends ElementAccessor<DataSource, UpdateDataSourceRequest, DataSourceSelector> {
15261
- constructor(client: IntegrationAppApiClient, selector: DataSourceSelector | string);
14640
+ constructor(client: MembraneApiClient, selector: DataSourceSelector | string);
15262
14641
  apply(integrationKeys: string[]): Promise<DataSource[]>;
15263
14642
  setup(): Promise<void>;
15264
14643
  reset(): Promise<any>;
15265
14644
  }
15266
14645
  declare class DataSourceInstancesAccessor extends ElementInstanceListAccessor<DataSourceInstance, FindDataSourceInstancesQuery> {
15267
- constructor(client: IntegrationAppApiClient);
14646
+ constructor(client: MembraneApiClient);
15268
14647
  }
15269
14648
  declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<DataSourceInstance, DataSourceInstanceSelector, CreateDataSourceInstanceRequest, UpdateDataSourceInstanceRequest> {
15270
- client: IntegrationAppApiClient;
15271
- constructor(client: IntegrationAppApiClient, selector: string | DataSourceInstanceSelector);
14649
+ client: MembraneApiClient;
14650
+ constructor(client: MembraneApiClient, selector: string | DataSourceInstanceSelector);
15272
14651
  setup(): Promise<void>;
15273
14652
  reset(): Promise<void>;
15274
14653
  openConfiguration({ onClose }?: OpenDataSourceConfigurationOptions): Promise<void>;
@@ -15284,28 +14663,28 @@ declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<DataSou
15284
14663
  findRecords(request?: DataCollectionFindRequest): Promise<DataCollectionFindResponse>;
15285
14664
  }
15286
14665
  declare class IntegrationLevelDataSourceAccessor extends IntegrationLevelElementAccessor<DataSource, UpdateDataSourceRequest> {
15287
- client: IntegrationAppApiClient;
14666
+ client: MembraneApiClient;
15288
14667
  integrationSelector: string;
15289
14668
  dataSourceSelector: string;
15290
- constructor(client: IntegrationAppApiClient, integrationSelector: string, dataSourceSelector: string);
14669
+ constructor(client: MembraneApiClient, integrationSelector: string, dataSourceSelector: string);
15291
14670
  }
15292
14671
  declare class IntegrationLevelDataSourcesListAccessor extends IntegrationLevelElementsListAccessor<DataSource, ListDataSourcesForIntegrationQuery, Omit<CreateDataSourceRequest, 'integrationId'>> {
15293
- client: IntegrationAppApiClient;
14672
+ client: MembraneApiClient;
15294
14673
  integrationSelector: string;
15295
- constructor(client: IntegrationAppApiClient, integrationSelector: string);
14674
+ constructor(client: MembraneApiClient, integrationSelector: string);
15296
14675
  }
15297
14676
  declare class ConnectionLevelDataSourceAccessor extends ConnectionLevelElementAccessor<DataSourceInstance, UpdateDataSourceInstanceRequest> {
15298
- client: IntegrationAppApiClient;
14677
+ client: MembraneApiClient;
15299
14678
  connectionSelector: string;
15300
14679
  dataSourceSelector: string;
15301
14680
  query: InstanceKeyQuery;
15302
- constructor(client: IntegrationAppApiClient, connectionSelector: string, dataSourceSelector: string, query: InstanceKeyQuery);
14681
+ constructor(client: MembraneApiClient, connectionSelector: string, dataSourceSelector: string, query: InstanceKeyQuery);
15303
14682
  openConfiguration(options?: OpenDataSourceConfigurationOptions): Promise<void>;
15304
14683
  }
15305
14684
  declare class ConnectionLevelDataSourcesAccessor extends ConnectionLevelElementsListAccessor<DataSource, ListDataSourceInstancesForConnectionQuery> {
15306
- client: IntegrationAppApiClient;
14685
+ client: MembraneApiClient;
15307
14686
  connectionSelector: string;
15308
- constructor(client: IntegrationAppApiClient, connectionSelector: string);
14687
+ constructor(client: MembraneApiClient, connectionSelector: string);
15309
14688
  }
15310
14689
 
15311
14690
  type ListFieldMappingInstancesForConnectionQuery = CommonInstancesListQuery & {
@@ -15570,10 +14949,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
15570
14949
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
15571
14950
  universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
15572
14951
  integrationId: z.ZodOptional<z.ZodString>;
15573
- dataSourceId: z.ZodString;
15574
- dataSourceKey: z.ZodString;
15575
- appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>;
15576
- direction: z.ZodNativeEnum<typeof FieldMappingDirection>;
14952
+ dataSourceId: z.ZodOptional<z.ZodString>;
14953
+ dataSourceKey: z.ZodOptional<z.ZodString>;
14954
+ appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
14955
+ direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
15577
14956
  defaultImportValue: z.ZodOptional<z.ZodAny>;
15578
14957
  defaultExportValue: z.ZodOptional<z.ZodAny>;
15579
14958
  importValue: z.ZodOptional<z.ZodAny>;
@@ -15587,10 +14966,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
15587
14966
  id: string;
15588
14967
  name: string;
15589
14968
  revision: string;
15590
- dataSourceId: string;
15591
- dataSourceKey: string;
15592
- appSchema: DataSchema;
15593
- direction: FieldMappingDirection;
15594
14969
  key?: string | undefined;
15595
14970
  uuid?: string | undefined;
15596
14971
  description?: string | undefined;
@@ -15604,6 +14979,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
15604
14979
  publishedRevision?: string | undefined;
15605
14980
  universalFieldMappingId?: string | undefined;
15606
14981
  universalFieldMappingRevision?: string | undefined;
14982
+ dataSourceId?: string | undefined;
14983
+ dataSourceKey?: string | undefined;
14984
+ appSchema?: DataSchema | undefined;
14985
+ direction?: FieldMappingDirection | undefined;
15607
14986
  defaultImportValue?: any;
15608
14987
  defaultExportValue?: any;
15609
14988
  importValue?: any;
@@ -15616,10 +14995,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
15616
14995
  id: string;
15617
14996
  name: string;
15618
14997
  revision: string;
15619
- dataSourceId: string;
15620
- dataSourceKey: string;
15621
- appSchema: DataSchema;
15622
- direction: FieldMappingDirection;
15623
14998
  key?: string | undefined;
15624
14999
  uuid?: string | undefined;
15625
15000
  description?: string | undefined;
@@ -15633,6 +15008,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
15633
15008
  publishedRevision?: string | undefined;
15634
15009
  universalFieldMappingId?: string | undefined;
15635
15010
  universalFieldMappingRevision?: string | undefined;
15011
+ dataSourceId?: string | undefined;
15012
+ dataSourceKey?: string | undefined;
15013
+ appSchema?: DataSchema | undefined;
15014
+ direction?: FieldMappingDirection | undefined;
15636
15015
  defaultImportValue?: any;
15637
15016
  defaultExportValue?: any;
15638
15017
  importValue?: any;
@@ -17235,10 +16614,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
17235
16614
  id: string;
17236
16615
  name: string;
17237
16616
  revision: string;
17238
- dataSourceId: string;
17239
- dataSourceKey: string;
17240
- appSchema: DataSchema;
17241
- direction: FieldMappingDirection;
17242
16617
  key?: string | undefined;
17243
16618
  uuid?: string | undefined;
17244
16619
  description?: string | undefined;
@@ -17252,6 +16627,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
17252
16627
  publishedRevision?: string | undefined;
17253
16628
  universalFieldMappingId?: string | undefined;
17254
16629
  universalFieldMappingRevision?: string | undefined;
16630
+ dataSourceId?: string | undefined;
16631
+ dataSourceKey?: string | undefined;
16632
+ appSchema?: DataSchema | undefined;
16633
+ direction?: FieldMappingDirection | undefined;
17255
16634
  defaultImportValue?: any;
17256
16635
  defaultExportValue?: any;
17257
16636
  importValue?: any;
@@ -17616,10 +16995,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
17616
16995
  id: string;
17617
16996
  name: string;
17618
16997
  revision: string;
17619
- dataSourceId: string;
17620
- dataSourceKey: string;
17621
- appSchema: DataSchema;
17622
- direction: FieldMappingDirection;
17623
16998
  key?: string | undefined;
17624
16999
  uuid?: string | undefined;
17625
17000
  description?: string | undefined;
@@ -17633,6 +17008,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
17633
17008
  publishedRevision?: string | undefined;
17634
17009
  universalFieldMappingId?: string | undefined;
17635
17010
  universalFieldMappingRevision?: string | undefined;
17011
+ dataSourceId?: string | undefined;
17012
+ dataSourceKey?: string | undefined;
17013
+ appSchema?: DataSchema | undefined;
17014
+ direction?: FieldMappingDirection | undefined;
17636
17015
  defaultImportValue?: any;
17637
17016
  defaultExportValue?: any;
17638
17017
  importValue?: any;
@@ -17904,27 +17283,27 @@ type FieldMappingInstance = FieldMappingInstanceApiResponse;
17904
17283
  interface OpenFieldMappingInstanceConfigurationOptions extends OpenConfigurationOptions {
17905
17284
  }
17906
17285
  declare class FieldMappingInstancesAccessor extends ElementInstanceListAccessor<FieldMappingInstance, FindFieldMappingInstancesQuery> {
17907
- constructor(client: IntegrationAppApiClient);
17286
+ constructor(client: MembraneApiClient);
17908
17287
  }
17909
17288
  declare class FieldMappingInstanceAccessor extends ElementInstanceAccessor<FieldMappingInstance, FieldMappingInstanceSelector, CreateFieldMappingInstanceRequest, UpdateFieldMappingInstanceRequest> {
17910
17289
  private client;
17911
- constructor(client: IntegrationAppApiClient, selector: string | FieldMappingInstanceSelector);
17290
+ constructor(client: MembraneApiClient, selector: string | FieldMappingInstanceSelector);
17912
17291
  setup(): Promise<void>;
17913
17292
  reset(): Promise<void>;
17914
17293
  openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
17915
17294
  }
17916
17295
  declare class ConnectionLevelFieldMappingAccessor extends ConnectionLevelElementAccessor<FieldMappingInstance, UpdateFieldMappingInstanceRequest> {
17917
- client: IntegrationAppApiClient;
17296
+ client: MembraneApiClient;
17918
17297
  connectionSelector: string;
17919
17298
  fieldMappingSelector: string;
17920
17299
  query: InstanceKeyQuery;
17921
- constructor(client: IntegrationAppApiClient, connectionSelector: string, fieldMappingSelector: string, query: InstanceKeyQuery);
17300
+ constructor(client: MembraneApiClient, connectionSelector: string, fieldMappingSelector: string, query: InstanceKeyQuery);
17922
17301
  openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
17923
17302
  }
17924
17303
  declare class ConnectionLevelFieldMappingsAccessor extends ConnectionLevelElementsListAccessor<FieldMappingInstance, ListFieldMappingInstancesForConnectionQuery> {
17925
- client: IntegrationAppApiClient;
17304
+ client: MembraneApiClient;
17926
17305
  connectionSelector: string;
17927
- constructor(client: IntegrationAppApiClient, connectionSelector: string);
17306
+ constructor(client: MembraneApiClient, connectionSelector: string);
17928
17307
  }
17929
17308
 
17930
17309
  declare const CreateFlowRunRequest: z.ZodObject<{
@@ -18059,7 +17438,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18059
17438
  createdAt: z.ZodString;
18060
17439
  updatedAt: z.ZodString;
18061
17440
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
18062
- outdated: z.ZodOptional<z.ZodBoolean>;
18063
17441
  customized: z.ZodOptional<z.ZodObject<{
18064
17442
  name: z.ZodOptional<z.ZodBoolean>;
18065
17443
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -18099,7 +17477,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18099
17477
  universalFlowId?: string | undefined;
18100
17478
  nodes?: Record<string, any> | undefined;
18101
17479
  flowId?: string | undefined;
18102
- outdated?: boolean | undefined;
18103
17480
  }, {
18104
17481
  id: string;
18105
17482
  name: string;
@@ -18128,7 +17505,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18128
17505
  universalFlowId?: string | undefined;
18129
17506
  nodes?: Record<string, any> | undefined;
18130
17507
  flowId?: string | undefined;
18131
- outdated?: boolean | undefined;
18132
17508
  }>>;
18133
17509
  connection: z.ZodOptional<z.ZodObject<{
18134
17510
  id: z.ZodString;
@@ -18434,7 +17810,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18434
17810
  universalFlowId?: string | undefined;
18435
17811
  nodes?: Record<string, any> | undefined;
18436
17812
  flowId?: string | undefined;
18437
- outdated?: boolean | undefined;
18438
17813
  } | undefined;
18439
17814
  }, {
18440
17815
  id: string;
@@ -18552,7 +17927,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
18552
17927
  universalFlowId?: string | undefined;
18553
17928
  nodes?: Record<string, any> | undefined;
18554
17929
  flowId?: string | undefined;
18555
- outdated?: boolean | undefined;
18556
17930
  } | undefined;
18557
17931
  }>;
18558
17932
  type FlowRunApiResponse = z.infer<typeof FlowRunApiResponse>;
@@ -18622,7 +17996,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18622
17996
  createdAt: z.ZodString;
18623
17997
  updatedAt: z.ZodString;
18624
17998
  state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
18625
- outdated: z.ZodOptional<z.ZodBoolean>;
18626
17999
  customized: z.ZodOptional<z.ZodObject<{
18627
18000
  name: z.ZodOptional<z.ZodBoolean>;
18628
18001
  nodes: z.ZodOptional<z.ZodBoolean>;
@@ -18662,7 +18035,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18662
18035
  universalFlowId?: string | undefined;
18663
18036
  nodes?: Record<string, any> | undefined;
18664
18037
  flowId?: string | undefined;
18665
- outdated?: boolean | undefined;
18666
18038
  }, {
18667
18039
  id: string;
18668
18040
  name: string;
@@ -18691,7 +18063,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18691
18063
  universalFlowId?: string | undefined;
18692
18064
  nodes?: Record<string, any> | undefined;
18693
18065
  flowId?: string | undefined;
18694
- outdated?: boolean | undefined;
18695
18066
  }>>;
18696
18067
  connection: z.ZodOptional<z.ZodObject<{
18697
18068
  id: z.ZodString;
@@ -18997,7 +18368,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
18997
18368
  universalFlowId?: string | undefined;
18998
18369
  nodes?: Record<string, any> | undefined;
18999
18370
  flowId?: string | undefined;
19000
- outdated?: boolean | undefined;
19001
18371
  } | undefined;
19002
18372
  }, {
19003
18373
  id: string;
@@ -19115,7 +18485,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
19115
18485
  universalFlowId?: string | undefined;
19116
18486
  nodes?: Record<string, any> | undefined;
19117
18487
  flowId?: string | undefined;
19118
- outdated?: boolean | undefined;
19119
18488
  } | undefined;
19120
18489
  }>, "many">;
19121
18490
  cursor: z.ZodOptional<z.ZodString>;
@@ -19236,7 +18605,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
19236
18605
  universalFlowId?: string | undefined;
19237
18606
  nodes?: Record<string, any> | undefined;
19238
18607
  flowId?: string | undefined;
19239
- outdated?: boolean | undefined;
19240
18608
  } | undefined;
19241
18609
  }[];
19242
18610
  cursor?: string | undefined;
@@ -19357,7 +18725,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
19357
18725
  universalFlowId?: string | undefined;
19358
18726
  nodes?: Record<string, any> | undefined;
19359
18727
  flowId?: string | undefined;
19360
- outdated?: boolean | undefined;
19361
18728
  } | undefined;
19362
18729
  }[];
19363
18730
  cursor?: string | undefined;
@@ -19371,13 +18738,13 @@ interface OpenFlowInstanceConfigurationOptions extends OpenConfigurationOptions
19371
18738
  interface OpenFlowInstanceEditorOptions extends OpenConfigurationOptions {
19372
18739
  }
19373
18740
  declare class FlowInstancesAccessor extends ElementInstanceListAccessor<FlowInstance, FindFlowInstancesQuery> {
19374
- constructor(client: IntegrationAppApiClient);
18741
+ constructor(client: MembraneApiClient);
19375
18742
  create(data: CreateFlowInstanceRequest): Promise<FlowInstance>;
19376
18743
  }
19377
18744
  declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowInstance, FlowInstanceSelector, CreateFlowInstanceRequest, UpdateFlowInstanceRequest> {
19378
- protected client: IntegrationAppApiClient;
18745
+ protected client: MembraneApiClient;
19379
18746
  protected selector: FlowInstanceSelector | string;
19380
- constructor(client: IntegrationAppApiClient, selector: FlowInstanceSelector | string);
18747
+ constructor(client: MembraneApiClient, selector: FlowInstanceSelector | string);
19381
18748
  enable(): Promise<FlowInstance>;
19382
18749
  disable(): Promise<FlowInstance>;
19383
18750
  updateToLatestFlow(): Promise<FlowInstance>;
@@ -19392,11 +18759,11 @@ declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowInstance,
19392
18759
  run(options?: RunFlowOptions): Promise<FlowRun>;
19393
18760
  }
19394
18761
  declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementAccessor<FlowInstance, UpdateFlowInstanceRequest> {
19395
- client: IntegrationAppApiClient;
18762
+ client: MembraneApiClient;
19396
18763
  connectionSelector: string;
19397
18764
  flowSelector: string;
19398
18765
  query: InstanceKeyQuery;
19399
- constructor(client: IntegrationAppApiClient, connectionSelector: string, flowSelector: string, query: InstanceKeyQuery);
18766
+ constructor(client: MembraneApiClient, connectionSelector: string, flowSelector: string, query: InstanceKeyQuery);
19400
18767
  enable(): Promise<FlowInstance>;
19401
18768
  disable(): Promise<FlowInstance>;
19402
18769
  run(options: {
@@ -19407,19 +18774,19 @@ declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementAccessor
19407
18774
  openEditor(options?: OpenFlowInstanceEditorOptions): Promise<void>;
19408
18775
  }
19409
18776
  declare class ConnectionLevelFlowsAccessor extends ConnectionLevelElementsListAccessor<FlowInstance, ListFlowInstancesForConnectionQuery> {
19410
- client: IntegrationAppApiClient;
18777
+ client: MembraneApiClient;
19411
18778
  connectionSelector: string;
19412
- constructor(client: IntegrationAppApiClient, connectionSelector: string);
18779
+ constructor(client: MembraneApiClient, connectionSelector: string);
19413
18780
  }
19414
18781
 
19415
18782
  declare class ConnectionsAccessor extends ElementInstanceListAccessor<Connection, FindConnectionsQuery> {
19416
- constructor(client: IntegrationAppApiClient);
18783
+ constructor(client: MembraneApiClient);
19417
18784
  create(data: CreateConnectionRequest): Promise<Connection>;
19418
18785
  }
19419
18786
  declare class ConnectionAccessor {
19420
- client: IntegrationAppApiClient;
18787
+ client: MembraneApiClient;
19421
18788
  connectionSelector: string;
19422
- constructor(client: IntegrationAppApiClient, connectionSelector: string);
18789
+ constructor(client: MembraneApiClient, connectionSelector: string);
19423
18790
  get actions(): ConnectionLevelActionsAccessor;
19424
18791
  action(actionSelector: string, query?: InstanceKeyQuery): ConnectionLevelActionAccessor;
19425
18792
  get flows(): ConnectionLevelFlowsAccessor;
@@ -19511,19 +18878,19 @@ declare class ConnectionAccessor {
19511
18878
  getPath(subpath?: string, query?: Record<string, any>): string;
19512
18879
  }
19513
18880
  declare class ConnectionOperationAccessor {
19514
- client: IntegrationAppApiClient;
18881
+ client: MembraneApiClient;
19515
18882
  connectionAccessor: ConnectionAccessor;
19516
18883
  key: string;
19517
- constructor(client: IntegrationAppApiClient, connectionAccessor: ConnectionAccessor, key: string);
18884
+ constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string);
19518
18885
  get(): Promise<OperationSpec>;
19519
18886
  run(request?: OperationRunRequest): Promise<OperationRunResponse>;
19520
18887
  }
19521
18888
  declare class ConnectionDataCollectionAccessor {
19522
- client: IntegrationAppApiClient;
18889
+ client: MembraneApiClient;
19523
18890
  connectionAccessor: ConnectionAccessor;
19524
18891
  key: string;
19525
18892
  parameters: Record<string, any>;
19526
- constructor(client: IntegrationAppApiClient, connectionAccessor: ConnectionAccessor, key: string, parameters: Record<string, any>);
18893
+ constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string, parameters: Record<string, any>);
19527
18894
  get(): Promise<DataCollectionSpec>;
19528
18895
  findById(request?: DataCollectionFindByIdRequest): Promise<DataCollectionFindByIdResponse>;
19529
18896
  list(request?: DataCollectionListRequest): Promise<DataCollectionListResponse>;
@@ -19558,30 +18925,30 @@ declare function createOrUpdateConnection(options?: {
19558
18925
  }): Promise<Connection | undefined>;
19559
18926
 
19560
18927
  declare class FlowsAccessor extends ElementListAccessor<Flow, FindFlowsQuery, CreateFlowRequest> {
19561
- constructor(client: IntegrationAppApiClient);
18928
+ constructor(client: MembraneApiClient);
19562
18929
  }
19563
18930
  declare class FlowAccessor extends ElementAccessor<Flow, UpdateFlowRequest, FlowSelector> {
19564
- constructor(client: IntegrationAppApiClient, selector: FlowSelector | string);
18931
+ constructor(client: MembraneApiClient, selector: FlowSelector | string);
19565
18932
  apply(integrationKeys: string[]): Promise<Flow[]>;
19566
18933
  reset(): Promise<Flow>;
19567
18934
  }
19568
18935
  declare class IntegrationLevelFlowAccessor extends IntegrationLevelElementAccessor<Flow, UpdateFlowRequest> {
19569
- client: IntegrationAppApiClient;
18936
+ client: MembraneApiClient;
19570
18937
  integrationSelector: string;
19571
18938
  flowSelector: string;
19572
- constructor(client: IntegrationAppApiClient, integrationSelector: string, flowSelector: string);
18939
+ constructor(client: MembraneApiClient, integrationSelector: string, flowSelector: string);
19573
18940
  }
19574
18941
  declare class IntegrationLevelFlowsListAccessor extends IntegrationLevelElementsListAccessor<Flow, ListFlowsForIntegrationQuery, Omit<CreateFlowRequest, 'integrationId'>> {
19575
- client: IntegrationAppApiClient;
18942
+ client: MembraneApiClient;
19576
18943
  integrationSelector: string;
19577
- constructor(client: IntegrationAppApiClient, integrationSelector: string);
18944
+ constructor(client: MembraneApiClient, integrationSelector: string);
19578
18945
  }
19579
18946
 
19580
18947
  interface OpenFlowRunEditorOptions extends OpenConfigurationOptions {
19581
18948
  }
19582
18949
  declare class FlowRunsAccessor {
19583
18950
  private readonly client;
19584
- constructor(client: IntegrationAppApiClient);
18951
+ constructor(client: MembraneApiClient);
19585
18952
  find(query: FindFlowRunsQuery): Promise<FindFlowRunsResponse>;
19586
18953
  create(request: CreateFlowRunRequest): Promise<FlowRun>;
19587
18954
  }
@@ -19589,7 +18956,7 @@ declare class FlowRunAccessor {
19589
18956
  private readonly client;
19590
18957
  id: string;
19591
18958
  private baseUri;
19592
- constructor(client: IntegrationAppApiClient, id: string);
18959
+ constructor(client: MembraneApiClient, id: string);
19593
18960
  get(): Promise<FlowRun>;
19594
18961
  stop(): Promise<void>;
19595
18962
  getOutput(): Promise<any>;
@@ -19654,10 +19021,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
19654
19021
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
19655
19022
  universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
19656
19023
  integrationId: z.ZodOptional<z.ZodString>;
19657
- dataSourceId: z.ZodString;
19658
- dataSourceKey: z.ZodString;
19659
- appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>;
19660
- direction: z.ZodNativeEnum<typeof FieldMappingDirection>;
19024
+ dataSourceId: z.ZodOptional<z.ZodString>;
19025
+ dataSourceKey: z.ZodOptional<z.ZodString>;
19026
+ appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
19027
+ direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
19661
19028
  defaultImportValue: z.ZodOptional<z.ZodAny>;
19662
19029
  defaultExportValue: z.ZodOptional<z.ZodAny>;
19663
19030
  importValue: z.ZodOptional<z.ZodAny>;
@@ -19781,10 +19148,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
19781
19148
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
19782
19149
  universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
19783
19150
  integrationId: z.ZodOptional<z.ZodString>;
19784
- dataSourceId: z.ZodString;
19785
- dataSourceKey: z.ZodString;
19786
- appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>;
19787
- direction: z.ZodNativeEnum<typeof FieldMappingDirection>;
19151
+ dataSourceId: z.ZodOptional<z.ZodString>;
19152
+ dataSourceKey: z.ZodOptional<z.ZodString>;
19153
+ appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
19154
+ direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
19788
19155
  defaultImportValue: z.ZodOptional<z.ZodAny>;
19789
19156
  defaultExportValue: z.ZodOptional<z.ZodAny>;
19790
19157
  importValue: z.ZodOptional<z.ZodAny>;
@@ -19798,10 +19165,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
19798
19165
  id: string;
19799
19166
  name: string;
19800
19167
  revision: string;
19801
- dataSourceId: string;
19802
- dataSourceKey: string;
19803
- appSchema: DataSchema;
19804
- direction: FieldMappingDirection;
19805
19168
  key?: string | undefined;
19806
19169
  uuid?: string | undefined;
19807
19170
  description?: string | undefined;
@@ -19815,6 +19178,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
19815
19178
  publishedRevision?: string | undefined;
19816
19179
  universalFieldMappingId?: string | undefined;
19817
19180
  universalFieldMappingRevision?: string | undefined;
19181
+ dataSourceId?: string | undefined;
19182
+ dataSourceKey?: string | undefined;
19183
+ appSchema?: DataSchema | undefined;
19184
+ direction?: FieldMappingDirection | undefined;
19818
19185
  defaultImportValue?: any;
19819
19186
  defaultExportValue?: any;
19820
19187
  importValue?: any;
@@ -19827,10 +19194,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
19827
19194
  id: string;
19828
19195
  name: string;
19829
19196
  revision: string;
19830
- dataSourceId: string;
19831
- dataSourceKey: string;
19832
- appSchema: DataSchema;
19833
- direction: FieldMappingDirection;
19834
19197
  key?: string | undefined;
19835
19198
  uuid?: string | undefined;
19836
19199
  description?: string | undefined;
@@ -19844,6 +19207,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
19844
19207
  publishedRevision?: string | undefined;
19845
19208
  universalFieldMappingId?: string | undefined;
19846
19209
  universalFieldMappingRevision?: string | undefined;
19210
+ dataSourceId?: string | undefined;
19211
+ dataSourceKey?: string | undefined;
19212
+ appSchema?: DataSchema | undefined;
19213
+ direction?: FieldMappingDirection | undefined;
19847
19214
  defaultImportValue?: any;
19848
19215
  defaultExportValue?: any;
19849
19216
  importValue?: any;
@@ -19985,10 +19352,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
19985
19352
  id: string;
19986
19353
  name: string;
19987
19354
  revision: string;
19988
- dataSourceId: string;
19989
- dataSourceKey: string;
19990
- appSchema: DataSchema;
19991
- direction: FieldMappingDirection;
19992
19355
  key?: string | undefined;
19993
19356
  uuid?: string | undefined;
19994
19357
  description?: string | undefined;
@@ -20002,6 +19365,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20002
19365
  publishedRevision?: string | undefined;
20003
19366
  universalFieldMappingId?: string | undefined;
20004
19367
  universalFieldMappingRevision?: string | undefined;
19368
+ dataSourceId?: string | undefined;
19369
+ dataSourceKey?: string | undefined;
19370
+ appSchema?: DataSchema | undefined;
19371
+ direction?: FieldMappingDirection | undefined;
20005
19372
  defaultImportValue?: any;
20006
19373
  defaultExportValue?: any;
20007
19374
  importValue?: any;
@@ -20048,10 +19415,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20048
19415
  id: string;
20049
19416
  name: string;
20050
19417
  revision: string;
20051
- dataSourceId: string;
20052
- dataSourceKey: string;
20053
- appSchema: DataSchema;
20054
- direction: FieldMappingDirection;
20055
19418
  key?: string | undefined;
20056
19419
  uuid?: string | undefined;
20057
19420
  description?: string | undefined;
@@ -20065,6 +19428,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20065
19428
  publishedRevision?: string | undefined;
20066
19429
  universalFieldMappingId?: string | undefined;
20067
19430
  universalFieldMappingRevision?: string | undefined;
19431
+ dataSourceId?: string | undefined;
19432
+ dataSourceKey?: string | undefined;
19433
+ appSchema?: DataSchema | undefined;
19434
+ direction?: FieldMappingDirection | undefined;
20068
19435
  defaultImportValue?: any;
20069
19436
  defaultExportValue?: any;
20070
19437
  importValue?: any;
@@ -20079,10 +19446,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20079
19446
  id: string;
20080
19447
  name: string;
20081
19448
  revision: string;
20082
- dataSourceId: string;
20083
- dataSourceKey: string;
20084
- appSchema: DataSchema;
20085
- direction: FieldMappingDirection;
20086
19449
  key?: string | undefined;
20087
19450
  integration?: {
20088
19451
  id: string;
@@ -20128,6 +19491,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20128
19491
  publishedRevision?: string | undefined;
20129
19492
  universalFieldMappingId?: string | undefined;
20130
19493
  universalFieldMappingRevision?: string | undefined;
19494
+ dataSourceId?: string | undefined;
19495
+ dataSourceKey?: string | undefined;
19496
+ appSchema?: DataSchema | undefined;
19497
+ direction?: FieldMappingDirection | undefined;
20131
19498
  defaultImportValue?: any;
20132
19499
  defaultExportValue?: any;
20133
19500
  importValue?: any;
@@ -20173,10 +19540,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20173
19540
  id: string;
20174
19541
  name: string;
20175
19542
  revision: string;
20176
- dataSourceId: string;
20177
- dataSourceKey: string;
20178
- appSchema: DataSchema;
20179
- direction: FieldMappingDirection;
20180
19543
  key?: string | undefined;
20181
19544
  uuid?: string | undefined;
20182
19545
  description?: string | undefined;
@@ -20190,6 +19553,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20190
19553
  publishedRevision?: string | undefined;
20191
19554
  universalFieldMappingId?: string | undefined;
20192
19555
  universalFieldMappingRevision?: string | undefined;
19556
+ dataSourceId?: string | undefined;
19557
+ dataSourceKey?: string | undefined;
19558
+ appSchema?: DataSchema | undefined;
19559
+ direction?: FieldMappingDirection | undefined;
20193
19560
  defaultImportValue?: any;
20194
19561
  defaultExportValue?: any;
20195
19562
  importValue?: any;
@@ -20204,10 +19571,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20204
19571
  id: string;
20205
19572
  name: string;
20206
19573
  revision: string;
20207
- dataSourceId: string;
20208
- dataSourceKey: string;
20209
- appSchema: DataSchema;
20210
- direction: FieldMappingDirection;
20211
19574
  key?: string | undefined;
20212
19575
  integration?: {
20213
19576
  id: string;
@@ -20253,6 +19616,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20253
19616
  publishedRevision?: string | undefined;
20254
19617
  universalFieldMappingId?: string | undefined;
20255
19618
  universalFieldMappingRevision?: string | undefined;
19619
+ dataSourceId?: string | undefined;
19620
+ dataSourceKey?: string | undefined;
19621
+ appSchema?: DataSchema | undefined;
19622
+ direction?: FieldMappingDirection | undefined;
20256
19623
  defaultImportValue?: any;
20257
19624
  defaultExportValue?: any;
20258
19625
  importValue?: any;
@@ -20298,10 +19665,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20298
19665
  id: string;
20299
19666
  name: string;
20300
19667
  revision: string;
20301
- dataSourceId: string;
20302
- dataSourceKey: string;
20303
- appSchema: DataSchema;
20304
- direction: FieldMappingDirection;
20305
19668
  key?: string | undefined;
20306
19669
  uuid?: string | undefined;
20307
19670
  description?: string | undefined;
@@ -20315,6 +19678,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
20315
19678
  publishedRevision?: string | undefined;
20316
19679
  universalFieldMappingId?: string | undefined;
20317
19680
  universalFieldMappingRevision?: string | undefined;
19681
+ dataSourceId?: string | undefined;
19682
+ dataSourceKey?: string | undefined;
19683
+ appSchema?: DataSchema | undefined;
19684
+ direction?: FieldMappingDirection | undefined;
20318
19685
  defaultImportValue?: any;
20319
19686
  defaultExportValue?: any;
20320
19687
  importValue?: any;
@@ -20330,25 +19697,25 @@ type FieldMappingApiResponse = z.infer<typeof FieldMappingApiResponse>;
20330
19697
  type FieldMapping = FieldMappingApiResponse;
20331
19698
 
20332
19699
  declare class FieldMappingsAccessor extends ElementListAccessor<FieldMapping, FindFieldMappingsQuery, CreateFieldMappingRequest> {
20333
- constructor(client: IntegrationAppApiClient);
19700
+ constructor(client: MembraneApiClient);
20334
19701
  }
20335
19702
  declare class FieldMappingAccessor extends ElementAccessor<FieldMapping, UpdateFieldMappingRequest, FieldMappingSelector> {
20336
- constructor(client: IntegrationAppApiClient, selector: string | FieldMappingSelector);
19703
+ constructor(client: MembraneApiClient, selector: string | FieldMappingSelector);
20337
19704
  getAppSchema(): Promise<any>;
20338
19705
  apply(integrationKeys: string[]): Promise<FieldMapping[]>;
20339
19706
  setup(): Promise<any>;
20340
19707
  reset(): Promise<any>;
20341
19708
  }
20342
19709
  declare class IntegrationLevelFieldMappingAccessor extends IntegrationLevelElementAccessor<FieldMapping, UpdateFieldMappingRequest> {
20343
- client: IntegrationAppApiClient;
19710
+ client: MembraneApiClient;
20344
19711
  integrationSelector: string;
20345
19712
  fieldMappingSelector: string;
20346
- constructor(client: IntegrationAppApiClient, integrationSelector: string, fieldMappingSelector: string);
19713
+ constructor(client: MembraneApiClient, integrationSelector: string, fieldMappingSelector: string);
20347
19714
  }
20348
19715
  declare class IntegrationLevelFieldMappingsListAccessor extends IntegrationLevelElementsListAccessor<FieldMapping, ListFieldMappingsForIntegrationQuery, Omit<CreateFieldMappingRequest, 'integrationId'>> {
20349
- client: IntegrationAppApiClient;
19716
+ client: MembraneApiClient;
20350
19717
  integrationSelector: string;
20351
- constructor(client: IntegrationAppApiClient, integrationSelector: string);
19718
+ constructor(client: MembraneApiClient, integrationSelector: string);
20352
19719
  }
20353
19720
 
20354
19721
  declare const CreateIntegrationRequest: z.ZodObject<{
@@ -20730,13 +20097,13 @@ type Integration = IntegrationApiResponse;
20730
20097
  interface OpenIntegrationUIIntegrationConfigurationOptions extends OpenConfigurationOptions {
20731
20098
  }
20732
20099
  declare class IntegrationsAccessor extends ElementListAccessor<Integration, FindIntegrationsQuery, CreateIntegrationRequest> {
20733
- constructor(client: IntegrationAppApiClient);
20100
+ constructor(client: MembraneApiClient);
20734
20101
  }
20735
20102
  declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateIntegrationRequest> {
20736
20103
  private client;
20737
20104
  private integrationSelector;
20738
20105
  baseUri: string;
20739
- constructor(client: IntegrationAppApiClient, integrationSelector: string);
20106
+ constructor(client: MembraneApiClient, integrationSelector: string);
20740
20107
  get actions(): IntegrationLevelActionsListAccessor;
20741
20108
  action(actionSelector: string): IntegrationLevelActionAccessor;
20742
20109
  get flows(): IntegrationLevelFlowsListAccessor;
@@ -21753,10 +21120,10 @@ type ScenarioApiResponse = z.infer<typeof ScenarioApiResponse>;
21753
21120
  type Scenario = ScenarioApiResponse;
21754
21121
 
21755
21122
  declare class ScenariosAccessor extends ElementListAccessor<Scenario, FindScenariosQuery, CreateScenarioRequest> {
21756
- constructor(client: IntegrationAppApiClient);
21123
+ constructor(client: MembraneApiClient);
21757
21124
  }
21758
21125
  declare class ScenarioAccessor extends ElementAccessor<Scenario, UpdateScenarioRequest> {
21759
- constructor(client: IntegrationAppApiClient, selector: string);
21126
+ constructor(client: MembraneApiClient, selector: string);
21760
21127
  }
21761
21128
 
21762
21129
  interface ScreenBlockApi {
@@ -21814,30 +21181,30 @@ type ScreenApiResponse = typeof ScreenApiResponse._type;
21814
21181
  type Screen = ScreenApiResponse;
21815
21182
 
21816
21183
  declare class ScreensAccessor extends ElementListAccessor<Screen, FindScreensQuery, CreateScreenRequest> {
21817
- constructor(client: IntegrationAppApiClient);
21184
+ constructor(client: MembraneApiClient);
21818
21185
  }
21819
21186
  declare class ScreenAccessor extends ElementAccessor<Screen, UpdateScreenRequest, ScreenSelector> {
21820
- constructor(client: IntegrationAppApiClient, selector: ScreenSelector | string);
21187
+ constructor(client: MembraneApiClient, selector: ScreenSelector | string);
21821
21188
  }
21822
21189
 
21823
21190
  declare class CustomersAccessor extends ElementListAccessor<Customer, FindCustomersQuery, CreateCustomerRequest> {
21824
- constructor(client: IntegrationAppApiClient);
21191
+ constructor(client: MembraneApiClient);
21825
21192
  }
21826
21193
  declare class CustomerAccessor extends ElementAccessor<Customer, UpdateCustomerRequest, CustomerSelector> {
21827
- constructor(client: IntegrationAppApiClient, selector: CustomerSelector | string);
21194
+ constructor(client: MembraneApiClient, selector: CustomerSelector | string);
21828
21195
  }
21829
21196
  declare class UsersAccessor extends CustomersAccessor {
21830
- constructor(client: IntegrationAppApiClient);
21197
+ constructor(client: MembraneApiClient);
21831
21198
  }
21832
21199
  declare class UserAccessor extends CustomerAccessor {
21833
- constructor(client: IntegrationAppApiClient, selector: string);
21200
+ constructor(client: MembraneApiClient, selector: string);
21834
21201
  }
21835
21202
 
21836
21203
  declare class DataLinkTablesAccessor extends ElementListAccessor<BaseDataLinkTable, FindDataLinkTablesQuery, CreateDataLinkTableRequest> {
21837
- constructor(client: IntegrationAppApiClient);
21204
+ constructor(client: MembraneApiClient);
21838
21205
  }
21839
21206
  declare class DataLinkTableAccessor extends ElementAccessor<BaseDataLinkTable, UpdateDataLinkTableRequest> {
21840
- constructor(client: IntegrationAppApiClient, idOrKey: string);
21207
+ constructor(client: MembraneApiClient, idOrKey: string);
21841
21208
  }
21842
21209
 
21843
21210
  interface FindDataLinkTableInstancesQuery extends PaginationQuery {
@@ -22334,21 +21701,21 @@ type DataLinkTableInstanceApiResponse = z.infer<typeof DataLinkTableInstanceApiR
22334
21701
  type DataLinkTableInstance = DataLinkTableInstanceApiResponse;
22335
21702
 
22336
21703
  declare class DataLinkTableInstancesAccessor extends ElementInstanceListAccessor<DataLinkTableInstance, FindDataLinkTableInstancesQuery> {
22337
- constructor(client: IntegrationAppApiClient);
21704
+ constructor(client: MembraneApiClient);
22338
21705
  }
22339
21706
  declare class DataLinkTableInstanceAccessor extends ElementInstanceAccessor<DataLinkTableInstance, DataLinkTableInstanceSelector, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableInstanceRequest> {
22340
21707
  private client;
22341
- constructor(client: IntegrationAppApiClient, selector: string | DataLinkTableInstanceSelector);
21708
+ constructor(client: MembraneApiClient, selector: string | DataLinkTableInstanceSelector);
22342
21709
  findLinks(query?: FindDataLinksInTableQuery): Promise<FindDataLinksResponse>;
22343
21710
  createLink(data: CreateDataLinkRequest): Promise<void>;
22344
21711
  deleteLink(data: DeleteDataLinkRequest): Promise<void>;
22345
21712
  }
22346
21713
 
22347
21714
  declare class AppEventTypesAccessor extends ElementListAccessor<BaseAppEventType, FindAppEventTypesQuery, CreateAppEventTypeRequest> {
22348
- constructor(client: IntegrationAppApiClient);
21715
+ constructor(client: MembraneApiClient);
22349
21716
  }
22350
21717
  declare class AppEventTypeAccessor extends ElementAccessor<BaseAppEventType, UpdateAppEventTypeRequest> {
22351
- constructor(client: IntegrationAppApiClient, idOrKey: string);
21718
+ constructor(client: MembraneApiClient, idOrKey: string);
22352
21719
  }
22353
21720
 
22354
21721
  interface FindAppEventSubscriptionsQuery extends PaginationQuery {
@@ -22665,18 +22032,18 @@ type AppEventSubscriptionApiResponse = z.infer<typeof AppEventSubscriptionApiRes
22665
22032
  type AppEventSubscription = AppEventSubscriptionApiResponse;
22666
22033
 
22667
22034
  declare class AppEventSubscriptionsAccessor extends ElementInstanceListAccessor<AppEventSubscription, FindAppEventSubscriptionsQuery> {
22668
- constructor(client: IntegrationAppApiClient);
22035
+ constructor(client: MembraneApiClient);
22669
22036
  }
22670
22037
  declare class AppEventSubscriptionAccessor extends ElementInstanceAccessor<AppEventSubscription, AppEventSubscriptionSelector, UpdateAppEventSubscriptionRequest, UpdateAppEventSubscriptionRequest> {
22671
- constructor(client: IntegrationAppApiClient, selector: string | AppEventSubscriptionSelector);
22038
+ constructor(client: MembraneApiClient, selector: string | AppEventSubscriptionSelector);
22672
22039
  subscribe(): Promise<void>;
22673
22040
  }
22674
22041
 
22675
22042
  declare class AppDataSchemasAccessor extends ElementListAccessor<BaseAppDataSchema, FindAppDataSchemasQuery, CreateAppDataSchemaRequest> {
22676
- constructor(client: IntegrationAppApiClient);
22043
+ constructor(client: MembraneApiClient);
22677
22044
  }
22678
22045
  declare class AppDataSchemaAccessor extends ElementAccessor<BaseAppDataSchema, UpdateAppDataSchemaRequest> {
22679
- constructor(client: IntegrationAppApiClient, idOrKey: string);
22046
+ constructor(client: MembraneApiClient, idOrKey: string);
22680
22047
  }
22681
22048
 
22682
22049
  interface FindAppDataSchemaInstancesQuery extends PaginationQuery {
@@ -22900,11 +22267,11 @@ type AppDataSchemaInstanceApiResponse = z.infer<typeof AppDataSchemaInstanceApiR
22900
22267
  type AppDataSchemaInstance = AppDataSchemaInstanceApiResponse;
22901
22268
 
22902
22269
  declare class AppDataSchemaInstancesAccessor extends ElementInstanceListAccessor<AppDataSchemaInstance, FindAppDataSchemaInstancesQuery> {
22903
- constructor(client: IntegrationAppApiClient);
22270
+ constructor(client: MembraneApiClient);
22904
22271
  }
22905
22272
  declare class AppDataSchemaInstanceAccessor extends ElementInstanceAccessor<AppDataSchemaInstance, AppDataSchemaInstanceSelector, UpdateAppDataSchemaInstanceRequest, CreateAppDataSchemaInstanceRequest> {
22906
22273
  private client;
22907
- constructor(client: IntegrationAppApiClient, selector: string | AppDataSchemaInstanceSelector);
22274
+ constructor(client: MembraneApiClient, selector: string | AppDataSchemaInstanceSelector);
22908
22275
  setup(): Promise<void>;
22909
22276
  }
22910
22277
 
@@ -23913,12 +23280,12 @@ type ExternalEvent = z.infer<typeof ExternalEvent>;
23913
23280
  type ExternalEventApiResponse = ExternalEvent;
23914
23281
 
23915
23282
  declare class ExternalEventSubscriptionsAccessor extends ElementInstanceListAccessor<ExternalEventSubscription, FindExternalEventSubscriptionsQuery> {
23916
- constructor(client: IntegrationAppApiClient);
23283
+ constructor(client: MembraneApiClient);
23917
23284
  }
23918
23285
  declare class ExternalEventSubscriptionAccessor {
23919
23286
  private client;
23920
23287
  private id;
23921
- constructor(client: IntegrationAppApiClient, id: string);
23288
+ constructor(client: MembraneApiClient, id: string);
23922
23289
  get(): Promise<ExternalEventSubscription>;
23923
23290
  setup(): Promise<void>;
23924
23291
  subscribe(): Promise<void>;
@@ -26677,7 +26044,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
26677
26044
  type AppEventLogRecordApiResponse = z.infer<typeof AppEventLogRecordApiResponse>;
26678
26045
  type AppEvent = AppEventLogRecordApiResponse;
26679
26046
 
26680
- declare class DependencyError extends IntegrationAppError {
26047
+ declare class DependencyError extends MembraneError {
26681
26048
  constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
26682
26049
  }
26683
26050
 
@@ -26870,7 +26237,7 @@ declare const EDITABLE_LIMITS: string[];
26870
26237
 
26871
26238
  declare class SelfAccessor {
26872
26239
  private client;
26873
- constructor(client: IntegrationAppApiClient);
26240
+ constructor(client: MembraneApiClient);
26874
26241
  get(): Promise<Customer>;
26875
26242
  patch(data: Partial<{
26876
26243
  credentials: any;
@@ -27096,10 +26463,12 @@ interface ResolveFormulaParams {
27096
26463
  dataLinkTableKey: string;
27097
26464
  recordId: string;
27098
26465
  }) => Promise<string | undefined>;
27099
- resolveLookup?: ({ lookup, schema, }: {
26466
+ resolveLookup?: ({ lookup, schema, fullValue, }: {
27100
26467
  lookup: LookupValue;
27101
26468
  schema: DataSchema | undefined;
26469
+ fullValue: unknown;
27102
26470
  }) => Promise<string | undefined>;
26471
+ fullValue?: unknown;
27103
26472
  }
27104
26473
  declare abstract class DataBuilderFormulaBase<ArgsType = any> implements DataBuilderFormula {
27105
26474
  type: DataBuilderFormulaType;
@@ -27121,7 +26490,7 @@ declare function injectFormulaCatalog(getFormulaFn: any, isFormulaFn: any, hasFo
27121
26490
 
27122
26491
  declare function buildData(value: any, variables?: any): any;
27123
26492
  declare function buildValue(value: any, variables: any): any;
27124
- declare function resolveValue<T = unknown>(value: unknown, params: ResolveFormulaParams): Promise<T>;
26493
+ declare function __resolveValue<T = unknown>(value: unknown, params: ResolveFormulaParams): Promise<T>;
27125
26494
  declare function transformVars(value: any, transformations: Record<string, any>): any;
27126
26495
  declare function valueToString(value: any, variablesSchema: any): string;
27127
26496
  declare function resolveFormulas<T = unknown>(value: any, params: ResolveFormulaParams): Promise<T>;
@@ -27577,7 +26946,7 @@ declare function hasFormulas(value: any): any;
27577
26946
  declare function getFormula(value: any): DataBuilderFormulaBase | undefined;
27578
26947
 
27579
26948
  declare function getErrorFromData(data: any): any;
27580
- declare function extractIntegrationAppErrorData(error: any): ErrorData;
26949
+ declare function extractMembraneErrorData(error: any): ErrorData;
27581
26950
 
27582
26951
  interface DataField {
27583
26952
  name: string;
@@ -27783,6 +27152,7 @@ interface Org {
27783
27152
  limits?: OrgLimits;
27784
27153
  lastThirtyDayUsagePercent?: number;
27785
27154
  todayUsagePercent?: number;
27155
+ featureFlags?: string[];
27786
27156
  }
27787
27157
  declare enum OrgUserRole {
27788
27158
  Admin = "admin",
@@ -27867,13 +27237,13 @@ interface WorkspaceSyncEvent {
27867
27237
  elementId: string;
27868
27238
  }
27869
27239
 
27870
- interface OpenIntegrationAppConfigurationOptions extends OpenConfigurationOptions {
27240
+ interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
27871
27241
  }
27872
- declare class IntegrationAppClient extends IntegrationAppApiClient {
27873
- constructor(options: IntegrationAppClientOptions);
27242
+ declare class MembraneClient extends MembraneApiClient {
27243
+ constructor(options: MembraneClientOptions);
27874
27244
  get self(): SelfAccessor;
27875
27245
  get flows(): FlowsAccessor;
27876
- open({ onClose }?: OpenIntegrationAppConfigurationOptions): Promise<void>;
27246
+ open({ onClose }?: OpenMembraneConfigurationOptions): Promise<void>;
27877
27247
  action(selector: string | ActionSelector): ActionAccessor;
27878
27248
  get actions(): ActionsAccessor;
27879
27249
  screen(selector: string | ScreenSelector): ScreenAccessor;
@@ -27919,5 +27289,5 @@ declare class IntegrationAppClient extends IntegrationAppApiClient {
27919
27289
  connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
27920
27290
  }
27921
27291
 
27922
- export { ACTIONS, AccessDeniedError, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseScenario, 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, 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, ConnectorAuthMethodTypes, ConnectorCopilotFileChunkTopicKey, ConnectorCopilotSuggestionType, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CopilotActionStatus, CopilotActionType, CopilotActivityScope, CopilotActivityType, CopilotTaskStatus, CopilotTaskType, CreateActionInstanceRequest, CreateActionRequest, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateScenarioRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, 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, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields$1 as ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationsQuery, FindScenariosQuery, FlowAccessor, FlowApiResponse, 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, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, IntegrationAccessor, IntegrationApiResponse, IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListDataSourcesForIntegrationQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, ListFlowsForIntegrationQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenNewConnectionOptions, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunFlowOptions, ScenarioAccessor, ScenarioApiResponse, ScenarioElement, ScenarioElementApi, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenarioToDo, ScenarioToDoApi, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateScenarioRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractIntegrationAppErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, 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, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isIntegrationAppError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, resolveValue, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
27292
+ export { ACTIONS, AccessDeniedError, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseScenario, 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, 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, ConnectorAuthMethodTypes, ConnectorCopilotFileChunkTopicKey, ConnectorCopilotSuggestionType, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CopilotActionStatus, CopilotActionType, CopilotActivityScope, CopilotActivityType, CopilotTaskStatus, CopilotTaskType, CreateActionInstanceRequest, CreateActionRequest, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateScenarioRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, 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, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields$1 as ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationsQuery, FindScenariosQuery, FlowAccessor, FlowApiResponse, 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, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListDataSourcesForIntegrationQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, ListFlowsForIntegrationQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenNewConnectionOptions, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunFlowOptions, ScenarioAccessor, ScenarioApiResponse, ScenarioElement, ScenarioElementApi, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenarioToDo, ScenarioToDoApi, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateScenarioRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, 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, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
27923
27293
  export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseConnector, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthOAuth1, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthType, ConnectorCopilotSuggestion, ConnectorCopilotSuggestionAction, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorSpec, ConnectorUdmCollectionMapping, ConnectorUdmListLitem, ConnectorUdmSpec, ConnectorUiSpec, CopilotAction, CopilotActionReference, CopilotActivity, CopilotActivityDataTask, CopilotActivityNotificationData, CopilotTask, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateDataLinkTableRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, 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, DataLocationPointer, 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, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgLimits, OrgUser, OrgWorkspace, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, Workspace, WorkspaceElementCalculateStateResult, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };