@membranehq/sdk 0.8.1 → 0.8.3

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.
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import https from 'https';
3
+ import * as _axios from 'axios';
3
4
  import { AxiosRequestConfig } from 'axios';
4
5
  import { Readable } from 'node:stream';
5
6
 
@@ -102,6 +103,179 @@ declare class CustomCodeError extends MembraneError {
102
103
  constructor(arg: ErrorConstructorArg);
103
104
  }
104
105
 
106
+ interface ConfigurationStateResult {
107
+ state: ConfigurationState;
108
+ message?: string;
109
+ errors?: ErrorData[];
110
+ }
111
+ declare enum ConfigurationState {
112
+ CONFIGURED = "CONFIGURED",
113
+ NOT_CONFIGURED = "NOT_CONFIGURED"
114
+ }
115
+ declare enum WorkspaceElementType {
116
+ Customer = "customer",
117
+ Connector = "connector",
118
+ Integration = "integration",
119
+ Flow = "flow",
120
+ FlowInstance = "flow-instance",
121
+ FlowRun = "flow-run",
122
+ Action = "action",
123
+ Package = "package",
124
+ ActionInstance = "action-instance",
125
+ Connection = "connection",
126
+ FieldMapping = "field-mapping",
127
+ FieldMappingInstance = "field-mapping-instance",
128
+ DataSource = "data-source",
129
+ DataSourceInstance = "data-source-instance",
130
+ DataLinkTable = "data-link-table",
131
+ DataLinkTableInstance = "data-link-table-instance",
132
+ AppEventType = "app-event-type",
133
+ AppEventSubscription = "app-event-subscription",
134
+ AppEventLogRecord = "app-event-log-record",
135
+ AppDataSchema = "app-data-schema",
136
+ AppDataSchemaInstance = "app-data-schema-instance",
137
+ ExternalEventSubscription = "external-event-subscription",
138
+ ExternalEventLogRecord = "external-event-log-record",
139
+ ExternalEventPull = "external-event-pull",
140
+ DataCollection = "data-collection",
141
+ Screen = "screen",
142
+ ActionRunLogRecord = "action-run-log-record"
143
+ }
144
+ declare enum WorkspaceEventType {
145
+ ConnectionCreated = "connection.created",
146
+ ConnectionDeleted = "connection.deleted",
147
+ ConnectionDisconnected = "connection.disconnected",
148
+ ConnectionReconnected = "connection.reconnected",
149
+ FlowRunQueued = "flowRun.queued",
150
+ FlowRunStarted = "flowRun.started",
151
+ FlowRunCompleted = "flowRun.completed",
152
+ FlowRunFailed = "flowRun.failed",
153
+ FlowRunStopped = "flowRun.stopped"
154
+ }
155
+ declare enum WorkspaceElementState {
156
+ CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
157
+ SETUP_FAILED = "SETUP_FAILED",
158
+ READY = "READY"
159
+ }
160
+ declare enum WorkspaceElementDependencyType {
161
+ Configuration = "CONFIGURATION",
162
+ Parent = "PARENT"
163
+ }
164
+ interface WorkspaceElementCalculateStateResult {
165
+ state: WorkspaceElementState;
166
+ errors?: ErrorData[];
167
+ }
168
+ declare const BaseWorkspaceElement: z.ZodObject<{
169
+ id: z.ZodString;
170
+ name: z.ZodString;
171
+ }, z.core.$strip>;
172
+ type BaseWorkspaceElement = z.infer<typeof BaseWorkspaceElement>;
173
+ declare const BaseMembraneInterfaceEditableProperties: z.ZodObject<{
174
+ key: z.ZodOptional<z.ZodString>;
175
+ name: z.ZodOptional<z.ZodString>;
176
+ uuid: z.ZodOptional<z.ZodString>;
177
+ description: z.ZodOptional<z.ZodString>;
178
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
179
+ }, z.core.$strip>;
180
+ declare const BaseMembraneInterfaceReadOnlyProperties: z.ZodObject<{
181
+ name: z.ZodString;
182
+ state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
183
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
184
+ revision: z.ZodOptional<z.ZodString>;
185
+ createdAt: z.ZodOptional<z.ZodString>;
186
+ updatedAt: z.ZodOptional<z.ZodString>;
187
+ archivedAt: z.ZodOptional<z.ZodString>;
188
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
189
+ }, z.core.$strip>;
190
+ declare const BaseMembraneInterface: z.ZodObject<{
191
+ id: z.ZodString;
192
+ key: z.ZodOptional<z.ZodString>;
193
+ uuid: z.ZodOptional<z.ZodString>;
194
+ description: z.ZodOptional<z.ZodString>;
195
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
196
+ name: z.ZodString;
197
+ state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
198
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
199
+ revision: z.ZodOptional<z.ZodString>;
200
+ createdAt: z.ZodOptional<z.ZodString>;
201
+ updatedAt: z.ZodOptional<z.ZodString>;
202
+ archivedAt: z.ZodOptional<z.ZodString>;
203
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
204
+ }, z.core.$strip>;
205
+ type BaseMembraneInterface = z.infer<typeof BaseMembraneInterface>;
206
+ declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObject<{
207
+ key: z.ZodOptional<z.ZodString>;
208
+ name: z.ZodOptional<z.ZodString>;
209
+ uuid: z.ZodOptional<z.ZodString>;
210
+ description: z.ZodOptional<z.ZodString>;
211
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
212
+ integrationId: z.ZodOptional<z.ZodString>;
213
+ parentId: z.ZodOptional<z.ZodString>;
214
+ }, z.core.$strip>;
215
+ declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObject<{
216
+ name: z.ZodString;
217
+ state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
218
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
219
+ revision: z.ZodOptional<z.ZodString>;
220
+ createdAt: z.ZodOptional<z.ZodString>;
221
+ updatedAt: z.ZodOptional<z.ZodString>;
222
+ archivedAt: z.ZodOptional<z.ZodString>;
223
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
224
+ isCustomized: z.ZodOptional<z.ZodBoolean>;
225
+ }, z.core.$strip>;
226
+ declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
227
+ integrationKey: z.ZodOptional<z.ZodString>;
228
+ connectionId: z.ZodOptional<z.ZodString>;
229
+ instanceKey: z.ZodOptional<z.ZodString>;
230
+ }, z.core.$strip>;
231
+ type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
232
+ declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
233
+ integrationKey: z.ZodOptional<z.ZodString>;
234
+ connectionId: z.ZodOptional<z.ZodString>;
235
+ instanceKey: z.ZodOptional<z.ZodString>;
236
+ search: z.ZodOptional<z.ZodString>;
237
+ limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
238
+ cursor: z.ZodOptional<z.ZodString>;
239
+ includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
240
+ layer: z.ZodOptional<z.ZodEnum<{
241
+ connection: "connection";
242
+ integration: "integration";
243
+ universal: "universal";
244
+ }>>;
245
+ integrationId: z.ZodOptional<z.ZodString>;
246
+ parentId: z.ZodOptional<z.ZodString>;
247
+ universalParentId: z.ZodOptional<z.ZodString>;
248
+ userId: z.ZodOptional<z.ZodString>;
249
+ }, z.core.$strip>;
250
+ type FindIntegrationLevelMembraneInterfaceQuery = z.infer<typeof FindIntegrationLevelMembraneInterfaceQuery>;
251
+ declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
252
+ id: z.ZodString;
253
+ key: z.ZodOptional<z.ZodString>;
254
+ uuid: z.ZodOptional<z.ZodString>;
255
+ description: z.ZodOptional<z.ZodString>;
256
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
257
+ integrationId: z.ZodOptional<z.ZodString>;
258
+ parentId: z.ZodOptional<z.ZodString>;
259
+ name: z.ZodString;
260
+ state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
261
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
262
+ revision: z.ZodOptional<z.ZodString>;
263
+ createdAt: z.ZodOptional<z.ZodString>;
264
+ updatedAt: z.ZodOptional<z.ZodString>;
265
+ archivedAt: z.ZodOptional<z.ZodString>;
266
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
267
+ isCustomized: z.ZodOptional<z.ZodBoolean>;
268
+ }, z.core.$strip>;
269
+ type BaseIntegrationLevelMembraneInterface = z.infer<typeof BaseIntegrationLevelMembraneInterface>;
270
+ interface WorkspaceElementReference {
271
+ type: WorkspaceElementType;
272
+ id: string;
273
+ }
274
+ interface WorkspaceElementDependency extends WorkspaceElementReference {
275
+ dependencyType: WorkspaceElementDependencyType;
276
+ data?: unknown;
277
+ }
278
+
105
279
  declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
106
280
  declare const IncludeArchivedQuery: z.ZodObject<{
107
281
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
@@ -409,6 +583,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
409
583
  }, z.core.$strip>], "type">;
410
584
  type ConnectionMessagePayload = z.infer<typeof ConnectionMessagePayload>;
411
585
 
586
+ declare const axios: _axios.AxiosInstance;
412
587
  interface MembraneClientOptions {
413
588
  token?: string;
414
589
  fetchToken?: () => Promise<string>;
@@ -439,160 +614,6 @@ declare class MembraneApiClient {
439
614
  private handleRequestError;
440
615
  }
441
616
 
442
- interface ConfigurationStateResult {
443
- state: ConfigurationState;
444
- message?: string;
445
- errors?: ErrorData[];
446
- }
447
- declare enum ConfigurationState {
448
- CONFIGURED = "CONFIGURED",
449
- NOT_CONFIGURED = "NOT_CONFIGURED"
450
- }
451
- declare enum WorkspaceElementType {
452
- Customer = "customer",
453
- Connector = "connector",
454
- Integration = "integration",
455
- Flow = "flow",
456
- FlowInstance = "flow-instance",
457
- FlowRun = "flow-run",
458
- Action = "action",
459
- Package = "package",
460
- ActionInstance = "action-instance",
461
- Connection = "connection",
462
- FieldMapping = "field-mapping",
463
- FieldMappingInstance = "field-mapping-instance",
464
- DataSource = "data-source",
465
- DataSourceInstance = "data-source-instance",
466
- DataLinkTable = "data-link-table",
467
- DataLinkTableInstance = "data-link-table-instance",
468
- AppEventType = "app-event-type",
469
- AppEventSubscription = "app-event-subscription",
470
- AppEventLogRecord = "app-event-log-record",
471
- AppDataSchema = "app-data-schema",
472
- AppDataSchemaInstance = "app-data-schema-instance",
473
- ExternalEventSubscription = "external-event-subscription",
474
- ExternalEventLogRecord = "external-event-log-record",
475
- ExternalEventPull = "external-event-pull",
476
- DataCollection = "data-collection",
477
- Screen = "screen",
478
- ActionRunLogRecord = "action-run-log-record"
479
- }
480
- declare enum WorkspaceEventType {
481
- ConnectionCreated = "connection.created",
482
- ConnectionDeleted = "connection.deleted",
483
- ConnectionDisconnected = "connection.disconnected",
484
- ConnectionReconnected = "connection.reconnected",
485
- FlowRunQueued = "flowRun.queued",
486
- FlowRunStarted = "flowRun.started",
487
- FlowRunCompleted = "flowRun.completed",
488
- FlowRunFailed = "flowRun.failed",
489
- FlowRunStopped = "flowRun.stopped"
490
- }
491
- declare enum WorkspaceElementState {
492
- CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
493
- SETUP_FAILED = "SETUP_FAILED",
494
- READY = "READY"
495
- }
496
- declare enum WorkspaceElementDependencyType {
497
- Configuration = "CONFIGURATION",
498
- Parent = "PARENT"
499
- }
500
- interface WorkspaceElementCalculateStateResult {
501
- state: WorkspaceElementState;
502
- errors?: ErrorData[];
503
- }
504
- declare const BaseWorkspaceElement: z.ZodObject<{
505
- id: z.ZodString;
506
- name: z.ZodString;
507
- }, z.core.$strip>;
508
- type BaseWorkspaceElement = z.infer<typeof BaseWorkspaceElement>;
509
- declare const BaseMembraneInterfaceEditableProperties: z.ZodObject<{
510
- key: z.ZodOptional<z.ZodString>;
511
- name: z.ZodOptional<z.ZodString>;
512
- uuid: z.ZodOptional<z.ZodString>;
513
- description: z.ZodOptional<z.ZodString>;
514
- meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
515
- }, z.core.$strip>;
516
- declare const BaseMembraneInterfaceReadOnlyProperties: z.ZodObject<{
517
- name: z.ZodString;
518
- state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
519
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
520
- revision: z.ZodOptional<z.ZodString>;
521
- createdAt: z.ZodOptional<z.ZodString>;
522
- updatedAt: z.ZodOptional<z.ZodString>;
523
- archivedAt: z.ZodOptional<z.ZodString>;
524
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
525
- }, z.core.$strip>;
526
- declare const BaseMembraneInterface: z.ZodObject<{
527
- id: z.ZodString;
528
- key: z.ZodOptional<z.ZodString>;
529
- uuid: z.ZodOptional<z.ZodString>;
530
- description: z.ZodOptional<z.ZodString>;
531
- meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
532
- name: z.ZodString;
533
- state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
534
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
535
- revision: z.ZodOptional<z.ZodString>;
536
- createdAt: z.ZodOptional<z.ZodString>;
537
- updatedAt: z.ZodOptional<z.ZodString>;
538
- archivedAt: z.ZodOptional<z.ZodString>;
539
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
540
- }, z.core.$strip>;
541
- type BaseMembraneInterface = z.infer<typeof BaseMembraneInterface>;
542
- declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObject<{
543
- key: z.ZodOptional<z.ZodString>;
544
- name: z.ZodOptional<z.ZodString>;
545
- uuid: z.ZodOptional<z.ZodString>;
546
- description: z.ZodOptional<z.ZodString>;
547
- meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
548
- integrationId: z.ZodOptional<z.ZodString>;
549
- parentId: z.ZodOptional<z.ZodString>;
550
- }, z.core.$strip>;
551
- declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObject<{
552
- name: z.ZodString;
553
- state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
554
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
555
- revision: z.ZodOptional<z.ZodString>;
556
- createdAt: z.ZodOptional<z.ZodString>;
557
- updatedAt: z.ZodOptional<z.ZodString>;
558
- archivedAt: z.ZodOptional<z.ZodString>;
559
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
560
- isCustomized: z.ZodOptional<z.ZodBoolean>;
561
- }, z.core.$strip>;
562
- declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
563
- integrationKey: z.ZodOptional<z.ZodString>;
564
- connectionId: z.ZodOptional<z.ZodString>;
565
- instanceKey: z.ZodOptional<z.ZodString>;
566
- }, z.core.$strip>;
567
- type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
568
- declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
569
- id: z.ZodString;
570
- key: z.ZodOptional<z.ZodString>;
571
- uuid: z.ZodOptional<z.ZodString>;
572
- description: z.ZodOptional<z.ZodString>;
573
- meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
574
- integrationId: z.ZodOptional<z.ZodString>;
575
- parentId: z.ZodOptional<z.ZodString>;
576
- name: z.ZodString;
577
- state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
578
- errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
579
- revision: z.ZodOptional<z.ZodString>;
580
- createdAt: z.ZodOptional<z.ZodString>;
581
- updatedAt: z.ZodOptional<z.ZodString>;
582
- archivedAt: z.ZodOptional<z.ZodString>;
583
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
584
- isCustomized: z.ZodOptional<z.ZodBoolean>;
585
- }, z.core.$strip>;
586
- type BaseIntegrationLevelMembraneInterface = z.infer<typeof BaseIntegrationLevelMembraneInterface>;
587
- interface WorkspaceElementReference {
588
- type: WorkspaceElementType;
589
- id: string;
590
- }
591
- interface WorkspaceElementDependency extends WorkspaceElementReference {
592
- dependencyType: WorkspaceElementDependencyType;
593
- data?: unknown;
594
- }
595
-
596
617
  interface BaseElementInstance {
597
618
  id: string;
598
619
  }
@@ -940,9 +961,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
940
961
  id: z.ZodString;
941
962
  key: z.ZodOptional<z.ZodString>;
942
963
  description: z.ZodOptional<z.ZodString>;
964
+ integrationId: z.ZodOptional<z.ZodString>;
943
965
  uuid: z.ZodOptional<z.ZodString>;
944
966
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
945
- integrationId: z.ZodOptional<z.ZodString>;
946
967
  universalDataSourceId: z.ZodOptional<z.ZodString>;
947
968
  udm: z.ZodOptional<z.ZodString>;
948
969
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -2060,9 +2081,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
2060
2081
  id: z.ZodString;
2061
2082
  key: z.ZodOptional<z.ZodString>;
2062
2083
  description: z.ZodOptional<z.ZodString>;
2084
+ integrationId: z.ZodOptional<z.ZodString>;
2063
2085
  uuid: z.ZodOptional<z.ZodString>;
2064
2086
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2065
- integrationId: z.ZodOptional<z.ZodString>;
2066
2087
  universalDataSourceId: z.ZodOptional<z.ZodString>;
2067
2088
  udm: z.ZodOptional<z.ZodString>;
2068
2089
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -2125,9 +2146,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
2125
2146
  id: z.ZodString;
2126
2147
  key: z.ZodOptional<z.ZodString>;
2127
2148
  description: z.ZodOptional<z.ZodString>;
2149
+ integrationId: z.ZodOptional<z.ZodString>;
2128
2150
  uuid: z.ZodOptional<z.ZodString>;
2129
2151
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2130
- integrationId: z.ZodOptional<z.ZodString>;
2131
2152
  universalDataSourceId: z.ZodOptional<z.ZodString>;
2132
2153
  udm: z.ZodOptional<z.ZodString>;
2133
2154
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -2203,10 +2224,10 @@ type FindDataSourcesQuery = z.infer<typeof FindDataSourcesQuery>;
2203
2224
  declare const CreateDataSourceRequest: z.ZodObject<{
2204
2225
  key: z.ZodOptional<z.ZodString>;
2205
2226
  description: z.ZodOptional<z.ZodString>;
2227
+ integrationId: z.ZodOptional<z.ZodString>;
2206
2228
  name: z.ZodOptional<z.ZodString>;
2207
2229
  uuid: z.ZodOptional<z.ZodString>;
2208
2230
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2209
- integrationId: z.ZodOptional<z.ZodString>;
2210
2231
  universalDataSourceId: z.ZodOptional<z.ZodString>;
2211
2232
  udm: z.ZodOptional<z.ZodString>;
2212
2233
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -2219,10 +2240,10 @@ type CreateDataSourceRequest = z.infer<typeof CreateDataSourceRequest>;
2219
2240
  declare const UpdateDataSourceRequest: z.ZodObject<{
2220
2241
  key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2221
2242
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2243
+ integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2222
2244
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2223
2245
  uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2224
2246
  meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
2225
- integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2226
2247
  universalDataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2227
2248
  udm: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2228
2249
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -3808,10 +3829,10 @@ declare enum FieldMappingDirection {
3808
3829
  declare const FieldMappingEditableProperties: z.ZodObject<{
3809
3830
  key: z.ZodOptional<z.ZodString>;
3810
3831
  description: z.ZodOptional<z.ZodString>;
3832
+ integrationId: z.ZodOptional<z.ZodString>;
3811
3833
  name: z.ZodOptional<z.ZodString>;
3812
3834
  uuid: z.ZodOptional<z.ZodString>;
3813
3835
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3814
- integrationId: z.ZodOptional<z.ZodString>;
3815
3836
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
3816
3837
  dataSourceKey: z.ZodOptional<z.ZodString>;
3817
3838
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -3830,9 +3851,9 @@ declare const BaseFieldMapping: z.ZodObject<{
3830
3851
  id: z.ZodString;
3831
3852
  key: z.ZodOptional<z.ZodString>;
3832
3853
  description: z.ZodOptional<z.ZodString>;
3854
+ integrationId: z.ZodOptional<z.ZodString>;
3833
3855
  uuid: z.ZodOptional<z.ZodString>;
3834
3856
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3835
- integrationId: z.ZodOptional<z.ZodString>;
3836
3857
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
3837
3858
  dataSourceKey: z.ZodOptional<z.ZodString>;
3838
3859
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4002,9 +4023,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
4002
4023
  id: z.ZodString;
4003
4024
  key: z.ZodOptional<z.ZodString>;
4004
4025
  description: z.ZodOptional<z.ZodString>;
4026
+ integrationId: z.ZodOptional<z.ZodString>;
4005
4027
  uuid: z.ZodOptional<z.ZodString>;
4006
4028
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
4007
- integrationId: z.ZodOptional<z.ZodString>;
4008
4029
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4009
4030
  dataSourceKey: z.ZodOptional<z.ZodString>;
4010
4031
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4186,9 +4207,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
4186
4207
  id: z.ZodString;
4187
4208
  key: z.ZodOptional<z.ZodString>;
4188
4209
  description: z.ZodOptional<z.ZodString>;
4210
+ integrationId: z.ZodOptional<z.ZodString>;
4189
4211
  uuid: z.ZodOptional<z.ZodString>;
4190
4212
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
4191
- integrationId: z.ZodOptional<z.ZodString>;
4192
4213
  universalDataSourceId: z.ZodOptional<z.ZodString>;
4193
4214
  udm: z.ZodOptional<z.ZodString>;
4194
4215
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -4606,9 +4627,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
4606
4627
  id: z.ZodString;
4607
4628
  key: z.ZodOptional<z.ZodString>;
4608
4629
  description: z.ZodOptional<z.ZodString>;
4630
+ integrationId: z.ZodOptional<z.ZodString>;
4609
4631
  uuid: z.ZodOptional<z.ZodString>;
4610
4632
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
4611
- integrationId: z.ZodOptional<z.ZodString>;
4612
4633
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4613
4634
  dataSourceKey: z.ZodOptional<z.ZodString>;
4614
4635
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4676,9 +4697,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
4676
4697
  id: z.ZodString;
4677
4698
  key: z.ZodOptional<z.ZodString>;
4678
4699
  description: z.ZodOptional<z.ZodString>;
4700
+ integrationId: z.ZodOptional<z.ZodString>;
4679
4701
  uuid: z.ZodOptional<z.ZodString>;
4680
4702
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
4681
- integrationId: z.ZodOptional<z.ZodString>;
4682
4703
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4683
4704
  dataSourceKey: z.ZodOptional<z.ZodString>;
4684
4705
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4759,10 +4780,10 @@ type FindFieldMappingsQuery = z.infer<typeof FindFieldMappingsQuery>;
4759
4780
  declare const CreateFieldMappingRequest: z.ZodObject<{
4760
4781
  key: z.ZodOptional<z.ZodString>;
4761
4782
  description: z.ZodOptional<z.ZodString>;
4783
+ integrationId: z.ZodOptional<z.ZodString>;
4762
4784
  name: z.ZodOptional<z.ZodString>;
4763
4785
  uuid: z.ZodOptional<z.ZodString>;
4764
4786
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
4765
- integrationId: z.ZodOptional<z.ZodString>;
4766
4787
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4767
4788
  dataSourceKey: z.ZodOptional<z.ZodString>;
4768
4789
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4780,10 +4801,10 @@ type CreateFieldMappingRequest = z.infer<typeof CreateFieldMappingRequest>;
4780
4801
  declare const UpdateFieldMappingRequest: z.ZodObject<{
4781
4802
  key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4782
4803
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4804
+ integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4783
4805
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4784
4806
  uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4785
4807
  meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
4786
- integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4787
4808
  universalFieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4788
4809
  dataSourceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4789
4810
  dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -6470,16 +6491,22 @@ declare const ActionApiResponse: z.ZodObject<{
6470
6491
  type ActionApiResponse = z.infer<typeof ActionApiResponse>;
6471
6492
  type Action = ActionApiResponse;
6472
6493
  declare const FindActionsQuery: z.ZodObject<{
6494
+ integrationKey: z.ZodOptional<z.ZodString>;
6495
+ connectionId: z.ZodOptional<z.ZodString>;
6496
+ instanceKey: z.ZodOptional<z.ZodString>;
6497
+ search: z.ZodOptional<z.ZodString>;
6473
6498
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
6474
6499
  cursor: z.ZodOptional<z.ZodString>;
6500
+ includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6501
+ layer: z.ZodOptional<z.ZodEnum<{
6502
+ connection: "connection";
6503
+ integration: "integration";
6504
+ universal: "universal";
6505
+ }>>;
6475
6506
  integrationId: z.ZodOptional<z.ZodString>;
6476
6507
  parentId: z.ZodOptional<z.ZodString>;
6477
6508
  universalParentId: z.ZodOptional<z.ZodString>;
6478
- integrationKey: z.ZodOptional<z.ZodString>;
6479
- search: z.ZodOptional<z.ZodString>;
6480
- includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6481
6509
  userId: z.ZodOptional<z.ZodString>;
6482
- connectionId: z.ZodOptional<z.ZodString>;
6483
6510
  }, z.core.$strip>;
6484
6511
  type FindActionsQuery = z.infer<typeof FindActionsQuery>;
6485
6512
  declare const CreateActionRequest: z.ZodObject<{
@@ -6746,29 +6773,41 @@ type ActionInstance = ActionInstanceApiResponse;
6746
6773
  interface ActionInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
6747
6774
  }
6748
6775
  declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
6776
+ integrationKey: z.ZodOptional<z.ZodString>;
6777
+ connectionId: z.ZodOptional<z.ZodString>;
6778
+ instanceKey: z.ZodOptional<z.ZodString>;
6779
+ search: z.ZodOptional<z.ZodString>;
6749
6780
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
6750
6781
  cursor: z.ZodOptional<z.ZodString>;
6782
+ includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6783
+ layer: z.ZodOptional<z.ZodEnum<{
6784
+ connection: "connection";
6785
+ integration: "integration";
6786
+ universal: "universal";
6787
+ }>>;
6751
6788
  integrationId: z.ZodOptional<z.ZodString>;
6752
6789
  parentId: z.ZodOptional<z.ZodString>;
6753
6790
  universalParentId: z.ZodOptional<z.ZodString>;
6754
- integrationKey: z.ZodOptional<z.ZodString>;
6755
- search: z.ZodOptional<z.ZodString>;
6756
- includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6757
6791
  userId: z.ZodOptional<z.ZodString>;
6758
- connectionId: z.ZodOptional<z.ZodString>;
6759
6792
  }, z.core.$strip>;
6760
6793
  type ListActionInstancesForConnectionQuery = FindActionsQuery;
6761
6794
  declare const FindActionInstancesQuery: z.ZodObject<{
6795
+ integrationKey: z.ZodOptional<z.ZodString>;
6796
+ connectionId: z.ZodOptional<z.ZodString>;
6797
+ instanceKey: z.ZodOptional<z.ZodString>;
6798
+ search: z.ZodOptional<z.ZodString>;
6762
6799
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
6763
6800
  cursor: z.ZodOptional<z.ZodString>;
6801
+ includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6802
+ layer: z.ZodOptional<z.ZodEnum<{
6803
+ connection: "connection";
6804
+ integration: "integration";
6805
+ universal: "universal";
6806
+ }>>;
6764
6807
  integrationId: z.ZodOptional<z.ZodString>;
6765
6808
  parentId: z.ZodOptional<z.ZodString>;
6766
6809
  universalParentId: z.ZodOptional<z.ZodString>;
6767
- integrationKey: z.ZodOptional<z.ZodString>;
6768
- search: z.ZodOptional<z.ZodString>;
6769
- includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6770
6810
  userId: z.ZodOptional<z.ZodString>;
6771
- connectionId: z.ZodOptional<z.ZodString>;
6772
6811
  }, z.core.$strip>;
6773
6812
  type FindActionInstancesQuery = FindActionsQuery;
6774
6813
  interface ActionSelector extends IntegrationSpecificElementSelector {
@@ -8561,6 +8600,13 @@ interface WorkspaceSyncEvent {
8561
8600
  type: WorkspaceSyncEventType;
8562
8601
  elementType: WorkspaceElementType;
8563
8602
  elementId: string;
8603
+ data?: any;
8604
+ }
8605
+ declare enum ConnectorFileUpdateType {
8606
+ ConnectorFileUpdated = "connector-file-updated",
8607
+ ConnectorFileDeleted = "connector-file-deleted",
8608
+ ConnectorDirectoryRenamed = "connector-directory-renamed",
8609
+ ConnectorDirectoryDeleted = "connector-directory-deleted"
8564
8610
  }
8565
8611
 
8566
8612
  declare enum ScenarioTemplateCategory {
@@ -8947,10 +8993,10 @@ declare const MIN_PULL_UPDATES_INTERVAL_SECONDS: number;
8947
8993
  declare const DataSourceEditableProperties: z.ZodObject<{
8948
8994
  key: z.ZodOptional<z.ZodString>;
8949
8995
  description: z.ZodOptional<z.ZodString>;
8996
+ integrationId: z.ZodOptional<z.ZodString>;
8950
8997
  name: z.ZodOptional<z.ZodString>;
8951
8998
  uuid: z.ZodOptional<z.ZodString>;
8952
8999
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
8953
- integrationId: z.ZodOptional<z.ZodString>;
8954
9000
  universalDataSourceId: z.ZodOptional<z.ZodString>;
8955
9001
  udm: z.ZodOptional<z.ZodString>;
8956
9002
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -8964,9 +9010,9 @@ declare const BaseDataSource: z.ZodObject<{
8964
9010
  id: z.ZodString;
8965
9011
  key: z.ZodOptional<z.ZodString>;
8966
9012
  description: z.ZodOptional<z.ZodString>;
9013
+ integrationId: z.ZodOptional<z.ZodString>;
8967
9014
  uuid: z.ZodOptional<z.ZodString>;
8968
9015
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
8969
- integrationId: z.ZodOptional<z.ZodString>;
8970
9016
  universalDataSourceId: z.ZodOptional<z.ZodString>;
8971
9017
  udm: z.ZodOptional<z.ZodString>;
8972
9018
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -9632,5 +9678,5 @@ declare function getParentNodeKeys(flow: Flow | FlowInstance, nodeKey: string):
9632
9678
  declare function getUpstreamNodeKeys(flow: Flow | FlowInstance, nodeKey: string): string[];
9633
9679
  declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
9634
9680
 
9635
- 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, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, 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, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, 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, DataSourceEditableProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, 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, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunActionRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, 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, getBusinessDaysBetween, 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, isBusinessDay, 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 };
9681
+ 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, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, 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, ConnectorFileUpdateType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CopilotActionStatus, CopilotActionType, CopilotActivityScope, CopilotActivityType, CopilotTaskStatus, CopilotTaskType, CreateActionInstanceRequest, CreateActionRequest, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, 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, DataSourceEditableProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, 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, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, axios as MembraneAxiosInstance, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunActionRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, 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, getBusinessDaysBetween, 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, isBusinessDay, 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 };
9636
9682
  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, 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, 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, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgLimits, OrgUser, OrgWorkspace, Package, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableRequest, UpdateFieldMappingInstanceRequest, 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 };