@membranehq/sdk 0.18.1 → 0.19.0
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 +198 -9
- package/dist/bundle.js +1066 -765
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +8 -1
- package/dist/dts/accessors/integrations-accessors.d.ts +7 -0
- package/dist/dts/agent/session.d.ts +3 -2
- package/dist/dts/agent/worker-contracts.d.ts +4 -0
- package/dist/dts/auth/auth-context-permissions.d.ts +2 -0
- package/dist/dts/client-tokens/types.d.ts +1 -1
- package/dist/dts/oauth/types.d.ts +1 -0
- package/dist/dts/oauth/types.test.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +4 -1
- package/dist/dts/validation/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +32 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +34 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +52 -6
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +44 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +50 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +26 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +44 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +12 -4
- package/dist/dts/workspace-elements/base/action-instances/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/connections/index.d.ts +27 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +13 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/packages/index.d.ts +7 -2
- package/dist/dts/workspace-elements/types.d.ts +13 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
- package/dist/dts/workspaces/types.d.ts +4 -0
- package/dist/index.browser.d.mts +567 -91
- package/dist/index.browser.d.ts +567 -91
- package/dist/index.browser.js +184 -103
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +180 -104
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +567 -91
- package/dist/index.node.d.ts +567 -91
- package/dist/index.node.js +184 -103
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +180 -104
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.node.d.mts
CHANGED
|
@@ -166,6 +166,8 @@ declare enum WorkspaceEventType {
|
|
|
166
166
|
AlertCreated = "alert.created"
|
|
167
167
|
}
|
|
168
168
|
declare enum WorkspaceElementState {
|
|
169
|
+
BUILDING = "BUILDING",
|
|
170
|
+
CLIENT_ACTION_REQUIRED = "CLIENT_ACTION_REQUIRED",
|
|
169
171
|
CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
|
|
170
172
|
SETUP_FAILED = "SETUP_FAILED",
|
|
171
173
|
READY = "READY"
|
|
@@ -218,6 +220,10 @@ declare const BaseMembraneInterface: z.ZodObject<{
|
|
|
218
220
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
219
221
|
}, z.core.$strip>;
|
|
220
222
|
type BaseMembraneInterface = z.infer<typeof BaseMembraneInterface>;
|
|
223
|
+
declare const IntentProperties: z.ZodObject<{
|
|
224
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
225
|
+
}, z.core.$strip>;
|
|
226
|
+
type IntentProperties = z.infer<typeof IntentProperties>;
|
|
221
227
|
declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObject<{
|
|
222
228
|
uuid: z.ZodOptional<z.ZodString>;
|
|
223
229
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -233,6 +239,9 @@ declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObje
|
|
|
233
239
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
234
240
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
235
241
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
242
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
243
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
244
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
236
245
|
}, z.core.$strip>;
|
|
237
246
|
type BaseIntegrationLevelMembraneInterfaceEditableProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceEditableProperties>;
|
|
238
247
|
declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObject<{
|
|
@@ -256,6 +265,7 @@ declare const BaseIntegrationLevelMembraneInterfaceExportProperties: z.ZodObject
|
|
|
256
265
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
257
266
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
258
267
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
268
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
259
269
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
260
270
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
261
271
|
}, z.core.$strip>;
|
|
@@ -315,6 +325,9 @@ declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
|
315
325
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
316
326
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
317
327
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
328
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
329
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
330
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
318
331
|
name: z.ZodString;
|
|
319
332
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
320
333
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
@@ -433,6 +446,9 @@ declare const FieldMappingEditableProperties: z.ZodObject<{
|
|
|
433
446
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
434
447
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
435
448
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
449
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
450
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
451
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
436
452
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
437
453
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
438
454
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -463,6 +479,7 @@ declare const FieldMappingExportProperties: z.ZodObject<{
|
|
|
463
479
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
464
480
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
465
481
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
482
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
466
483
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
467
484
|
dataSourceUuid: z.ZodOptional<z.ZodString>;
|
|
468
485
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -491,6 +508,9 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
491
508
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
492
509
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
493
510
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
511
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
512
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
513
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
494
514
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
495
515
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
496
516
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -552,6 +572,9 @@ declare const BaseFieldMappingInstance: z.ZodObject<{
|
|
|
552
572
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
553
573
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
554
574
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
575
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
576
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
577
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
555
578
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
556
579
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
557
580
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -639,6 +662,9 @@ declare const ActionEditableProperties: z.ZodObject<{
|
|
|
639
662
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
640
663
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
641
664
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
665
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
666
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
667
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
642
668
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
643
669
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
644
670
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -660,6 +686,7 @@ declare const ActionExportProperties: z.ZodObject<{
|
|
|
660
686
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
661
687
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
662
688
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
689
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
663
690
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
664
691
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
665
692
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -679,6 +706,8 @@ declare const BaseAction: z.ZodObject<{
|
|
|
679
706
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
680
707
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
681
708
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
709
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
710
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
682
711
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
683
712
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
684
713
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -696,6 +725,7 @@ declare const BaseAction: z.ZodObject<{
|
|
|
696
725
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
697
726
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
698
727
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
728
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
699
729
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
700
730
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
701
731
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -717,6 +747,8 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
717
747
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
718
748
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
719
749
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
750
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
751
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
720
752
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
721
753
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
722
754
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -734,6 +766,7 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
734
766
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
735
767
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
736
768
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
769
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
737
770
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
738
771
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
739
772
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6748,6 +6781,7 @@ declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
6748
6781
|
}>>;
|
|
6749
6782
|
name: z.ZodOptional<z.ZodString>;
|
|
6750
6783
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6784
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
6751
6785
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6752
6786
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6753
6787
|
proxy: "proxy";
|
|
@@ -6926,7 +6960,6 @@ declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
6926
6960
|
proxyKey: z.ZodOptional<z.ZodString>;
|
|
6927
6961
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
6928
6962
|
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6929
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
6930
6963
|
}, z.core.$strip>;
|
|
6931
6964
|
type ConnectorExportProperties = z.infer<typeof ConnectorExportProperties>;
|
|
6932
6965
|
interface ConnectorVersionExport {
|
|
@@ -9351,6 +9384,13 @@ declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
9351
9384
|
name: z.ZodOptional<z.ZodString>;
|
|
9352
9385
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9353
9386
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
9387
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
9388
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9389
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
9390
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
9391
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
9392
|
+
connectorKey: z.ZodOptional<z.ZodString>;
|
|
9393
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
9354
9394
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
9355
9395
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
9356
9396
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -9358,6 +9398,16 @@ declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
9358
9398
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
9359
9399
|
}, z.core.$strip>;
|
|
9360
9400
|
type ConnectionEditableProperties = z.infer<typeof ConnectionEditableProperties>;
|
|
9401
|
+
declare const ConnectionClientAction: z.ZodObject<{
|
|
9402
|
+
type: z.ZodEnum<{
|
|
9403
|
+
connect: "connect";
|
|
9404
|
+
"provide-input": "provide-input";
|
|
9405
|
+
}>;
|
|
9406
|
+
description: z.ZodString;
|
|
9407
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
9408
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
9409
|
+
}, z.core.$strip>;
|
|
9410
|
+
type ConnectionClientAction = z.infer<typeof ConnectionClientAction>;
|
|
9361
9411
|
declare const BaseConnection: z.ZodObject<{
|
|
9362
9412
|
id: z.ZodString;
|
|
9363
9413
|
name: z.ZodString;
|
|
@@ -9382,6 +9432,16 @@ declare const BaseConnection: z.ZodObject<{
|
|
|
9382
9432
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9383
9433
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9384
9434
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9435
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
9436
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
9437
|
+
type: z.ZodEnum<{
|
|
9438
|
+
connect: "connect";
|
|
9439
|
+
"provide-input": "provide-input";
|
|
9440
|
+
}>;
|
|
9441
|
+
description: z.ZodString;
|
|
9442
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
9443
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
9444
|
+
}, z.core.$strip>>;
|
|
9385
9445
|
userId: z.ZodString;
|
|
9386
9446
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
9387
9447
|
}, z.core.$strip>;
|
|
@@ -10262,6 +10322,9 @@ declare const DataSourceEditableProperties: z.ZodObject<{
|
|
|
10262
10322
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10263
10323
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10264
10324
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10325
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10326
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10327
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10265
10328
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10266
10329
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10267
10330
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10285,6 +10348,9 @@ declare const BackwardCompatibleDataSourceEditableProperties: z.ZodObject<{
|
|
|
10285
10348
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10286
10349
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10287
10350
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10351
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10352
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10353
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10288
10354
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10289
10355
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10290
10356
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10309,6 +10375,7 @@ declare const DataSourceExportProperties: z.ZodObject<{
|
|
|
10309
10375
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10310
10376
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10311
10377
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10378
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10312
10379
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
10313
10380
|
udm: z.ZodOptional<z.ZodString>;
|
|
10314
10381
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10330,6 +10397,9 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
10330
10397
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10331
10398
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10332
10399
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10400
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10401
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10402
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10333
10403
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10334
10404
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10335
10405
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10479,6 +10549,9 @@ declare const BaseDataSourceInstance: z.ZodObject<{
|
|
|
10479
10549
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10480
10550
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10481
10551
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10552
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10553
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10554
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10482
10555
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10483
10556
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10484
10557
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10960,6 +11033,9 @@ declare const FlowEditableProperties: z.ZodObject<{
|
|
|
10960
11033
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10961
11034
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10962
11035
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11036
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11037
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11038
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10963
11039
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10964
11040
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10965
11041
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11007,6 +11083,7 @@ declare const FlowExportProperties: z.ZodObject<{
|
|
|
11007
11083
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11008
11084
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11009
11085
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11086
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11010
11087
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11011
11088
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
11012
11089
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -11053,6 +11130,9 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
11053
11130
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11054
11131
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
11055
11132
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11133
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11134
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11135
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11056
11136
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11057
11137
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11058
11138
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11121,6 +11201,9 @@ declare const BaseFlowInstance: z.ZodObject<{
|
|
|
11121
11201
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11122
11202
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
11123
11203
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11204
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11205
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11206
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11124
11207
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11125
11208
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11126
11209
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11325,12 +11408,12 @@ declare const IntegrationExportProperties: z.ZodObject<{
|
|
|
11325
11408
|
name: z.ZodOptional<z.ZodString>;
|
|
11326
11409
|
uuid: z.ZodOptional<z.ZodString>;
|
|
11327
11410
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11411
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11328
11412
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11329
11413
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
11330
11414
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
11331
11415
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11332
11416
|
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
11333
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11334
11417
|
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11335
11418
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11336
11419
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -11423,8 +11506,10 @@ declare const PackageEditableProperties: z.ZodObject<{
|
|
|
11423
11506
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11424
11507
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11425
11508
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11426
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11427
11509
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11510
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11511
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11512
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11428
11513
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11429
11514
|
id: z.ZodString;
|
|
11430
11515
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -11440,6 +11525,7 @@ declare const PackageExportProperties: z.ZodObject<{
|
|
|
11440
11525
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11441
11526
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11442
11527
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11528
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11443
11529
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11444
11530
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11445
11531
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -11478,8 +11564,10 @@ declare const BasePackage: z.ZodObject<{
|
|
|
11478
11564
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11479
11565
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11480
11566
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11481
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11482
11567
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11568
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11569
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11570
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11483
11571
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11484
11572
|
id: z.ZodString;
|
|
11485
11573
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -12338,15 +12426,15 @@ declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
12338
12426
|
includeSecrets: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12339
12427
|
}, z.core.$strip>;
|
|
12340
12428
|
type FindConnectionsQuery = z.infer<typeof FindConnectionsQuery>;
|
|
12429
|
+
declare const EnsureConnectionRequest: z.ZodObject<{
|
|
12430
|
+
intent: z.ZodString;
|
|
12431
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12432
|
+
}, z.core.$strip>;
|
|
12433
|
+
type EnsureConnectionRequest = z.infer<typeof EnsureConnectionRequest>;
|
|
12341
12434
|
declare const CreateConnectionRequest: z.ZodObject<{
|
|
12342
12435
|
name: z.ZodOptional<z.ZodString>;
|
|
12343
12436
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12344
12437
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12345
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12346
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12347
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12348
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12349
|
-
input: z.ZodOptional<z.ZodUnknown>;
|
|
12350
12438
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12351
12439
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12352
12440
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -12354,24 +12442,40 @@ declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
12354
12442
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12355
12443
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
12356
12444
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
12445
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12446
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12447
|
+
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12448
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12449
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
12450
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
12357
12451
|
}, z.core.$strip>;
|
|
12358
12452
|
type CreateConnectionRequest = z.infer<typeof CreateConnectionRequest>;
|
|
12359
12453
|
declare const UpdateConnectionRequest: z.ZodObject<{
|
|
12360
12454
|
name: z.ZodOptional<z.ZodString>;
|
|
12361
12455
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12362
12456
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12457
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
12458
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12459
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
12460
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
12461
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12462
|
+
connectorKey: z.ZodOptional<z.ZodString>;
|
|
12463
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
12363
12464
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12364
12465
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12365
12466
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12366
12467
|
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12367
12468
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
12469
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
12368
12470
|
}, z.core.$strip>;
|
|
12369
12471
|
type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
12370
12472
|
declare const ConnectionExportProperties: z.ZodObject<{
|
|
12371
12473
|
name: z.ZodOptional<z.ZodString>;
|
|
12372
12474
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12373
|
-
|
|
12475
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12374
12476
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12477
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12478
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12375
12479
|
}, z.core.$strip>;
|
|
12376
12480
|
type ConnectionExportProperties = z.infer<typeof ConnectionExportProperties>;
|
|
12377
12481
|
declare const ConnectionTestResponse: z.ZodObject<{
|
|
@@ -12429,6 +12533,16 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
12429
12533
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12430
12534
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12431
12535
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12536
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
12537
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
12538
|
+
type: z.ZodEnum<{
|
|
12539
|
+
connect: "connect";
|
|
12540
|
+
"provide-input": "provide-input";
|
|
12541
|
+
}>;
|
|
12542
|
+
description: z.ZodString;
|
|
12543
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
12544
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
12545
|
+
}, z.core.$strip>>;
|
|
12432
12546
|
userId: z.ZodString;
|
|
12433
12547
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12434
12548
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12517,6 +12631,16 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
12517
12631
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12518
12632
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12519
12633
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12634
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
12635
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
12636
|
+
type: z.ZodEnum<{
|
|
12637
|
+
connect: "connect";
|
|
12638
|
+
"provide-input": "provide-input";
|
|
12639
|
+
}>;
|
|
12640
|
+
description: z.ZodString;
|
|
12641
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
12642
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
12643
|
+
}, z.core.$strip>>;
|
|
12520
12644
|
userId: z.ZodString;
|
|
12521
12645
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12522
12646
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12613,6 +12737,16 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12613
12737
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12614
12738
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12615
12739
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12740
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
12741
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
12742
|
+
type: z.ZodEnum<{
|
|
12743
|
+
connect: "connect";
|
|
12744
|
+
"provide-input": "provide-input";
|
|
12745
|
+
}>;
|
|
12746
|
+
description: z.ZodString;
|
|
12747
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
12748
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
12749
|
+
}, z.core.$strip>>;
|
|
12616
12750
|
userId: z.ZodString;
|
|
12617
12751
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12618
12752
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12813,6 +12947,9 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12813
12947
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12814
12948
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
12815
12949
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12950
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12951
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12952
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
12816
12953
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12817
12954
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12818
12955
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -12892,6 +13029,16 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12892
13029
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12893
13030
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12894
13031
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13032
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
13033
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13034
|
+
type: z.ZodEnum<{
|
|
13035
|
+
connect: "connect";
|
|
13036
|
+
"provide-input": "provide-input";
|
|
13037
|
+
}>;
|
|
13038
|
+
description: z.ZodString;
|
|
13039
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13040
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13041
|
+
}, z.core.$strip>>;
|
|
12895
13042
|
userId: z.ZodString;
|
|
12896
13043
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12897
13044
|
}, z.core.$strip>>;
|
|
@@ -13000,6 +13147,9 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
13000
13147
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13001
13148
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13002
13149
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13150
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13151
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13152
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13003
13153
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13004
13154
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13005
13155
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13079,6 +13229,16 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
13079
13229
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13080
13230
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13081
13231
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13232
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
13233
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13234
|
+
type: z.ZodEnum<{
|
|
13235
|
+
connect: "connect";
|
|
13236
|
+
"provide-input": "provide-input";
|
|
13237
|
+
}>;
|
|
13238
|
+
description: z.ZodString;
|
|
13239
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13240
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13241
|
+
}, z.core.$strip>>;
|
|
13082
13242
|
userId: z.ZodString;
|
|
13083
13243
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13084
13244
|
}, z.core.$strip>>;
|
|
@@ -13160,6 +13320,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13160
13320
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13161
13321
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13162
13322
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13323
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13324
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13325
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13163
13326
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13164
13327
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13165
13328
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13273,6 +13436,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13273
13436
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13274
13437
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13275
13438
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13439
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13440
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13441
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13276
13442
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13277
13443
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13278
13444
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13413,6 +13579,16 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13413
13579
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13414
13580
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13415
13581
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13582
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
13583
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13584
|
+
type: z.ZodEnum<{
|
|
13585
|
+
connect: "connect";
|
|
13586
|
+
"provide-input": "provide-input";
|
|
13587
|
+
}>;
|
|
13588
|
+
description: z.ZodString;
|
|
13589
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13590
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13591
|
+
}, z.core.$strip>>;
|
|
13416
13592
|
userId: z.ZodString;
|
|
13417
13593
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13418
13594
|
}, z.core.$strip>>;
|
|
@@ -13428,6 +13604,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13428
13604
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13429
13605
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13430
13606
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13607
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13608
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13609
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13431
13610
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13432
13611
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13433
13612
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13497,6 +13676,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13497
13676
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13498
13677
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13499
13678
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13679
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13680
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13681
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13500
13682
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13501
13683
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13502
13684
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13610,6 +13792,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13610
13792
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13611
13793
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13612
13794
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13795
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13796
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13797
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13613
13798
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13614
13799
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13615
13800
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13750,6 +13935,16 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13750
13935
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13751
13936
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13752
13937
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13938
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
13939
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13940
|
+
type: z.ZodEnum<{
|
|
13941
|
+
connect: "connect";
|
|
13942
|
+
"provide-input": "provide-input";
|
|
13943
|
+
}>;
|
|
13944
|
+
description: z.ZodString;
|
|
13945
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13946
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13947
|
+
}, z.core.$strip>>;
|
|
13753
13948
|
userId: z.ZodString;
|
|
13754
13949
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13755
13950
|
}, z.core.$strip>>;
|
|
@@ -13765,6 +13960,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13765
13960
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13766
13961
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13767
13962
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13963
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13964
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13965
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13768
13966
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13769
13967
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13770
13968
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13859,6 +14057,9 @@ declare const CreateFlowRequest: z.ZodObject<{
|
|
|
13859
14057
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13860
14058
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13861
14059
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14060
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14061
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14062
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13862
14063
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13863
14064
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13864
14065
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13908,6 +14109,9 @@ declare const UpdateFlowRequest: z.ZodObject<{
|
|
|
13908
14109
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13909
14110
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13910
14111
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14112
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14113
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14114
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13911
14115
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13912
14116
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13913
14117
|
flowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14024,6 +14228,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14024
14228
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14025
14229
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14026
14230
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14231
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14232
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14233
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14027
14234
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14028
14235
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14029
14236
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14218,6 +14425,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14218
14425
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14219
14426
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14220
14427
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14428
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14429
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14430
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14221
14431
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14222
14432
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14223
14433
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14439,6 +14649,16 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14439
14649
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14440
14650
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14441
14651
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14652
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
14653
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
14654
|
+
type: z.ZodEnum<{
|
|
14655
|
+
connect: "connect";
|
|
14656
|
+
"provide-input": "provide-input";
|
|
14657
|
+
}>;
|
|
14658
|
+
description: z.ZodString;
|
|
14659
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
14660
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
14661
|
+
}, z.core.$strip>>;
|
|
14442
14662
|
userId: z.ZodString;
|
|
14443
14663
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14444
14664
|
}, z.core.$strip>>;
|
|
@@ -14454,6 +14674,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14454
14674
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14455
14675
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14456
14676
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14677
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14678
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14679
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14457
14680
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14458
14681
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14459
14682
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14606,6 +14829,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14606
14829
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14607
14830
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14608
14831
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14832
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14833
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14834
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14609
14835
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14610
14836
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14611
14837
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14800,6 +15026,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14800
15026
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14801
15027
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14802
15028
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15029
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15030
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15031
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14803
15032
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14804
15033
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14805
15034
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15021,6 +15250,16 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
15021
15250
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15022
15251
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15023
15252
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15253
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
15254
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
15255
|
+
type: z.ZodEnum<{
|
|
15256
|
+
connect: "connect";
|
|
15257
|
+
"provide-input": "provide-input";
|
|
15258
|
+
}>;
|
|
15259
|
+
description: z.ZodString;
|
|
15260
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
15261
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
15262
|
+
}, z.core.$strip>>;
|
|
15024
15263
|
userId: z.ZodString;
|
|
15025
15264
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15026
15265
|
}, z.core.$strip>>;
|
|
@@ -15036,6 +15275,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
15036
15275
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15037
15276
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15038
15277
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15278
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15279
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15280
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15039
15281
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15040
15282
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15041
15283
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15235,6 +15477,9 @@ declare const CreateDataSourceRequest: z.ZodObject<{
|
|
|
15235
15477
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15236
15478
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15237
15479
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15480
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15481
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15482
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15238
15483
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15239
15484
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15240
15485
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15258,6 +15503,9 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
|
|
|
15258
15503
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15259
15504
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15260
15505
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15506
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15507
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15508
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15261
15509
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15262
15510
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15263
15511
|
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15521,6 +15769,13 @@ declare class ConnectionAccessor {
|
|
|
15521
15769
|
archivedAt?: string | undefined;
|
|
15522
15770
|
isDeactivated?: boolean | undefined;
|
|
15523
15771
|
meta?: Record<string, any> | undefined;
|
|
15772
|
+
agentSessionId?: string | undefined;
|
|
15773
|
+
clientAction?: {
|
|
15774
|
+
type: "connect" | "provide-input";
|
|
15775
|
+
description: string;
|
|
15776
|
+
uiUrl?: string | undefined;
|
|
15777
|
+
agentInstructions?: string | undefined;
|
|
15778
|
+
} | undefined;
|
|
15524
15779
|
tenantId?: string | undefined;
|
|
15525
15780
|
user?: {
|
|
15526
15781
|
id: string;
|
|
@@ -15576,7 +15831,7 @@ declare class ConnectionAccessor {
|
|
|
15576
15831
|
}> | undefined;
|
|
15577
15832
|
} | undefined;
|
|
15578
15833
|
} | null>;
|
|
15579
|
-
openReconnectUI(
|
|
15834
|
+
openReconnectUI(_options?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
15580
15835
|
refreshCredentials(): Promise<void>;
|
|
15581
15836
|
getPath(subpath?: string, query?: Record<string, any>): string;
|
|
15582
15837
|
}
|
|
@@ -15836,6 +16091,16 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
15836
16091
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15837
16092
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15838
16093
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16094
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
16095
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
16096
|
+
type: z.ZodEnum<{
|
|
16097
|
+
connect: "connect";
|
|
16098
|
+
"provide-input": "provide-input";
|
|
16099
|
+
}>;
|
|
16100
|
+
description: z.ZodString;
|
|
16101
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
16102
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
16103
|
+
}, z.core.$strip>>;
|
|
15839
16104
|
userId: z.ZodString;
|
|
15840
16105
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15841
16106
|
}, z.core.$strip>>;
|
|
@@ -15874,6 +16139,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15874
16139
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15875
16140
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15876
16141
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16142
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16143
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16144
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15877
16145
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15878
16146
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15879
16147
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -15968,6 +16236,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15968
16236
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15969
16237
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15970
16238
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16239
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16240
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16241
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15971
16242
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15972
16243
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15973
16244
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16089,6 +16360,16 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
16089
16360
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16090
16361
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16091
16362
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16363
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
16364
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
16365
|
+
type: z.ZodEnum<{
|
|
16366
|
+
connect: "connect";
|
|
16367
|
+
"provide-input": "provide-input";
|
|
16368
|
+
}>;
|
|
16369
|
+
description: z.ZodString;
|
|
16370
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
16371
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
16372
|
+
}, z.core.$strip>>;
|
|
16092
16373
|
userId: z.ZodString;
|
|
16093
16374
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16094
16375
|
}, z.core.$strip>>;
|
|
@@ -16104,6 +16385,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
16104
16385
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16105
16386
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16106
16387
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16388
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16389
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16390
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16107
16391
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16108
16392
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16109
16393
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16155,6 +16439,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16155
16439
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16156
16440
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16157
16441
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16442
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16443
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16444
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16158
16445
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16159
16446
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16160
16447
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16249,6 +16536,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16249
16536
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16250
16537
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16251
16538
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16539
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16540
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16541
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16252
16542
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16253
16543
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16254
16544
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16370,6 +16660,16 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16370
16660
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16371
16661
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16372
16662
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16663
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
16664
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
16665
|
+
type: z.ZodEnum<{
|
|
16666
|
+
connect: "connect";
|
|
16667
|
+
"provide-input": "provide-input";
|
|
16668
|
+
}>;
|
|
16669
|
+
description: z.ZodString;
|
|
16670
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
16671
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
16672
|
+
}, z.core.$strip>>;
|
|
16373
16673
|
userId: z.ZodString;
|
|
16374
16674
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16375
16675
|
}, z.core.$strip>>;
|
|
@@ -16385,6 +16685,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16385
16685
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16386
16686
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16387
16687
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16688
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16689
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16690
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16388
16691
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16389
16692
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16390
16693
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16481,6 +16784,9 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
|
16481
16784
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16482
16785
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16483
16786
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16787
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16788
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16789
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16484
16790
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16485
16791
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16486
16792
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16513,6 +16819,9 @@ declare const CreateFieldMappingInstanceRequest: z.ZodObject<{
|
|
|
16513
16819
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16514
16820
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16515
16821
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16822
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16823
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16824
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16516
16825
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16517
16826
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16518
16827
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16545,6 +16854,9 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
|
|
|
16545
16854
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16546
16855
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16547
16856
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16857
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16858
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16859
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16548
16860
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16549
16861
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16550
16862
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16577,6 +16889,9 @@ declare const UpdateFieldMappingInstanceRequest: z.ZodObject<{
|
|
|
16577
16889
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16578
16890
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16579
16891
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16892
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16893
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16894
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16580
16895
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16581
16896
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16582
16897
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16701,6 +17016,13 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
16701
17016
|
archivedAt?: string | undefined;
|
|
16702
17017
|
isDeactivated?: boolean | undefined;
|
|
16703
17018
|
meta?: Record<string, any> | undefined;
|
|
17019
|
+
agentSessionId?: string | undefined;
|
|
17020
|
+
clientAction?: {
|
|
17021
|
+
type: "connect" | "provide-input";
|
|
17022
|
+
description: string;
|
|
17023
|
+
uiUrl?: string | undefined;
|
|
17024
|
+
agentInstructions?: string | undefined;
|
|
17025
|
+
} | undefined;
|
|
16704
17026
|
tenantId?: string | undefined;
|
|
16705
17027
|
user?: {
|
|
16706
17028
|
id: string;
|
|
@@ -16809,8 +17131,10 @@ declare const CreatePackageRequest: z.ZodObject<{
|
|
|
16809
17131
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16810
17132
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16811
17133
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16812
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16813
17134
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17135
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17136
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17137
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16814
17138
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16815
17139
|
id: z.ZodString;
|
|
16816
17140
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -16833,8 +17157,10 @@ declare const UpdatePackageRequest: z.ZodObject<{
|
|
|
16833
17157
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16834
17158
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16835
17159
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16836
|
-
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16837
17160
|
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17161
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17162
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17163
|
+
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16838
17164
|
elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16839
17165
|
id: z.ZodString;
|
|
16840
17166
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -16864,8 +17190,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16864
17190
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16865
17191
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16866
17192
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16867
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16868
17193
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17194
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17195
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17196
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16869
17197
|
key: z.ZodString;
|
|
16870
17198
|
name: z.ZodString;
|
|
16871
17199
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16901,8 +17229,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16901
17229
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16902
17230
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16903
17231
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16904
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16905
17232
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17233
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17234
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17235
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16906
17236
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16907
17237
|
id: z.ZodString;
|
|
16908
17238
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -17366,6 +17696,16 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
17366
17696
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17367
17697
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17368
17698
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17699
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17700
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
17701
|
+
type: z.ZodEnum<{
|
|
17702
|
+
connect: "connect";
|
|
17703
|
+
"provide-input": "provide-input";
|
|
17704
|
+
}>;
|
|
17705
|
+
description: z.ZodString;
|
|
17706
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
17707
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
17708
|
+
}, z.core.$strip>>;
|
|
17369
17709
|
userId: z.ZodString;
|
|
17370
17710
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17371
17711
|
}, z.core.$strip>>;
|
|
@@ -17593,6 +17933,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17593
17933
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17594
17934
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17595
17935
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
17936
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17937
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17596
17938
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17597
17939
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17598
17940
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17610,6 +17952,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17610
17952
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17611
17953
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17612
17954
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17955
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17613
17956
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17614
17957
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17615
17958
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -17688,6 +18031,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17688
18031
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17689
18032
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17690
18033
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18034
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18035
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17691
18036
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17692
18037
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17693
18038
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17705,6 +18050,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17705
18050
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17706
18051
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17707
18052
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18053
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17708
18054
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17709
18055
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17710
18056
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17726,6 +18072,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17726
18072
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17727
18073
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17728
18074
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18075
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18076
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17729
18077
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17730
18078
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17731
18079
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17743,6 +18091,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17743
18091
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17744
18092
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17745
18093
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18094
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17746
18095
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17747
18096
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17748
18097
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17840,6 +18189,9 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
17840
18189
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17841
18190
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17842
18191
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18192
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18193
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18194
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17843
18195
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17844
18196
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17845
18197
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17847,6 +18199,7 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
17847
18199
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
17848
18200
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
17849
18201
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
18202
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17850
18203
|
}, z.core.$strip>;
|
|
17851
18204
|
type CreateActionRequest = z.infer<typeof CreateActionRequest>;
|
|
17852
18205
|
declare const UpdateActionRequest: z.ZodObject<{
|
|
@@ -17862,6 +18215,9 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
17862
18215
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17863
18216
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17864
18217
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18218
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18219
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18220
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17865
18221
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17866
18222
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17867
18223
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -17869,6 +18225,7 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
17869
18225
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
17870
18226
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
17871
18227
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
18228
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17872
18229
|
}, z.core.$strip>;
|
|
17873
18230
|
type UpdateActionRequest = z.infer<typeof UpdateActionRequest>;
|
|
17874
18231
|
declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
@@ -17884,6 +18241,9 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
17884
18241
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17885
18242
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17886
18243
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18244
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18245
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18246
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17887
18247
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17888
18248
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17889
18249
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17891,6 +18251,7 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
17891
18251
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
17892
18252
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
17893
18253
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
18254
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17894
18255
|
}, z.core.$strip>;
|
|
17895
18256
|
type CreateActionInstanceRequest = CreateActionRequest;
|
|
17896
18257
|
declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
@@ -17906,6 +18267,9 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
17906
18267
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17907
18268
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17908
18269
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18270
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18271
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18272
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17909
18273
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17910
18274
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17911
18275
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -17913,6 +18277,7 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
17913
18277
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
17914
18278
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
17915
18279
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
18280
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17916
18281
|
}, z.core.$strip>;
|
|
17917
18282
|
type UpdateActionInstanceRequest = UpdateActionRequest;
|
|
17918
18283
|
declare const RunActionRequest: z.ZodObject<{
|
|
@@ -17940,6 +18305,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17940
18305
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17941
18306
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17942
18307
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18308
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18309
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17943
18310
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17944
18311
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17945
18312
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17957,6 +18324,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17957
18324
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17958
18325
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17959
18326
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18327
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17960
18328
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17961
18329
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17962
18330
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -18035,6 +18403,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18035
18403
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18036
18404
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18037
18405
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18406
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18407
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18038
18408
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18039
18409
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18040
18410
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18052,6 +18422,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18052
18422
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18053
18423
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18054
18424
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18425
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18055
18426
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18056
18427
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18057
18428
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18073,6 +18444,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18073
18444
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18074
18445
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18075
18446
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18447
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18448
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18076
18449
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18077
18450
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18078
18451
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18090,6 +18463,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18090
18463
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18091
18464
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18092
18465
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18466
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18093
18467
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18094
18468
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18095
18469
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18236,6 +18610,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18236
18610
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18237
18611
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18238
18612
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18613
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18614
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18239
18615
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18240
18616
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18241
18617
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18253,6 +18629,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18253
18629
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18254
18630
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18255
18631
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18632
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18256
18633
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18257
18634
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18258
18635
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18273,6 +18650,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18273
18650
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18274
18651
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18275
18652
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18653
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18654
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18276
18655
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18277
18656
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18278
18657
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18290,6 +18669,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18290
18669
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18291
18670
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18292
18671
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18672
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18293
18673
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18294
18674
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18295
18675
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18367,6 +18747,16 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18367
18747
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18368
18748
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18369
18749
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
18750
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18751
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
18752
|
+
type: z.ZodEnum<{
|
|
18753
|
+
connect: "connect";
|
|
18754
|
+
"provide-input": "provide-input";
|
|
18755
|
+
}>;
|
|
18756
|
+
description: z.ZodString;
|
|
18757
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
18758
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
18759
|
+
}, z.core.$strip>>;
|
|
18370
18760
|
userId: z.ZodString;
|
|
18371
18761
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18372
18762
|
}, z.core.$strip>>;
|
|
@@ -18438,6 +18828,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18438
18828
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18439
18829
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18440
18830
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18831
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18832
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18441
18833
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18442
18834
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18443
18835
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18455,6 +18847,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18455
18847
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18456
18848
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18457
18849
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18850
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18458
18851
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18459
18852
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18460
18853
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18475,6 +18868,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18475
18868
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18476
18869
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18477
18870
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18871
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18872
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18478
18873
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18479
18874
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18480
18875
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18492,6 +18887,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18492
18887
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18493
18888
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18494
18889
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18890
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18495
18891
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18496
18892
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18497
18893
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18569,6 +18965,16 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18569
18965
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18570
18966
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18571
18967
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
18968
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18969
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
18970
|
+
type: z.ZodEnum<{
|
|
18971
|
+
connect: "connect";
|
|
18972
|
+
"provide-input": "provide-input";
|
|
18973
|
+
}>;
|
|
18974
|
+
description: z.ZodString;
|
|
18975
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
18976
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
18977
|
+
}, z.core.$strip>>;
|
|
18572
18978
|
userId: z.ZodString;
|
|
18573
18979
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18574
18980
|
}, z.core.$strip>>;
|
|
@@ -18729,6 +19135,7 @@ declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
|
|
|
18729
19135
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18730
19136
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18731
19137
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
19138
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
18732
19139
|
}, z.core.$strip>;
|
|
18733
19140
|
type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
|
|
18734
19141
|
interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
@@ -18877,6 +19284,16 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18877
19284
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18878
19285
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18879
19286
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19287
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
19288
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
19289
|
+
type: z.ZodEnum<{
|
|
19290
|
+
connect: "connect";
|
|
19291
|
+
"provide-input": "provide-input";
|
|
19292
|
+
}>;
|
|
19293
|
+
description: z.ZodString;
|
|
19294
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
19295
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
19296
|
+
}, z.core.$strip>>;
|
|
18880
19297
|
userId: z.ZodString;
|
|
18881
19298
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18882
19299
|
}, z.core.$strip>>;
|
|
@@ -19072,6 +19489,7 @@ declare const FindAppDataSchemaInstancesQuery: z.ZodObject<{
|
|
|
19072
19489
|
userId: z.ZodOptional<z.ZodString>;
|
|
19073
19490
|
appDataSchemaId: z.ZodOptional<z.ZodString>;
|
|
19074
19491
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
19492
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
19075
19493
|
}, z.core.$strip>;
|
|
19076
19494
|
type FindAppDataSchemaInstancesQuery = z.infer<typeof FindAppDataSchemaInstancesQuery>;
|
|
19077
19495
|
interface AppDataSchemaInstanceSelector {
|
|
@@ -19301,6 +19719,16 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
19301
19719
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19302
19720
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19303
19721
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19722
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
19723
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
19724
|
+
type: z.ZodEnum<{
|
|
19725
|
+
connect: "connect";
|
|
19726
|
+
"provide-input": "provide-input";
|
|
19727
|
+
}>;
|
|
19728
|
+
description: z.ZodString;
|
|
19729
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
19730
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
19731
|
+
}, z.core.$strip>>;
|
|
19304
19732
|
userId: z.ZodString;
|
|
19305
19733
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19306
19734
|
}, z.core.$strip>>;
|
|
@@ -19470,6 +19898,16 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
19470
19898
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19471
19899
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19472
19900
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19901
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
19902
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
19903
|
+
type: z.ZodEnum<{
|
|
19904
|
+
connect: "connect";
|
|
19905
|
+
"provide-input": "provide-input";
|
|
19906
|
+
}>;
|
|
19907
|
+
description: z.ZodString;
|
|
19908
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
19909
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
19910
|
+
}, z.core.$strip>>;
|
|
19473
19911
|
userId: z.ZodString;
|
|
19474
19912
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19475
19913
|
}, z.core.$strip>>;
|
|
@@ -19643,6 +20081,16 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
19643
20081
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19644
20082
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19645
20083
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
20084
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
20085
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
20086
|
+
type: z.ZodEnum<{
|
|
20087
|
+
connect: "connect";
|
|
20088
|
+
"provide-input": "provide-input";
|
|
20089
|
+
}>;
|
|
20090
|
+
description: z.ZodString;
|
|
20091
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
20092
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
20093
|
+
}, z.core.$strip>>;
|
|
19646
20094
|
userId: z.ZodString;
|
|
19647
20095
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19648
20096
|
}, z.core.$strip>>;
|
|
@@ -19759,6 +20207,16 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
19759
20207
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19760
20208
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19761
20209
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
20210
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
20211
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
20212
|
+
type: z.ZodEnum<{
|
|
20213
|
+
connect: "connect";
|
|
20214
|
+
"provide-input": "provide-input";
|
|
20215
|
+
}>;
|
|
20216
|
+
description: z.ZodString;
|
|
20217
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
20218
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
20219
|
+
}, z.core.$strip>>;
|
|
19762
20220
|
userId: z.ZodString;
|
|
19763
20221
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19764
20222
|
}, z.core.$strip>>;
|
|
@@ -19989,6 +20447,80 @@ interface FilterFieldMeta {
|
|
|
19989
20447
|
}
|
|
19990
20448
|
declare function getFilterFieldMeta(meta: unknown): FilterFieldMeta | undefined;
|
|
19991
20449
|
|
|
20450
|
+
declare enum AgentSessionStatus {
|
|
20451
|
+
QUEUED = "queued",
|
|
20452
|
+
STARTING = "starting",
|
|
20453
|
+
RUNNING = "running",
|
|
20454
|
+
COMPLETED = "completed",
|
|
20455
|
+
FAILED = "failed",
|
|
20456
|
+
CANCELLED = "cancelled"
|
|
20457
|
+
}
|
|
20458
|
+
declare enum AgentSessionState {
|
|
20459
|
+
BUSY = "busy",
|
|
20460
|
+
IDLE = "idle"
|
|
20461
|
+
}
|
|
20462
|
+
declare enum AgentName {
|
|
20463
|
+
MEMBRANE = "membrane",
|
|
20464
|
+
MEMBRANE_CORE = "membrane-core",
|
|
20465
|
+
SELF_INTEGRATING = "self-integrating",
|
|
20466
|
+
CONNECTION_BUILDING = "connection-building",
|
|
20467
|
+
ACTION_BUILDING = "action-building",
|
|
20468
|
+
UNIVERSE = "universe"
|
|
20469
|
+
}
|
|
20470
|
+
declare const AgentSession: z.ZodObject<{
|
|
20471
|
+
id: z.ZodString;
|
|
20472
|
+
workspaceId: z.ZodString;
|
|
20473
|
+
orgWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
20474
|
+
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
20475
|
+
workspaceElementId: z.ZodString;
|
|
20476
|
+
type: z.ZodString;
|
|
20477
|
+
status: z.ZodEnum<typeof AgentSessionStatus>;
|
|
20478
|
+
prompt: z.ZodString;
|
|
20479
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
20480
|
+
lastActivityAt: z.ZodISODateTime;
|
|
20481
|
+
title: z.ZodOptional<z.ZodString>;
|
|
20482
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
20483
|
+
cost: z.ZodOptional<z.ZodNumber>;
|
|
20484
|
+
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
20485
|
+
usage: z.ZodOptional<z.ZodNumber>;
|
|
20486
|
+
hasWorker: z.ZodBoolean;
|
|
20487
|
+
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
20488
|
+
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
20489
|
+
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20490
|
+
createdAt: z.ZodISODateTime;
|
|
20491
|
+
updatedAt: z.ZodISODateTime;
|
|
20492
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
20493
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20494
|
+
}, z.core.$strip>;
|
|
20495
|
+
type AgentSession = z.infer<typeof AgentSession>;
|
|
20496
|
+
declare const CreateAgentSession: z.ZodObject<{
|
|
20497
|
+
workspaceElementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
20498
|
+
workspaceElementId: z.ZodOptional<z.ZodString>;
|
|
20499
|
+
prompt: z.ZodString;
|
|
20500
|
+
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
20501
|
+
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
20502
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
20503
|
+
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
20504
|
+
}, z.core.$strip>;
|
|
20505
|
+
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
20506
|
+
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
20507
|
+
input: z.ZodString;
|
|
20508
|
+
synthetic: z.ZodOptional<z.ZodBoolean>;
|
|
20509
|
+
}, z.core.$strip>;
|
|
20510
|
+
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
20511
|
+
declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
20512
|
+
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
20513
|
+
lastActivityAt: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>>;
|
|
20514
|
+
title: z.ZodOptional<z.ZodString>;
|
|
20515
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
20516
|
+
cost: z.ZodOptional<z.ZodNumber>;
|
|
20517
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
20518
|
+
opencodeSessionUuid: z.ZodOptional<z.ZodString>;
|
|
20519
|
+
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20520
|
+
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
20521
|
+
}, z.core.$strip>;
|
|
20522
|
+
type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
20523
|
+
|
|
19992
20524
|
declare const SYSTEM_FIELDS: string[];
|
|
19993
20525
|
declare function jsonPointerToDotPath(pointer: string): string;
|
|
19994
20526
|
declare function getEditablePathsFromSchema(schema: z.ZodTypeAny, prefix?: string): Set<string>;
|
|
@@ -20018,6 +20550,8 @@ interface WorkspaceElementSpec {
|
|
|
20018
20550
|
statsKey?: string;
|
|
20019
20551
|
relatedIntegrationLayerElements?: WorkspaceElementType[];
|
|
20020
20552
|
relatedActivityLogElements?: WorkspaceElementType[];
|
|
20553
|
+
isAgentic?: boolean;
|
|
20554
|
+
agentName?: AgentName;
|
|
20021
20555
|
}
|
|
20022
20556
|
interface WorkspaceElements {
|
|
20023
20557
|
flows?: Record<string, CreateFlowRequest>;
|
|
@@ -20662,6 +21196,7 @@ declare const WorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20662
21196
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20663
21197
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20664
21198
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21199
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20665
21200
|
}, z$1.core.$strip>;
|
|
20666
21201
|
declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
20667
21202
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -20669,6 +21204,7 @@ declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20669
21204
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20670
21205
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20671
21206
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21207
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20672
21208
|
}, z$1.core.$strip>;
|
|
20673
21209
|
declare const WorkspacePublicKey: z$1.ZodObject<{
|
|
20674
21210
|
name: z$1.ZodString;
|
|
@@ -20894,6 +21430,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20894
21430
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20895
21431
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20896
21432
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21433
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20897
21434
|
}, z$1.core.$strip>>;
|
|
20898
21435
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
20899
21436
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -21161,6 +21698,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21161
21698
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21162
21699
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21163
21700
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21701
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21164
21702
|
}, z$1.core.$strip>>;
|
|
21165
21703
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
21166
21704
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -21322,7 +21860,8 @@ declare enum OrgPlan {
|
|
|
21322
21860
|
}
|
|
21323
21861
|
declare enum OrgUserRole {
|
|
21324
21862
|
Admin = "admin",
|
|
21325
|
-
Member = "member"
|
|
21863
|
+
Member = "member",
|
|
21864
|
+
ReadOnly = "read-only"
|
|
21326
21865
|
}
|
|
21327
21866
|
declare enum OrgUserStatus {
|
|
21328
21867
|
Invited = "invited",
|
|
@@ -21911,6 +22450,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21911
22450
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21912
22451
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21913
22452
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22453
|
+
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
21914
22454
|
}, z.core.$strip>>;
|
|
21915
22455
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
21916
22456
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -22015,6 +22555,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22015
22555
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
22016
22556
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22017
22557
|
isWorkspaceManager: z.ZodBoolean;
|
|
22558
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22018
22559
|
scopes: z.ZodArray<z.ZodString>;
|
|
22019
22560
|
}, z.core.$strip>>;
|
|
22020
22561
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -22055,6 +22596,7 @@ declare const OrgPermissionsSchema: z.ZodObject<{
|
|
|
22055
22596
|
declare const WorkspacePermissionsSchema: z.ZodObject<{
|
|
22056
22597
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22057
22598
|
isWorkspaceManager: z.ZodBoolean;
|
|
22599
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22058
22600
|
scopes: z.ZodArray<z.ZodString>;
|
|
22059
22601
|
}, z.core.$strip>;
|
|
22060
22602
|
declare const TenantPermissionsSchema: z.ZodObject<{
|
|
@@ -22081,6 +22623,7 @@ declare const AuthContextPermissionsSchema: z.ZodObject<{
|
|
|
22081
22623
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
22082
22624
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22083
22625
|
isWorkspaceManager: z.ZodBoolean;
|
|
22626
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22084
22627
|
scopes: z.ZodArray<z.ZodString>;
|
|
22085
22628
|
}, z.core.$strip>>;
|
|
22086
22629
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -23121,79 +23664,6 @@ interface HandyScenarioTemplateElementApi {
|
|
|
23121
23664
|
} & Record<string, any>;
|
|
23122
23665
|
}
|
|
23123
23666
|
|
|
23124
|
-
declare enum AgentSessionStatus {
|
|
23125
|
-
QUEUED = "queued",
|
|
23126
|
-
STARTING = "starting",
|
|
23127
|
-
RUNNING = "running",
|
|
23128
|
-
COMPLETED = "completed",
|
|
23129
|
-
FAILED = "failed",
|
|
23130
|
-
CANCELLED = "cancelled"
|
|
23131
|
-
}
|
|
23132
|
-
declare enum AgentSessionState {
|
|
23133
|
-
BUSY = "busy",
|
|
23134
|
-
IDLE = "idle"
|
|
23135
|
-
}
|
|
23136
|
-
declare enum AgentName {
|
|
23137
|
-
MEMBRANE = "membrane",
|
|
23138
|
-
MEMBRANE_CORE = "membrane-core",
|
|
23139
|
-
SELF_INTEGRATING = "self-integrating",
|
|
23140
|
-
CONNECTION_BUILDING = "connection-building",
|
|
23141
|
-
ACTION_BUILDING = "action-building",
|
|
23142
|
-
UNIVERSE = "universe"
|
|
23143
|
-
}
|
|
23144
|
-
declare const AgentSession: z.ZodObject<{
|
|
23145
|
-
id: z.ZodString;
|
|
23146
|
-
workspaceId: z.ZodString;
|
|
23147
|
-
orgWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
23148
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
23149
|
-
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
23150
|
-
workspaceElementId: z.ZodString;
|
|
23151
|
-
type: z.ZodString;
|
|
23152
|
-
status: z.ZodEnum<typeof AgentSessionStatus>;
|
|
23153
|
-
prompt: z.ZodString;
|
|
23154
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
23155
|
-
lastActivityAt: z.ZodISODateTime;
|
|
23156
|
-
title: z.ZodOptional<z.ZodString>;
|
|
23157
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
23158
|
-
cost: z.ZodOptional<z.ZodNumber>;
|
|
23159
|
-
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
23160
|
-
usage: z.ZodOptional<z.ZodNumber>;
|
|
23161
|
-
hasWorker: z.ZodBoolean;
|
|
23162
|
-
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
23163
|
-
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23164
|
-
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23165
|
-
createdAt: z.ZodISODateTime;
|
|
23166
|
-
updatedAt: z.ZodISODateTime;
|
|
23167
|
-
}, z.core.$strip>;
|
|
23168
|
-
type AgentSession = z.infer<typeof AgentSession>;
|
|
23169
|
-
declare const CreateAgentSession: z.ZodObject<{
|
|
23170
|
-
workspaceElementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
23171
|
-
workspaceElementId: z.ZodOptional<z.ZodString>;
|
|
23172
|
-
prompt: z.ZodString;
|
|
23173
|
-
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
23174
|
-
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
23175
|
-
modelId: z.ZodOptional<z.ZodString>;
|
|
23176
|
-
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23177
|
-
}, z.core.$strip>;
|
|
23178
|
-
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
23179
|
-
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
23180
|
-
input: z.ZodString;
|
|
23181
|
-
synthetic: z.ZodOptional<z.ZodBoolean>;
|
|
23182
|
-
}, z.core.$strip>;
|
|
23183
|
-
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
23184
|
-
declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
23185
|
-
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
23186
|
-
lastActivityAt: z.ZodOptional<z.ZodISODateTime>;
|
|
23187
|
-
title: z.ZodOptional<z.ZodString>;
|
|
23188
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
23189
|
-
cost: z.ZodOptional<z.ZodNumber>;
|
|
23190
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
23191
|
-
opencodeSessionUuid: z.ZodOptional<z.ZodString>;
|
|
23192
|
-
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23193
|
-
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
23194
|
-
}, z.core.$strip>;
|
|
23195
|
-
type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
23196
|
-
|
|
23197
23667
|
declare const SessionCredentials: z.ZodObject<{
|
|
23198
23668
|
accessKeyId: z.ZodString;
|
|
23199
23669
|
secretAccessKey: z.ZodString;
|
|
@@ -23217,6 +23687,10 @@ declare const SessionParameters: z.ZodObject<{
|
|
|
23217
23687
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
23218
23688
|
modelId: z.ZodOptional<z.ZodString>;
|
|
23219
23689
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23690
|
+
engine: z.ZodOptional<z.ZodEnum<{
|
|
23691
|
+
opencode: "opencode";
|
|
23692
|
+
inline: "inline";
|
|
23693
|
+
}>>;
|
|
23220
23694
|
}, z.core.$strip>;
|
|
23221
23695
|
type SessionParameters = z.infer<typeof SessionParameters>;
|
|
23222
23696
|
interface SessionStatus {
|
|
@@ -23237,6 +23711,7 @@ interface SessionStatus {
|
|
|
23237
23711
|
agentVersion: string;
|
|
23238
23712
|
}
|
|
23239
23713
|
|
|
23714
|
+
declare const zodDateCoercion: () => z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
23240
23715
|
declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
|
|
23241
23716
|
|
|
23242
23717
|
declare const MappingSchema: z.ZodAny;
|
|
@@ -23551,7 +24026,7 @@ declare const CreateClientTokenRequest: z.ZodObject<{
|
|
|
23551
24026
|
grantId: z.ZodString;
|
|
23552
24027
|
grantName: z.ZodString;
|
|
23553
24028
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
23554
|
-
|
|
24029
|
+
clientKey: z.ZodOptional<z.ZodString>;
|
|
23555
24030
|
}, z.core.$strip>;
|
|
23556
24031
|
type CreateClientTokenRequest = z.infer<typeof CreateClientTokenRequest>;
|
|
23557
24032
|
declare const ClientTokenListResponse: z.ZodObject<{
|
|
@@ -23579,6 +24054,7 @@ declare const OAUTH_SCOPE_PLATFORM_USER: "platform-user";
|
|
|
23579
24054
|
declare const OAUTH_SCOPE_TENANT: "tenant";
|
|
23580
24055
|
declare const OAUTH_SCOPES: readonly ["platform-user", "tenant"];
|
|
23581
24056
|
type OAuthScope = (typeof OAUTH_SCOPES)[number];
|
|
24057
|
+
declare function selectHighestPriorityScope(scopes: string[]): string | undefined;
|
|
23582
24058
|
declare const OAuthTokenResponse: z.ZodObject<{
|
|
23583
24059
|
access_token: z.ZodString;
|
|
23584
24060
|
token_type: z.ZodString;
|
|
@@ -23757,5 +24233,5 @@ declare function getDefaultMembraneConfigLoader(): MembraneConfigLoader;
|
|
|
23757
24233
|
declare function loadMembraneConfig(cwd?: string, options?: LoadConfigOptions): PartialMembraneConfig;
|
|
23758
24234
|
declare function hasMembraneCredentials(cwd?: string): boolean;
|
|
23759
24235
|
|
|
23760
|
-
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONFIG_FILE_NAME, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, Cluster, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateClusterRequest, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, Eval, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FirstNotEmpty, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListClustersQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneConfigLoader, MembraneElementLayer, MembraneError, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDefaultMembraneConfigLoader, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, hasMembraneCredentials, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
24236
|
+
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONFIG_FILE_NAME, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, Cluster, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionClientAction, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateClusterRequest, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, EnsureConnectionRequest, ErrorData, ErrorDataSchema, ErrorType, Eval, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FirstNotEmpty, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, IntentProperties, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListClustersQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneConfigLoader, MembraneElementLayer, MembraneError, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDefaultMembraneConfigLoader, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, hasMembraneCredentials, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
23761
24237
|
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ClusterDto, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DbBackedCounts, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneConfig, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PartialMembraneConfig, PatchAgentSession, PatchSchemaOption, PendingQueueCount, PendingTasksSummary, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkerTypeFilter, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|