@membranehq/sdk 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +41 -23
- package/dist/bundle.js +67 -7
- package/dist/bundle.js.map +1 -1
- package/dist/dts/sse/workspace-elements.d.ts +7 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +40 -22
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +4 -4
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +4 -4
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +2 -2
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -2
- package/dist/dts/workspace-elements/types.d.ts +19 -0
- package/dist/index.browser.d.mts +226 -182
- package/dist/index.browser.d.ts +226 -182
- package/dist/index.browser.js +57 -50
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +57 -51
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +226 -182
- package/dist/index.node.d.ts +226 -182
- package/dist/index.node.js +57 -50
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +57 -51
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.d.ts
CHANGED
|
@@ -102,6 +102,179 @@ declare class CustomCodeError extends MembraneError {
|
|
|
102
102
|
constructor(arg: ErrorConstructorArg);
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
+
interface ConfigurationStateResult {
|
|
106
|
+
state: ConfigurationState;
|
|
107
|
+
message?: string;
|
|
108
|
+
errors?: ErrorData[];
|
|
109
|
+
}
|
|
110
|
+
declare enum ConfigurationState {
|
|
111
|
+
CONFIGURED = "CONFIGURED",
|
|
112
|
+
NOT_CONFIGURED = "NOT_CONFIGURED"
|
|
113
|
+
}
|
|
114
|
+
declare enum WorkspaceElementType {
|
|
115
|
+
Customer = "customer",
|
|
116
|
+
Connector = "connector",
|
|
117
|
+
Integration = "integration",
|
|
118
|
+
Flow = "flow",
|
|
119
|
+
FlowInstance = "flow-instance",
|
|
120
|
+
FlowRun = "flow-run",
|
|
121
|
+
Action = "action",
|
|
122
|
+
Package = "package",
|
|
123
|
+
ActionInstance = "action-instance",
|
|
124
|
+
Connection = "connection",
|
|
125
|
+
FieldMapping = "field-mapping",
|
|
126
|
+
FieldMappingInstance = "field-mapping-instance",
|
|
127
|
+
DataSource = "data-source",
|
|
128
|
+
DataSourceInstance = "data-source-instance",
|
|
129
|
+
DataLinkTable = "data-link-table",
|
|
130
|
+
DataLinkTableInstance = "data-link-table-instance",
|
|
131
|
+
AppEventType = "app-event-type",
|
|
132
|
+
AppEventSubscription = "app-event-subscription",
|
|
133
|
+
AppEventLogRecord = "app-event-log-record",
|
|
134
|
+
AppDataSchema = "app-data-schema",
|
|
135
|
+
AppDataSchemaInstance = "app-data-schema-instance",
|
|
136
|
+
ExternalEventSubscription = "external-event-subscription",
|
|
137
|
+
ExternalEventLogRecord = "external-event-log-record",
|
|
138
|
+
ExternalEventPull = "external-event-pull",
|
|
139
|
+
DataCollection = "data-collection",
|
|
140
|
+
Screen = "screen",
|
|
141
|
+
ActionRunLogRecord = "action-run-log-record"
|
|
142
|
+
}
|
|
143
|
+
declare enum WorkspaceEventType {
|
|
144
|
+
ConnectionCreated = "connection.created",
|
|
145
|
+
ConnectionDeleted = "connection.deleted",
|
|
146
|
+
ConnectionDisconnected = "connection.disconnected",
|
|
147
|
+
ConnectionReconnected = "connection.reconnected",
|
|
148
|
+
FlowRunQueued = "flowRun.queued",
|
|
149
|
+
FlowRunStarted = "flowRun.started",
|
|
150
|
+
FlowRunCompleted = "flowRun.completed",
|
|
151
|
+
FlowRunFailed = "flowRun.failed",
|
|
152
|
+
FlowRunStopped = "flowRun.stopped"
|
|
153
|
+
}
|
|
154
|
+
declare enum WorkspaceElementState {
|
|
155
|
+
CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
|
|
156
|
+
SETUP_FAILED = "SETUP_FAILED",
|
|
157
|
+
READY = "READY"
|
|
158
|
+
}
|
|
159
|
+
declare enum WorkspaceElementDependencyType {
|
|
160
|
+
Configuration = "CONFIGURATION",
|
|
161
|
+
Parent = "PARENT"
|
|
162
|
+
}
|
|
163
|
+
interface WorkspaceElementCalculateStateResult {
|
|
164
|
+
state: WorkspaceElementState;
|
|
165
|
+
errors?: ErrorData[];
|
|
166
|
+
}
|
|
167
|
+
declare const BaseWorkspaceElement: z.ZodObject<{
|
|
168
|
+
id: z.ZodString;
|
|
169
|
+
name: z.ZodString;
|
|
170
|
+
}, z.core.$strip>;
|
|
171
|
+
type BaseWorkspaceElement = z.infer<typeof BaseWorkspaceElement>;
|
|
172
|
+
declare const BaseMembraneInterfaceEditableProperties: z.ZodObject<{
|
|
173
|
+
key: z.ZodOptional<z.ZodString>;
|
|
174
|
+
name: z.ZodOptional<z.ZodString>;
|
|
175
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
176
|
+
description: z.ZodOptional<z.ZodString>;
|
|
177
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
178
|
+
}, z.core.$strip>;
|
|
179
|
+
declare const BaseMembraneInterfaceReadOnlyProperties: z.ZodObject<{
|
|
180
|
+
name: z.ZodString;
|
|
181
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
182
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
183
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
184
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
185
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
186
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
187
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
188
|
+
}, z.core.$strip>;
|
|
189
|
+
declare const BaseMembraneInterface: z.ZodObject<{
|
|
190
|
+
id: z.ZodString;
|
|
191
|
+
key: z.ZodOptional<z.ZodString>;
|
|
192
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
193
|
+
description: z.ZodOptional<z.ZodString>;
|
|
194
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
195
|
+
name: z.ZodString;
|
|
196
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
197
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
198
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
199
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
200
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
201
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
202
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
203
|
+
}, z.core.$strip>;
|
|
204
|
+
type BaseMembraneInterface = z.infer<typeof BaseMembraneInterface>;
|
|
205
|
+
declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObject<{
|
|
206
|
+
key: z.ZodOptional<z.ZodString>;
|
|
207
|
+
name: z.ZodOptional<z.ZodString>;
|
|
208
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
209
|
+
description: z.ZodOptional<z.ZodString>;
|
|
210
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
211
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
212
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
213
|
+
}, z.core.$strip>;
|
|
214
|
+
declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObject<{
|
|
215
|
+
name: z.ZodString;
|
|
216
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
217
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
218
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
219
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
220
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
221
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
222
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
223
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
224
|
+
}, z.core.$strip>;
|
|
225
|
+
declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
|
|
226
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
227
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
228
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
229
|
+
}, z.core.$strip>;
|
|
230
|
+
type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
|
|
231
|
+
declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
232
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
233
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
234
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
235
|
+
search: z.ZodOptional<z.ZodString>;
|
|
236
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
237
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
238
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
239
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
240
|
+
connection: "connection";
|
|
241
|
+
integration: "integration";
|
|
242
|
+
universal: "universal";
|
|
243
|
+
}>>;
|
|
244
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
245
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
246
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
247
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
248
|
+
}, z.core.$strip>;
|
|
249
|
+
type FindIntegrationLevelMembraneInterfaceQuery = z.infer<typeof FindIntegrationLevelMembraneInterfaceQuery>;
|
|
250
|
+
declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
251
|
+
id: z.ZodString;
|
|
252
|
+
key: z.ZodOptional<z.ZodString>;
|
|
253
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
254
|
+
description: z.ZodOptional<z.ZodString>;
|
|
255
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
256
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
257
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
258
|
+
name: z.ZodString;
|
|
259
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
260
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
261
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
262
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
263
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
264
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
265
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
266
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
267
|
+
}, z.core.$strip>;
|
|
268
|
+
type BaseIntegrationLevelMembraneInterface = z.infer<typeof BaseIntegrationLevelMembraneInterface>;
|
|
269
|
+
interface WorkspaceElementReference {
|
|
270
|
+
type: WorkspaceElementType;
|
|
271
|
+
id: string;
|
|
272
|
+
}
|
|
273
|
+
interface WorkspaceElementDependency extends WorkspaceElementReference {
|
|
274
|
+
dependencyType: WorkspaceElementDependencyType;
|
|
275
|
+
data?: unknown;
|
|
276
|
+
}
|
|
277
|
+
|
|
105
278
|
declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
|
|
106
279
|
declare const IncludeArchivedQuery: z.ZodObject<{
|
|
107
280
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
@@ -439,160 +612,6 @@ declare class MembraneApiClient {
|
|
|
439
612
|
private handleRequestError;
|
|
440
613
|
}
|
|
441
614
|
|
|
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
615
|
interface BaseElementInstance {
|
|
597
616
|
id: string;
|
|
598
617
|
}
|
|
@@ -940,9 +959,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
940
959
|
id: z.ZodString;
|
|
941
960
|
key: z.ZodOptional<z.ZodString>;
|
|
942
961
|
description: z.ZodOptional<z.ZodString>;
|
|
962
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
943
963
|
uuid: z.ZodOptional<z.ZodString>;
|
|
944
964
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
945
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
946
965
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
947
966
|
udm: z.ZodOptional<z.ZodString>;
|
|
948
967
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2060,9 +2079,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
2060
2079
|
id: z.ZodString;
|
|
2061
2080
|
key: z.ZodOptional<z.ZodString>;
|
|
2062
2081
|
description: z.ZodOptional<z.ZodString>;
|
|
2082
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
2063
2083
|
uuid: z.ZodOptional<z.ZodString>;
|
|
2064
2084
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2065
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
2066
2085
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
2067
2086
|
udm: z.ZodOptional<z.ZodString>;
|
|
2068
2087
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2125,9 +2144,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
2125
2144
|
id: z.ZodString;
|
|
2126
2145
|
key: z.ZodOptional<z.ZodString>;
|
|
2127
2146
|
description: z.ZodOptional<z.ZodString>;
|
|
2147
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
2128
2148
|
uuid: z.ZodOptional<z.ZodString>;
|
|
2129
2149
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2130
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
2131
2150
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
2132
2151
|
udm: z.ZodOptional<z.ZodString>;
|
|
2133
2152
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2203,10 +2222,10 @@ type FindDataSourcesQuery = z.infer<typeof FindDataSourcesQuery>;
|
|
|
2203
2222
|
declare const CreateDataSourceRequest: z.ZodObject<{
|
|
2204
2223
|
key: z.ZodOptional<z.ZodString>;
|
|
2205
2224
|
description: z.ZodOptional<z.ZodString>;
|
|
2225
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
2206
2226
|
name: z.ZodOptional<z.ZodString>;
|
|
2207
2227
|
uuid: z.ZodOptional<z.ZodString>;
|
|
2208
2228
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2209
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
2210
2229
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
2211
2230
|
udm: z.ZodOptional<z.ZodString>;
|
|
2212
2231
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2219,10 +2238,10 @@ type CreateDataSourceRequest = z.infer<typeof CreateDataSourceRequest>;
|
|
|
2219
2238
|
declare const UpdateDataSourceRequest: z.ZodObject<{
|
|
2220
2239
|
key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2221
2240
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2241
|
+
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2222
2242
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2223
2243
|
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2224
2244
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2225
|
-
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2226
2245
|
universalDataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2227
2246
|
udm: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2228
2247
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -3808,10 +3827,10 @@ declare enum FieldMappingDirection {
|
|
|
3808
3827
|
declare const FieldMappingEditableProperties: z.ZodObject<{
|
|
3809
3828
|
key: z.ZodOptional<z.ZodString>;
|
|
3810
3829
|
description: z.ZodOptional<z.ZodString>;
|
|
3830
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
3811
3831
|
name: z.ZodOptional<z.ZodString>;
|
|
3812
3832
|
uuid: z.ZodOptional<z.ZodString>;
|
|
3813
3833
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3814
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
3815
3834
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3816
3835
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
3817
3836
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -3830,9 +3849,9 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
3830
3849
|
id: z.ZodString;
|
|
3831
3850
|
key: z.ZodOptional<z.ZodString>;
|
|
3832
3851
|
description: z.ZodOptional<z.ZodString>;
|
|
3852
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
3833
3853
|
uuid: z.ZodOptional<z.ZodString>;
|
|
3834
3854
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3835
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
3836
3855
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3837
3856
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
3838
3857
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4002,9 +4021,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4002
4021
|
id: z.ZodString;
|
|
4003
4022
|
key: z.ZodOptional<z.ZodString>;
|
|
4004
4023
|
description: z.ZodOptional<z.ZodString>;
|
|
4024
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4005
4025
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4006
4026
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4007
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
4008
4027
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4009
4028
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4010
4029
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4186,9 +4205,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4186
4205
|
id: z.ZodString;
|
|
4187
4206
|
key: z.ZodOptional<z.ZodString>;
|
|
4188
4207
|
description: z.ZodOptional<z.ZodString>;
|
|
4208
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4189
4209
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4190
4210
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4191
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
4192
4211
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
4193
4212
|
udm: z.ZodOptional<z.ZodString>;
|
|
4194
4213
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4606,9 +4625,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
4606
4625
|
id: z.ZodString;
|
|
4607
4626
|
key: z.ZodOptional<z.ZodString>;
|
|
4608
4627
|
description: z.ZodOptional<z.ZodString>;
|
|
4628
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4609
4629
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4610
4630
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4611
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
4612
4631
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4613
4632
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4614
4633
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4676,9 +4695,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
4676
4695
|
id: z.ZodString;
|
|
4677
4696
|
key: z.ZodOptional<z.ZodString>;
|
|
4678
4697
|
description: z.ZodOptional<z.ZodString>;
|
|
4698
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4679
4699
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4680
4700
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4681
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
4682
4701
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4683
4702
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4684
4703
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4759,10 +4778,10 @@ type FindFieldMappingsQuery = z.infer<typeof FindFieldMappingsQuery>;
|
|
|
4759
4778
|
declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
4760
4779
|
key: z.ZodOptional<z.ZodString>;
|
|
4761
4780
|
description: z.ZodOptional<z.ZodString>;
|
|
4781
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4762
4782
|
name: z.ZodOptional<z.ZodString>;
|
|
4763
4783
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4764
4784
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4765
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
4766
4785
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4767
4786
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4768
4787
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4780,10 +4799,10 @@ type CreateFieldMappingRequest = z.infer<typeof CreateFieldMappingRequest>;
|
|
|
4780
4799
|
declare const UpdateFieldMappingRequest: z.ZodObject<{
|
|
4781
4800
|
key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4782
4801
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4802
|
+
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4783
4803
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4784
4804
|
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4785
4805
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4786
|
-
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4787
4806
|
universalFieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4788
4807
|
dataSourceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4789
4808
|
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6470,16 +6489,22 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
6470
6489
|
type ActionApiResponse = z.infer<typeof ActionApiResponse>;
|
|
6471
6490
|
type Action = ActionApiResponse;
|
|
6472
6491
|
declare const FindActionsQuery: z.ZodObject<{
|
|
6492
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
6493
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6494
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6495
|
+
search: z.ZodOptional<z.ZodString>;
|
|
6473
6496
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6474
6497
|
cursor: z.ZodOptional<z.ZodString>;
|
|
6498
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
6499
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
6500
|
+
connection: "connection";
|
|
6501
|
+
integration: "integration";
|
|
6502
|
+
universal: "universal";
|
|
6503
|
+
}>>;
|
|
6475
6504
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6476
6505
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6477
6506
|
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
6507
|
userId: z.ZodOptional<z.ZodString>;
|
|
6482
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6483
6508
|
}, z.core.$strip>;
|
|
6484
6509
|
type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
6485
6510
|
declare const CreateActionRequest: z.ZodObject<{
|
|
@@ -6746,29 +6771,41 @@ type ActionInstance = ActionInstanceApiResponse;
|
|
|
6746
6771
|
interface ActionInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
6747
6772
|
}
|
|
6748
6773
|
declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
6774
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
6775
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6776
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6777
|
+
search: z.ZodOptional<z.ZodString>;
|
|
6749
6778
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6750
6779
|
cursor: z.ZodOptional<z.ZodString>;
|
|
6780
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
6781
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
6782
|
+
connection: "connection";
|
|
6783
|
+
integration: "integration";
|
|
6784
|
+
universal: "universal";
|
|
6785
|
+
}>>;
|
|
6751
6786
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6752
6787
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6753
6788
|
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
6789
|
userId: z.ZodOptional<z.ZodString>;
|
|
6758
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6759
6790
|
}, z.core.$strip>;
|
|
6760
6791
|
type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
6761
6792
|
declare const FindActionInstancesQuery: z.ZodObject<{
|
|
6793
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
6794
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6795
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6796
|
+
search: z.ZodOptional<z.ZodString>;
|
|
6762
6797
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6763
6798
|
cursor: z.ZodOptional<z.ZodString>;
|
|
6799
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
6800
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
6801
|
+
connection: "connection";
|
|
6802
|
+
integration: "integration";
|
|
6803
|
+
universal: "universal";
|
|
6804
|
+
}>>;
|
|
6764
6805
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6765
6806
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6766
6807
|
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
6808
|
userId: z.ZodOptional<z.ZodString>;
|
|
6771
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6772
6809
|
}, z.core.$strip>;
|
|
6773
6810
|
type FindActionInstancesQuery = FindActionsQuery;
|
|
6774
6811
|
interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
@@ -8561,6 +8598,13 @@ interface WorkspaceSyncEvent {
|
|
|
8561
8598
|
type: WorkspaceSyncEventType;
|
|
8562
8599
|
elementType: WorkspaceElementType;
|
|
8563
8600
|
elementId: string;
|
|
8601
|
+
data?: any;
|
|
8602
|
+
}
|
|
8603
|
+
declare enum ConnectorFileUpdateType {
|
|
8604
|
+
ConnectorFileUpdated = "connector-file-updated",
|
|
8605
|
+
ConnectorFileDeleted = "connector-file-deleted",
|
|
8606
|
+
ConnectorDirectoryRenamed = "connector-directory-renamed",
|
|
8607
|
+
ConnectorDirectoryDeleted = "connector-directory-deleted"
|
|
8564
8608
|
}
|
|
8565
8609
|
|
|
8566
8610
|
declare enum ScenarioTemplateCategory {
|
|
@@ -8947,10 +8991,10 @@ declare const MIN_PULL_UPDATES_INTERVAL_SECONDS: number;
|
|
|
8947
8991
|
declare const DataSourceEditableProperties: z.ZodObject<{
|
|
8948
8992
|
key: z.ZodOptional<z.ZodString>;
|
|
8949
8993
|
description: z.ZodOptional<z.ZodString>;
|
|
8994
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8950
8995
|
name: z.ZodOptional<z.ZodString>;
|
|
8951
8996
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8952
8997
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8953
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
8954
8998
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
8955
8999
|
udm: z.ZodOptional<z.ZodString>;
|
|
8956
9000
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8964,9 +9008,9 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
8964
9008
|
id: z.ZodString;
|
|
8965
9009
|
key: z.ZodOptional<z.ZodString>;
|
|
8966
9010
|
description: z.ZodOptional<z.ZodString>;
|
|
9011
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8967
9012
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8968
9013
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8969
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
8970
9014
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
8971
9015
|
udm: z.ZodOptional<z.ZodString>;
|
|
8972
9016
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9632,5 +9676,5 @@ declare function getParentNodeKeys(flow: Flow | FlowInstance, nodeKey: string):
|
|
|
9632
9676
|
declare function getUpstreamNodeKeys(flow: Flow | FlowInstance, nodeKey: string): string[];
|
|
9633
9677
|
declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
|
|
9634
9678
|
|
|
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 };
|
|
9679
|
+
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, 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
9680
|
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 };
|