@membranehq/sdk 0.18.0 → 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 +200 -9
- package/dist/bundle.js +1072 -766
- 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/alerts/types.d.ts +14 -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 +6 -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 -7
- package/dist/dts/workspace-elements/api/connectors-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -0
- 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-apps-api.d.ts +1 -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 +11 -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/app-data-schemas/index.d.ts +4 -5
- package/dist/dts/workspace-elements/base/connections/index.d.ts +27 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +6 -7
- package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +0 -1
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +13 -2
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +10 -3
- package/dist/dts/workspace-elements/base/flows/index.d.ts +10 -2
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +8 -10
- 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 +11 -1
- package/dist/index.browser.d.mts +610 -121
- package/dist/index.browser.d.ts +610 -121
- package/dist/index.browser.js +216 -109
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +212 -110
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +610 -121
- package/dist/index.node.d.ts +610 -121
- package/dist/index.node.js +216 -109
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +212 -110
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.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,10 +479,8 @@ 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
|
-
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
468
|
-
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
469
|
-
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
470
484
|
dataSourceUuid: z.ZodOptional<z.ZodString>;
|
|
471
485
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
472
486
|
appSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -494,6 +508,9 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
494
508
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
495
509
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
496
510
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
511
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
512
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
513
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
497
514
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
498
515
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
499
516
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -555,6 +572,9 @@ declare const BaseFieldMappingInstance: z.ZodObject<{
|
|
|
555
572
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
556
573
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
557
574
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
575
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
576
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
577
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
558
578
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
559
579
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
560
580
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -642,6 +662,9 @@ declare const ActionEditableProperties: z.ZodObject<{
|
|
|
642
662
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
643
663
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
644
664
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
665
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
666
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
667
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
645
668
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
646
669
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
647
670
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -663,6 +686,7 @@ declare const ActionExportProperties: z.ZodObject<{
|
|
|
663
686
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
664
687
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
665
688
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
689
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
666
690
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
667
691
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
668
692
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -682,6 +706,8 @@ declare const BaseAction: z.ZodObject<{
|
|
|
682
706
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
683
707
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
684
708
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
709
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
710
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
685
711
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
686
712
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
687
713
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -699,6 +725,7 @@ declare const BaseAction: z.ZodObject<{
|
|
|
699
725
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
700
726
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
701
727
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
728
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
702
729
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
703
730
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
704
731
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -720,6 +747,8 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
720
747
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
721
748
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
722
749
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
750
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
751
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
723
752
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
724
753
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
725
754
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -737,6 +766,7 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
737
766
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
738
767
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
739
768
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
769
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
740
770
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
741
771
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
742
772
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6741,12 +6771,6 @@ declare const WriteableConnectorFields: z.ZodObject<{
|
|
|
6741
6771
|
}, z.core.$strip>;
|
|
6742
6772
|
declare const ConnectorExportProperties: z.ZodObject<{
|
|
6743
6773
|
key: z.ZodOptional<z.ZodString>;
|
|
6744
|
-
name: z.ZodOptional<z.ZodString>;
|
|
6745
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
6746
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
6747
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
6748
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
6749
|
-
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6750
6774
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6751
6775
|
proxy: "proxy";
|
|
6752
6776
|
"integration-app-token": "integration-app-token";
|
|
@@ -6755,6 +6779,9 @@ declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
6755
6779
|
oauth1: "oauth1";
|
|
6756
6780
|
"client-credentials": "client-credentials";
|
|
6757
6781
|
}>>;
|
|
6782
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6783
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
6784
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
6758
6785
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6759
6786
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6760
6787
|
proxy: "proxy";
|
|
@@ -6884,6 +6911,7 @@ declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
6884
6911
|
javascript: "javascript";
|
|
6885
6912
|
}>>;
|
|
6886
6913
|
}, z.core.$loose>>;
|
|
6914
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
6887
6915
|
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
6888
6916
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6889
6917
|
mapping: "mapping";
|
|
@@ -6930,7 +6958,8 @@ declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
6930
6958
|
}>>;
|
|
6931
6959
|
}, z.core.$loose>>;
|
|
6932
6960
|
proxyKey: z.ZodOptional<z.ZodString>;
|
|
6933
|
-
|
|
6961
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
6962
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6934
6963
|
}, z.core.$strip>;
|
|
6935
6964
|
type ConnectorExportProperties = z.infer<typeof ConnectorExportProperties>;
|
|
6936
6965
|
interface ConnectorVersionExport {
|
|
@@ -9355,6 +9384,13 @@ declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
9355
9384
|
name: z.ZodOptional<z.ZodString>;
|
|
9356
9385
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9357
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>;
|
|
9358
9394
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
9359
9395
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
9360
9396
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -9362,6 +9398,16 @@ declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
9362
9398
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
9363
9399
|
}, z.core.$strip>;
|
|
9364
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>;
|
|
9365
9411
|
declare const BaseConnection: z.ZodObject<{
|
|
9366
9412
|
id: z.ZodString;
|
|
9367
9413
|
name: z.ZodString;
|
|
@@ -9386,6 +9432,16 @@ declare const BaseConnection: z.ZodObject<{
|
|
|
9386
9432
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9387
9433
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9388
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>>;
|
|
9389
9445
|
userId: z.ZodString;
|
|
9390
9446
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
9391
9447
|
}, z.core.$strip>;
|
|
@@ -10266,6 +10322,9 @@ declare const DataSourceEditableProperties: z.ZodObject<{
|
|
|
10266
10322
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10267
10323
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10268
10324
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10325
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10326
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10327
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10269
10328
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10270
10329
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10271
10330
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10289,6 +10348,9 @@ declare const BackwardCompatibleDataSourceEditableProperties: z.ZodObject<{
|
|
|
10289
10348
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10290
10349
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10291
10350
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10351
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10352
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10353
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10292
10354
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10293
10355
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10294
10356
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10313,10 +10375,9 @@ declare const DataSourceExportProperties: z.ZodObject<{
|
|
|
10313
10375
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10314
10376
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10315
10377
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10378
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10316
10379
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
10317
10380
|
udm: z.ZodOptional<z.ZodString>;
|
|
10318
|
-
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
10319
|
-
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
10320
10381
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
10321
10382
|
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
10322
10383
|
collectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -10336,6 +10397,9 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
10336
10397
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10337
10398
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10338
10399
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10400
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10401
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10402
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10339
10403
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10340
10404
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10341
10405
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10485,6 +10549,9 @@ declare const BaseDataSourceInstance: z.ZodObject<{
|
|
|
10485
10549
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10486
10550
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10487
10551
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10552
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10553
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10554
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10488
10555
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10489
10556
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10490
10557
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10966,6 +11033,9 @@ declare const FlowEditableProperties: z.ZodObject<{
|
|
|
10966
11033
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10967
11034
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10968
11035
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11036
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11037
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11038
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10969
11039
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10970
11040
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10971
11041
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11013,12 +11083,11 @@ declare const FlowExportProperties: z.ZodObject<{
|
|
|
11013
11083
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11014
11084
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11015
11085
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11086
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11016
11087
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11017
11088
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
11018
11089
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
11019
11090
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
11020
|
-
flowId: z.ZodOptional<z.ZodString>;
|
|
11021
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
11022
11091
|
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11023
11092
|
type: z.ZodOptional<z.ZodString>;
|
|
11024
11093
|
version: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11061,6 +11130,9 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
11061
11130
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11062
11131
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
11063
11132
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11133
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11134
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11135
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11064
11136
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11065
11137
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11066
11138
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11129,6 +11201,9 @@ declare const BaseFlowInstance: z.ZodObject<{
|
|
|
11129
11201
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11130
11202
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
11131
11203
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11204
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11205
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11206
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11132
11207
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11133
11208
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11134
11209
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11328,26 +11403,24 @@ declare const IntegrationEditableProperties: z.ZodObject<{
|
|
|
11328
11403
|
}, z.core.$strip>;
|
|
11329
11404
|
type IntegrationEditableProperties = z.infer<typeof IntegrationEditableProperties>;
|
|
11330
11405
|
declare const IntegrationExportProperties: z.ZodObject<{
|
|
11331
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
11332
11406
|
key: z.ZodOptional<z.ZodString>;
|
|
11333
|
-
name: z.ZodOptional<z.ZodString>;
|
|
11334
11407
|
description: z.ZodOptional<z.ZodString>;
|
|
11408
|
+
name: z.ZodOptional<z.ZodString>;
|
|
11409
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
11335
11410
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11336
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
11337
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11338
11411
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11412
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11413
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
11339
11414
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
11340
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
11341
|
-
logoBase64: z.ZodOptional<z.ZodString>;
|
|
11342
11415
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11343
|
-
|
|
11344
|
-
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
11345
|
-
connectorKey: z.ZodOptional<z.ZodString>;
|
|
11346
|
-
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11416
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
11347
11417
|
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11348
11418
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11349
11419
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11350
11420
|
}, z.core.$strip>>>;
|
|
11421
|
+
logoBase64: z.ZodOptional<z.ZodString>;
|
|
11422
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
11423
|
+
connectorKey: z.ZodOptional<z.ZodString>;
|
|
11351
11424
|
}, z.core.$strip>;
|
|
11352
11425
|
type IntegrationExportProperties = z.infer<typeof IntegrationExportProperties>;
|
|
11353
11426
|
type IntegrationAuthOptionLegacy = ConnectorAuthSpec & {
|
|
@@ -11433,8 +11506,10 @@ declare const PackageEditableProperties: z.ZodObject<{
|
|
|
11433
11506
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11434
11507
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11435
11508
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11436
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11437
11509
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11510
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11511
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11512
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11438
11513
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11439
11514
|
id: z.ZodString;
|
|
11440
11515
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -11450,6 +11525,7 @@ declare const PackageExportProperties: z.ZodObject<{
|
|
|
11450
11525
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11451
11526
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11452
11527
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11528
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11453
11529
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11454
11530
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11455
11531
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -11488,8 +11564,10 @@ declare const BasePackage: z.ZodObject<{
|
|
|
11488
11564
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11489
11565
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11490
11566
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11491
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11492
11567
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11568
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11569
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11570
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11493
11571
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11494
11572
|
id: z.ZodString;
|
|
11495
11573
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -11591,7 +11669,6 @@ declare const DataLinkTableExportProperties: z.ZodObject<{
|
|
|
11591
11669
|
name: z.ZodOptional<z.ZodString>;
|
|
11592
11670
|
uuid: z.ZodOptional<z.ZodString>;
|
|
11593
11671
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11594
|
-
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
11595
11672
|
}, z.core.$strip>;
|
|
11596
11673
|
type DataLinkTableExportProperties = z.infer<typeof DataLinkTableExportProperties>;
|
|
11597
11674
|
declare const BaseDataLinkTable: z.ZodObject<{
|
|
@@ -11759,15 +11836,14 @@ declare const AppDataSchemaEditableProperties: z.ZodObject<{
|
|
|
11759
11836
|
}, z.core.$strip>;
|
|
11760
11837
|
type AppDataSchemaEditableProperties = z.infer<typeof AppDataSchemaEditableProperties>;
|
|
11761
11838
|
declare const AppDataSchemaExportProperties: z.ZodObject<{
|
|
11762
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
11763
11839
|
key: z.ZodOptional<z.ZodString>;
|
|
11764
|
-
|
|
11840
|
+
code: z.ZodOptional<z.ZodString>;
|
|
11765
11841
|
description: z.ZodOptional<z.ZodString>;
|
|
11766
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11767
11842
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11768
|
-
|
|
11843
|
+
name: z.ZodOptional<z.ZodString>;
|
|
11844
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
11845
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11769
11846
|
schema: z.ZodOptional<z.ZodAny>;
|
|
11770
|
-
code: z.ZodOptional<z.ZodString>;
|
|
11771
11847
|
}, z.core.$strip>;
|
|
11772
11848
|
type AppDataSchemaExportProperties = z.infer<typeof AppDataSchemaExportProperties>;
|
|
11773
11849
|
declare const BaseAppDataSchema: z.ZodObject<{
|
|
@@ -12350,15 +12426,15 @@ declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
12350
12426
|
includeSecrets: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12351
12427
|
}, z.core.$strip>;
|
|
12352
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>;
|
|
12353
12434
|
declare const CreateConnectionRequest: z.ZodObject<{
|
|
12354
12435
|
name: z.ZodOptional<z.ZodString>;
|
|
12355
12436
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12356
12437
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12357
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12358
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12359
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12360
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12361
|
-
input: z.ZodOptional<z.ZodUnknown>;
|
|
12362
12438
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12363
12439
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12364
12440
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -12366,25 +12442,40 @@ declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
12366
12442
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12367
12443
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
12368
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>;
|
|
12369
12451
|
}, z.core.$strip>;
|
|
12370
12452
|
type CreateConnectionRequest = z.infer<typeof CreateConnectionRequest>;
|
|
12371
12453
|
declare const UpdateConnectionRequest: z.ZodObject<{
|
|
12372
12454
|
name: z.ZodOptional<z.ZodString>;
|
|
12373
12455
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12374
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>;
|
|
12375
12464
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12376
12465
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12377
12466
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12378
12467
|
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12379
12468
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
12469
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
12380
12470
|
}, z.core.$strip>;
|
|
12381
12471
|
type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
12382
12472
|
declare const ConnectionExportProperties: z.ZodObject<{
|
|
12383
12473
|
name: z.ZodOptional<z.ZodString>;
|
|
12384
12474
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12385
|
-
|
|
12386
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12475
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12387
12476
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12477
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12478
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12388
12479
|
}, z.core.$strip>;
|
|
12389
12480
|
type ConnectionExportProperties = z.infer<typeof ConnectionExportProperties>;
|
|
12390
12481
|
declare const ConnectionTestResponse: z.ZodObject<{
|
|
@@ -12442,6 +12533,16 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
12442
12533
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12443
12534
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12444
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>>;
|
|
12445
12546
|
userId: z.ZodString;
|
|
12446
12547
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12447
12548
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12530,6 +12631,16 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
12530
12631
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12531
12632
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12532
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>>;
|
|
12533
12644
|
userId: z.ZodString;
|
|
12534
12645
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12535
12646
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12626,6 +12737,16 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12626
12737
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12627
12738
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12628
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>>;
|
|
12629
12750
|
userId: z.ZodString;
|
|
12630
12751
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12631
12752
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12826,6 +12947,9 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12826
12947
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12827
12948
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
12828
12949
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12950
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12951
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12952
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
12829
12953
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12830
12954
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12831
12955
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -12905,6 +13029,16 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12905
13029
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12906
13030
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12907
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>>;
|
|
12908
13042
|
userId: z.ZodString;
|
|
12909
13043
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12910
13044
|
}, z.core.$strip>>;
|
|
@@ -13013,6 +13147,9 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
13013
13147
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13014
13148
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13015
13149
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13150
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13151
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13152
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13016
13153
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13017
13154
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13018
13155
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13092,6 +13229,16 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
13092
13229
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13093
13230
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13094
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>>;
|
|
13095
13242
|
userId: z.ZodString;
|
|
13096
13243
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13097
13244
|
}, z.core.$strip>>;
|
|
@@ -13173,6 +13320,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13173
13320
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13174
13321
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13175
13322
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13323
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13324
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13325
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13176
13326
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13177
13327
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13178
13328
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13286,6 +13436,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13286
13436
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13287
13437
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13288
13438
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13439
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13440
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13441
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13289
13442
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13290
13443
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13291
13444
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13426,6 +13579,16 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13426
13579
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13427
13580
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13428
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>>;
|
|
13429
13592
|
userId: z.ZodString;
|
|
13430
13593
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13431
13594
|
}, z.core.$strip>>;
|
|
@@ -13441,6 +13604,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13441
13604
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13442
13605
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13443
13606
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13607
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13608
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13609
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13444
13610
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13445
13611
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13446
13612
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13510,6 +13676,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13510
13676
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13511
13677
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13512
13678
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13679
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13680
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13681
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13513
13682
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13514
13683
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13515
13684
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13623,6 +13792,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13623
13792
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13624
13793
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13625
13794
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13795
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13796
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13797
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13626
13798
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13627
13799
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13628
13800
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13763,6 +13935,16 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13763
13935
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13764
13936
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13765
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>>;
|
|
13766
13948
|
userId: z.ZodString;
|
|
13767
13949
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13768
13950
|
}, z.core.$strip>>;
|
|
@@ -13778,6 +13960,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13778
13960
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13779
13961
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13780
13962
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13963
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13964
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13965
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13781
13966
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13782
13967
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13783
13968
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13872,6 +14057,9 @@ declare const CreateFlowRequest: z.ZodObject<{
|
|
|
13872
14057
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13873
14058
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13874
14059
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14060
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14061
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14062
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13875
14063
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13876
14064
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13877
14065
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13921,6 +14109,9 @@ declare const UpdateFlowRequest: z.ZodObject<{
|
|
|
13921
14109
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13922
14110
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13923
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>>;
|
|
13924
14115
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13925
14116
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13926
14117
|
flowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14037,6 +14228,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14037
14228
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14038
14229
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14039
14230
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14231
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14232
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14233
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14040
14234
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14041
14235
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14042
14236
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14231,6 +14425,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14231
14425
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14232
14426
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14233
14427
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14428
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14429
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14430
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14234
14431
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14235
14432
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14236
14433
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14452,6 +14649,16 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14452
14649
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14453
14650
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14454
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>>;
|
|
14455
14662
|
userId: z.ZodString;
|
|
14456
14663
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14457
14664
|
}, z.core.$strip>>;
|
|
@@ -14467,6 +14674,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14467
14674
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14468
14675
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14469
14676
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14677
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14678
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14679
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14470
14680
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14471
14681
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14472
14682
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14619,6 +14829,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14619
14829
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14620
14830
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14621
14831
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14832
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14833
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14834
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14622
14835
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14623
14836
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14624
14837
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14813,6 +15026,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14813
15026
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14814
15027
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14815
15028
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15029
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15030
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15031
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14816
15032
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14817
15033
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14818
15034
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15034,6 +15250,16 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
15034
15250
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15035
15251
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15036
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>>;
|
|
15037
15263
|
userId: z.ZodString;
|
|
15038
15264
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15039
15265
|
}, z.core.$strip>>;
|
|
@@ -15049,6 +15275,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
15049
15275
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15050
15276
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15051
15277
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15278
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15279
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15280
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15052
15281
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15053
15282
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15054
15283
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15248,6 +15477,9 @@ declare const CreateDataSourceRequest: z.ZodObject<{
|
|
|
15248
15477
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15249
15478
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15250
15479
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15480
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15481
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15482
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15251
15483
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15252
15484
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15253
15485
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15271,6 +15503,9 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
|
|
|
15271
15503
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15272
15504
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15273
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>>;
|
|
15274
15509
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15275
15510
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15276
15511
|
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15534,6 +15769,13 @@ declare class ConnectionAccessor {
|
|
|
15534
15769
|
archivedAt?: string | undefined;
|
|
15535
15770
|
isDeactivated?: boolean | undefined;
|
|
15536
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;
|
|
15537
15779
|
tenantId?: string | undefined;
|
|
15538
15780
|
user?: {
|
|
15539
15781
|
id: string;
|
|
@@ -15589,7 +15831,7 @@ declare class ConnectionAccessor {
|
|
|
15589
15831
|
}> | undefined;
|
|
15590
15832
|
} | undefined;
|
|
15591
15833
|
} | null>;
|
|
15592
|
-
openReconnectUI(
|
|
15834
|
+
openReconnectUI(_options?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
15593
15835
|
refreshCredentials(): Promise<void>;
|
|
15594
15836
|
getPath(subpath?: string, query?: Record<string, any>): string;
|
|
15595
15837
|
}
|
|
@@ -15746,6 +15988,7 @@ declare const FindIntegrationsQuery: z.ZodObject<{
|
|
|
15746
15988
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
15747
15989
|
cursor: z.ZodOptional<z.ZodString>;
|
|
15748
15990
|
search: z.ZodOptional<z.ZodString>;
|
|
15991
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
15749
15992
|
}, z.core.$strip>;
|
|
15750
15993
|
type FindIntegrationsQuery = z.infer<typeof FindIntegrationsQuery>;
|
|
15751
15994
|
interface FindIntegrationsResponse extends PaginationResponse<IntegrationApiResponse> {
|
|
@@ -15848,6 +16091,16 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
15848
16091
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15849
16092
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15850
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>>;
|
|
15851
16104
|
userId: z.ZodString;
|
|
15852
16105
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15853
16106
|
}, z.core.$strip>>;
|
|
@@ -15886,6 +16139,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15886
16139
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15887
16140
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15888
16141
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16142
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16143
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16144
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15889
16145
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15890
16146
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15891
16147
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -15980,6 +16236,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15980
16236
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15981
16237
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15982
16238
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16239
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16240
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16241
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15983
16242
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15984
16243
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15985
16244
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16101,6 +16360,16 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
16101
16360
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16102
16361
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16103
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>>;
|
|
16104
16373
|
userId: z.ZodString;
|
|
16105
16374
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16106
16375
|
}, z.core.$strip>>;
|
|
@@ -16116,6 +16385,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
16116
16385
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16117
16386
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16118
16387
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16388
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16389
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16390
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16119
16391
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16120
16392
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16121
16393
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16167,6 +16439,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16167
16439
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16168
16440
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16169
16441
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16442
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16443
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16444
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16170
16445
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16171
16446
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16172
16447
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16261,6 +16536,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16261
16536
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16262
16537
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16263
16538
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16539
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16540
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16541
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16264
16542
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16265
16543
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16266
16544
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16382,6 +16660,16 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16382
16660
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16383
16661
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16384
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>>;
|
|
16385
16673
|
userId: z.ZodString;
|
|
16386
16674
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16387
16675
|
}, z.core.$strip>>;
|
|
@@ -16397,6 +16685,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16397
16685
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16398
16686
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16399
16687
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16688
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16689
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16690
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16400
16691
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16401
16692
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16402
16693
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16493,6 +16784,9 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
|
16493
16784
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16494
16785
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16495
16786
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16787
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16788
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16789
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16496
16790
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16497
16791
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16498
16792
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16525,6 +16819,9 @@ declare const CreateFieldMappingInstanceRequest: z.ZodObject<{
|
|
|
16525
16819
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16526
16820
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16527
16821
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16822
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16823
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16824
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16528
16825
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16529
16826
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16530
16827
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16557,6 +16854,9 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
|
|
|
16557
16854
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16558
16855
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16559
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>>;
|
|
16560
16860
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16561
16861
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16562
16862
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16589,6 +16889,9 @@ declare const UpdateFieldMappingInstanceRequest: z.ZodObject<{
|
|
|
16589
16889
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16590
16890
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16591
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>>;
|
|
16592
16895
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16593
16896
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16594
16897
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16713,6 +17016,13 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
16713
17016
|
archivedAt?: string | undefined;
|
|
16714
17017
|
isDeactivated?: boolean | undefined;
|
|
16715
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;
|
|
16716
17026
|
tenantId?: string | undefined;
|
|
16717
17027
|
user?: {
|
|
16718
17028
|
id: string;
|
|
@@ -16821,8 +17131,10 @@ declare const CreatePackageRequest: z.ZodObject<{
|
|
|
16821
17131
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16822
17132
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16823
17133
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16824
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16825
17134
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17135
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17136
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17137
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16826
17138
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16827
17139
|
id: z.ZodString;
|
|
16828
17140
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -16845,8 +17157,10 @@ declare const UpdatePackageRequest: z.ZodObject<{
|
|
|
16845
17157
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16846
17158
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16847
17159
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16848
|
-
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16849
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>>;
|
|
16850
17164
|
elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16851
17165
|
id: z.ZodString;
|
|
16852
17166
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -16876,8 +17190,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16876
17190
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16877
17191
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16878
17192
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16879
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16880
17193
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17194
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17195
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17196
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16881
17197
|
key: z.ZodString;
|
|
16882
17198
|
name: z.ZodString;
|
|
16883
17199
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16913,8 +17229,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16913
17229
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16914
17230
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16915
17231
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16916
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16917
17232
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17233
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17234
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17235
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16918
17236
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16919
17237
|
id: z.ZodString;
|
|
16920
17238
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -17069,6 +17387,7 @@ declare const FindCustomersQuery: z.ZodObject<{
|
|
|
17069
17387
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
17070
17388
|
cursor: z.ZodOptional<z.ZodString>;
|
|
17071
17389
|
search: z.ZodOptional<z.ZodString>;
|
|
17390
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
17072
17391
|
}, z.core.$strip>;
|
|
17073
17392
|
type FindCustomersQuery = z.infer<typeof FindCustomersQuery>;
|
|
17074
17393
|
declare const CustomerSelector: z.ZodObject<{
|
|
@@ -17377,6 +17696,16 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
17377
17696
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17378
17697
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17379
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>>;
|
|
17380
17709
|
userId: z.ZodString;
|
|
17381
17710
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17382
17711
|
}, z.core.$strip>>;
|
|
@@ -17604,6 +17933,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17604
17933
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17605
17934
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17606
17935
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
17936
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17937
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17607
17938
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17608
17939
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17609
17940
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17621,6 +17952,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17621
17952
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17622
17953
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17623
17954
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17955
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17624
17956
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17625
17957
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17626
17958
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -17699,6 +18031,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17699
18031
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17700
18032
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17701
18033
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18034
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18035
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17702
18036
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17703
18037
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17704
18038
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17716,6 +18050,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17716
18050
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17717
18051
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17718
18052
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18053
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17719
18054
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17720
18055
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17721
18056
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17737,6 +18072,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17737
18072
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17738
18073
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17739
18074
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18075
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18076
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17740
18077
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17741
18078
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17742
18079
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17754,6 +18091,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17754
18091
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17755
18092
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17756
18093
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18094
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17757
18095
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17758
18096
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17759
18097
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17851,6 +18189,9 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
17851
18189
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17852
18190
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17853
18191
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18192
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18193
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18194
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17854
18195
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17855
18196
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17856
18197
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17858,6 +18199,7 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
17858
18199
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
17859
18200
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
17860
18201
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
18202
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17861
18203
|
}, z.core.$strip>;
|
|
17862
18204
|
type CreateActionRequest = z.infer<typeof CreateActionRequest>;
|
|
17863
18205
|
declare const UpdateActionRequest: z.ZodObject<{
|
|
@@ -17873,6 +18215,9 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
17873
18215
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17874
18216
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17875
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>>;
|
|
17876
18221
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17877
18222
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17878
18223
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -17880,6 +18225,7 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
17880
18225
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
17881
18226
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
17882
18227
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
18228
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17883
18229
|
}, z.core.$strip>;
|
|
17884
18230
|
type UpdateActionRequest = z.infer<typeof UpdateActionRequest>;
|
|
17885
18231
|
declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
@@ -17895,6 +18241,9 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
17895
18241
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17896
18242
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17897
18243
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18244
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18245
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18246
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17898
18247
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17899
18248
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17900
18249
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17902,6 +18251,7 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
17902
18251
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
17903
18252
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
17904
18253
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
18254
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17905
18255
|
}, z.core.$strip>;
|
|
17906
18256
|
type CreateActionInstanceRequest = CreateActionRequest;
|
|
17907
18257
|
declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
@@ -17917,6 +18267,9 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
17917
18267
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17918
18268
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17919
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>>;
|
|
17920
18273
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17921
18274
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17922
18275
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -17924,6 +18277,7 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
17924
18277
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
17925
18278
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
17926
18279
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
18280
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17927
18281
|
}, z.core.$strip>;
|
|
17928
18282
|
type UpdateActionInstanceRequest = UpdateActionRequest;
|
|
17929
18283
|
declare const RunActionRequest: z.ZodObject<{
|
|
@@ -17951,6 +18305,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17951
18305
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17952
18306
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17953
18307
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18308
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18309
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17954
18310
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17955
18311
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17956
18312
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17968,6 +18324,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17968
18324
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17969
18325
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17970
18326
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18327
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17971
18328
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17972
18329
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17973
18330
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -18046,6 +18403,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18046
18403
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18047
18404
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18048
18405
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18406
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18407
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18049
18408
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18050
18409
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18051
18410
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18063,6 +18422,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18063
18422
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18064
18423
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18065
18424
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18425
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18066
18426
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18067
18427
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18068
18428
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18084,6 +18444,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18084
18444
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18085
18445
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18086
18446
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18447
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18448
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18087
18449
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18088
18450
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18089
18451
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18101,6 +18463,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18101
18463
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18102
18464
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18103
18465
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18466
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18104
18467
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18105
18468
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18106
18469
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18247,6 +18610,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18247
18610
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18248
18611
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18249
18612
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18613
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18614
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18250
18615
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18251
18616
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18252
18617
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18264,6 +18629,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18264
18629
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18265
18630
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18266
18631
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18632
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18267
18633
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18268
18634
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18269
18635
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18284,6 +18650,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18284
18650
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18285
18651
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18286
18652
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18653
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18654
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18287
18655
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18288
18656
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18289
18657
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18301,6 +18669,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18301
18669
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18302
18670
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18303
18671
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18672
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18304
18673
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18305
18674
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18306
18675
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18378,6 +18747,16 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18378
18747
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18379
18748
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18380
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>>;
|
|
18381
18760
|
userId: z.ZodString;
|
|
18382
18761
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18383
18762
|
}, z.core.$strip>>;
|
|
@@ -18449,6 +18828,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18449
18828
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18450
18829
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18451
18830
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18831
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18832
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18452
18833
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18453
18834
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18454
18835
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18466,6 +18847,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18466
18847
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18467
18848
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18468
18849
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18850
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18469
18851
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18470
18852
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18471
18853
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18486,6 +18868,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18486
18868
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18487
18869
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18488
18870
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18871
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18872
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18489
18873
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18490
18874
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18491
18875
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18503,6 +18887,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18503
18887
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18504
18888
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18505
18889
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18890
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18506
18891
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18507
18892
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18508
18893
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18580,6 +18965,16 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18580
18965
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18581
18966
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18582
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>>;
|
|
18583
18978
|
userId: z.ZodString;
|
|
18584
18979
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18585
18980
|
}, z.core.$strip>>;
|
|
@@ -18606,6 +19001,7 @@ type ActionRunLogRecord = ActionRunLogRecordApiResponse;
|
|
|
18606
19001
|
declare const ListPublicConnectorsQuery: z.ZodObject<{
|
|
18607
19002
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
18608
19003
|
cursor: z.ZodOptional<z.ZodString>;
|
|
19004
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
18609
19005
|
search: z.ZodOptional<z.ZodString>;
|
|
18610
19006
|
}, z.core.$strip>;
|
|
18611
19007
|
type ListPublicConnectorsQuery = z.infer<typeof ListPublicConnectorsQuery>;
|
|
@@ -18613,6 +19009,7 @@ type ListPublicConnectorsQuery = z.infer<typeof ListPublicConnectorsQuery>;
|
|
|
18613
19009
|
declare const ListExternalAppsQuery: z.ZodObject<{
|
|
18614
19010
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
18615
19011
|
cursor: z.ZodOptional<z.ZodString>;
|
|
19012
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
18616
19013
|
search: z.ZodOptional<z.ZodString>;
|
|
18617
19014
|
category: z.ZodOptional<z.ZodString>;
|
|
18618
19015
|
isConnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
@@ -18738,6 +19135,7 @@ declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
|
|
|
18738
19135
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18739
19136
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18740
19137
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
19138
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
18741
19139
|
}, z.core.$strip>;
|
|
18742
19140
|
type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
|
|
18743
19141
|
interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
@@ -18886,6 +19284,16 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18886
19284
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18887
19285
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18888
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>>;
|
|
18889
19297
|
userId: z.ZodString;
|
|
18890
19298
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18891
19299
|
}, z.core.$strip>>;
|
|
@@ -19081,6 +19489,7 @@ declare const FindAppDataSchemaInstancesQuery: z.ZodObject<{
|
|
|
19081
19489
|
userId: z.ZodOptional<z.ZodString>;
|
|
19082
19490
|
appDataSchemaId: z.ZodOptional<z.ZodString>;
|
|
19083
19491
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
19492
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
19084
19493
|
}, z.core.$strip>;
|
|
19085
19494
|
type FindAppDataSchemaInstancesQuery = z.infer<typeof FindAppDataSchemaInstancesQuery>;
|
|
19086
19495
|
interface AppDataSchemaInstanceSelector {
|
|
@@ -19310,6 +19719,16 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
19310
19719
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19311
19720
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19312
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>>;
|
|
19313
19732
|
userId: z.ZodString;
|
|
19314
19733
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19315
19734
|
}, z.core.$strip>>;
|
|
@@ -19479,6 +19898,16 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
19479
19898
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19480
19899
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19481
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>>;
|
|
19482
19911
|
userId: z.ZodString;
|
|
19483
19912
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19484
19913
|
}, z.core.$strip>>;
|
|
@@ -19652,6 +20081,16 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
19652
20081
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19653
20082
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19654
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>>;
|
|
19655
20094
|
userId: z.ZodString;
|
|
19656
20095
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19657
20096
|
}, z.core.$strip>>;
|
|
@@ -19768,6 +20207,16 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
19768
20207
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19769
20208
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19770
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>>;
|
|
19771
20220
|
userId: z.ZodString;
|
|
19772
20221
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19773
20222
|
}, z.core.$strip>>;
|
|
@@ -19998,6 +20447,80 @@ interface FilterFieldMeta {
|
|
|
19998
20447
|
}
|
|
19999
20448
|
declare function getFilterFieldMeta(meta: unknown): FilterFieldMeta | undefined;
|
|
20000
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
|
+
|
|
20001
20524
|
declare const SYSTEM_FIELDS: string[];
|
|
20002
20525
|
declare function jsonPointerToDotPath(pointer: string): string;
|
|
20003
20526
|
declare function getEditablePathsFromSchema(schema: z.ZodTypeAny, prefix?: string): Set<string>;
|
|
@@ -20027,6 +20550,8 @@ interface WorkspaceElementSpec {
|
|
|
20027
20550
|
statsKey?: string;
|
|
20028
20551
|
relatedIntegrationLayerElements?: WorkspaceElementType[];
|
|
20029
20552
|
relatedActivityLogElements?: WorkspaceElementType[];
|
|
20553
|
+
isAgentic?: boolean;
|
|
20554
|
+
agentName?: AgentName;
|
|
20030
20555
|
}
|
|
20031
20556
|
interface WorkspaceElements {
|
|
20032
20557
|
flows?: Record<string, CreateFlowRequest>;
|
|
@@ -20083,6 +20608,8 @@ declare enum AlertType {
|
|
|
20083
20608
|
totalNumberOfWorkspaceElements = "totalNumberOfWorkspaceElements",
|
|
20084
20609
|
instantTasksQueueSize = "instantTasksQueueSize",
|
|
20085
20610
|
queuedTasksQueueSize = "queuedTasksQueueSize",
|
|
20611
|
+
flowRunsQueueSizePerConnection = "flowRunsQueueSizePerConnection",
|
|
20612
|
+
eventsProcessingQueueSizePerConnection = "eventsProcessingQueueSizePerConnection",
|
|
20086
20613
|
parallelApiRequests = "parallelApiRequests",
|
|
20087
20614
|
testAlert = "testAlert"
|
|
20088
20615
|
}
|
|
@@ -20117,6 +20644,8 @@ declare const ALERT_TYPE_CATEGORIES: {
|
|
|
20117
20644
|
readonly totalNumberOfWorkspaceElements: AlertCategory.WORKSPACE_SIZE;
|
|
20118
20645
|
readonly instantTasksQueueSize: AlertCategory.WORKSPACE_SIZE;
|
|
20119
20646
|
readonly queuedTasksQueueSize: AlertCategory.WORKSPACE_SIZE;
|
|
20647
|
+
readonly flowRunsQueueSizePerConnection: AlertCategory.WORKSPACE_SIZE;
|
|
20648
|
+
readonly eventsProcessingQueueSizePerConnection: AlertCategory.WORKSPACE_SIZE;
|
|
20120
20649
|
readonly parallelApiRequests: AlertCategory.RATE_LIMIT;
|
|
20121
20650
|
};
|
|
20122
20651
|
type AlertsByCategory<C extends AlertCategory> = {
|
|
@@ -20158,6 +20687,8 @@ declare const Alert: z.ZodObject<{
|
|
|
20158
20687
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20159
20688
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20160
20689
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20690
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
20691
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
20161
20692
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
20162
20693
|
testAlert: AlertType.testAlert;
|
|
20163
20694
|
}>;
|
|
@@ -20205,6 +20736,8 @@ declare const AlertSchema: z.ZodObject<{
|
|
|
20205
20736
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20206
20737
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20207
20738
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20739
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
20740
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
20208
20741
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
20209
20742
|
testAlert: AlertType.testAlert;
|
|
20210
20743
|
}>;
|
|
@@ -20261,6 +20794,8 @@ declare const AlertDeliverySettingsSchema: z.ZodObject<{
|
|
|
20261
20794
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20262
20795
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20263
20796
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20797
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
20798
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
20264
20799
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
20265
20800
|
testAlert: AlertType.testAlert;
|
|
20266
20801
|
}>, z.ZodOptional<z.ZodObject<{
|
|
@@ -20309,6 +20844,8 @@ declare const FindAlertsQuery: z.ZodObject<{
|
|
|
20309
20844
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20310
20845
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20311
20846
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20847
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
20848
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
20312
20849
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
20313
20850
|
testAlert: AlertType.testAlert;
|
|
20314
20851
|
}>>;
|
|
@@ -20342,6 +20879,8 @@ declare const CreateAlert: z.ZodObject<{
|
|
|
20342
20879
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20343
20880
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20344
20881
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20882
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
20883
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
20345
20884
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
20346
20885
|
testAlert: AlertType.testAlert;
|
|
20347
20886
|
}>;
|
|
@@ -20412,7 +20951,9 @@ declare enum WorkspaceSizeLimits {
|
|
|
20412
20951
|
TotalNumberOfConnections = "totalNumberOfConnections",
|
|
20413
20952
|
TotalNumberOfWorkspaceElements = "totalNumberOfWorkspaceElements",
|
|
20414
20953
|
InstantTasksQueueSize = "instantTasksQueueSize",
|
|
20415
|
-
QueuedTasksQueueSize = "queuedTasksQueueSize"
|
|
20954
|
+
QueuedTasksQueueSize = "queuedTasksQueueSize",
|
|
20955
|
+
FlowRunsQueueSizePerConnection = "flowRunsQueueSizePerConnection",
|
|
20956
|
+
EventsProcessingQueueSizePerConnection = "eventsProcessingQueueSizePerConnection"
|
|
20416
20957
|
}
|
|
20417
20958
|
declare enum CustomerLimits {
|
|
20418
20959
|
ParallelApiRequestsPerCustomer = "parallelApiRequestsPerCustomer",
|
|
@@ -20655,6 +21196,7 @@ declare const WorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20655
21196
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20656
21197
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20657
21198
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21199
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20658
21200
|
}, z$1.core.$strip>;
|
|
20659
21201
|
declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
20660
21202
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -20662,6 +21204,7 @@ declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20662
21204
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20663
21205
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20664
21206
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21207
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20665
21208
|
}, z$1.core.$strip>;
|
|
20666
21209
|
declare const WorkspacePublicKey: z$1.ZodObject<{
|
|
20667
21210
|
name: z$1.ZodString;
|
|
@@ -20887,6 +21430,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20887
21430
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20888
21431
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20889
21432
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21433
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20890
21434
|
}, z$1.core.$strip>>;
|
|
20891
21435
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
20892
21436
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -20912,6 +21456,8 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20912
21456
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20913
21457
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20914
21458
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21459
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
21460
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
20915
21461
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
20916
21462
|
testAlert: AlertType.testAlert;
|
|
20917
21463
|
}>, z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -21152,6 +21698,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21152
21698
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21153
21699
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21154
21700
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21701
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21155
21702
|
}, z$1.core.$strip>>;
|
|
21156
21703
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
21157
21704
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -21177,6 +21724,8 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21177
21724
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21178
21725
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21179
21726
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21727
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
21728
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
21180
21729
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
21181
21730
|
testAlert: AlertType.testAlert;
|
|
21182
21731
|
}>, z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -21311,7 +21860,8 @@ declare enum OrgPlan {
|
|
|
21311
21860
|
}
|
|
21312
21861
|
declare enum OrgUserRole {
|
|
21313
21862
|
Admin = "admin",
|
|
21314
|
-
Member = "member"
|
|
21863
|
+
Member = "member",
|
|
21864
|
+
ReadOnly = "read-only"
|
|
21315
21865
|
}
|
|
21316
21866
|
declare enum OrgUserStatus {
|
|
21317
21867
|
Invited = "invited",
|
|
@@ -21900,6 +22450,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21900
22450
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21901
22451
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21902
22452
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22453
|
+
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
21903
22454
|
}, z.core.$strip>>;
|
|
21904
22455
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
21905
22456
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -21925,6 +22476,8 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21925
22476
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21926
22477
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21927
22478
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22479
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
22480
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
21928
22481
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
21929
22482
|
testAlert: AlertType.testAlert;
|
|
21930
22483
|
}>, z.ZodOptional<z.ZodObject<{
|
|
@@ -22002,6 +22555,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22002
22555
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
22003
22556
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22004
22557
|
isWorkspaceManager: z.ZodBoolean;
|
|
22558
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22005
22559
|
scopes: z.ZodArray<z.ZodString>;
|
|
22006
22560
|
}, z.core.$strip>>;
|
|
22007
22561
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -22042,6 +22596,7 @@ declare const OrgPermissionsSchema: z.ZodObject<{
|
|
|
22042
22596
|
declare const WorkspacePermissionsSchema: z.ZodObject<{
|
|
22043
22597
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22044
22598
|
isWorkspaceManager: z.ZodBoolean;
|
|
22599
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22045
22600
|
scopes: z.ZodArray<z.ZodString>;
|
|
22046
22601
|
}, z.core.$strip>;
|
|
22047
22602
|
declare const TenantPermissionsSchema: z.ZodObject<{
|
|
@@ -22068,6 +22623,7 @@ declare const AuthContextPermissionsSchema: z.ZodObject<{
|
|
|
22068
22623
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
22069
22624
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22070
22625
|
isWorkspaceManager: z.ZodBoolean;
|
|
22626
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22071
22627
|
scopes: z.ZodArray<z.ZodString>;
|
|
22072
22628
|
}, z.core.$strip>>;
|
|
22073
22629
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -23108,79 +23664,6 @@ interface HandyScenarioTemplateElementApi {
|
|
|
23108
23664
|
} & Record<string, any>;
|
|
23109
23665
|
}
|
|
23110
23666
|
|
|
23111
|
-
declare enum AgentSessionStatus {
|
|
23112
|
-
QUEUED = "queued",
|
|
23113
|
-
STARTING = "starting",
|
|
23114
|
-
RUNNING = "running",
|
|
23115
|
-
COMPLETED = "completed",
|
|
23116
|
-
FAILED = "failed",
|
|
23117
|
-
CANCELLED = "cancelled"
|
|
23118
|
-
}
|
|
23119
|
-
declare enum AgentSessionState {
|
|
23120
|
-
BUSY = "busy",
|
|
23121
|
-
IDLE = "idle"
|
|
23122
|
-
}
|
|
23123
|
-
declare enum AgentName {
|
|
23124
|
-
MEMBRANE = "membrane",
|
|
23125
|
-
MEMBRANE_CORE = "membrane-core",
|
|
23126
|
-
SELF_INTEGRATING = "self-integrating",
|
|
23127
|
-
CONNECTION_BUILDING = "connection-building",
|
|
23128
|
-
ACTION_BUILDING = "action-building",
|
|
23129
|
-
UNIVERSE = "universe"
|
|
23130
|
-
}
|
|
23131
|
-
declare const AgentSession: z.ZodObject<{
|
|
23132
|
-
id: z.ZodString;
|
|
23133
|
-
workspaceId: z.ZodString;
|
|
23134
|
-
orgWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
23135
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
23136
|
-
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
23137
|
-
workspaceElementId: z.ZodString;
|
|
23138
|
-
type: z.ZodString;
|
|
23139
|
-
status: z.ZodEnum<typeof AgentSessionStatus>;
|
|
23140
|
-
prompt: z.ZodString;
|
|
23141
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
23142
|
-
lastActivityAt: z.ZodISODateTime;
|
|
23143
|
-
title: z.ZodOptional<z.ZodString>;
|
|
23144
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
23145
|
-
cost: z.ZodOptional<z.ZodNumber>;
|
|
23146
|
-
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
23147
|
-
usage: z.ZodOptional<z.ZodNumber>;
|
|
23148
|
-
hasWorker: z.ZodBoolean;
|
|
23149
|
-
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
23150
|
-
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23151
|
-
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23152
|
-
createdAt: z.ZodISODateTime;
|
|
23153
|
-
updatedAt: z.ZodISODateTime;
|
|
23154
|
-
}, z.core.$strip>;
|
|
23155
|
-
type AgentSession = z.infer<typeof AgentSession>;
|
|
23156
|
-
declare const CreateAgentSession: z.ZodObject<{
|
|
23157
|
-
workspaceElementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
23158
|
-
workspaceElementId: z.ZodOptional<z.ZodString>;
|
|
23159
|
-
prompt: z.ZodString;
|
|
23160
|
-
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
23161
|
-
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
23162
|
-
modelId: z.ZodOptional<z.ZodString>;
|
|
23163
|
-
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23164
|
-
}, z.core.$strip>;
|
|
23165
|
-
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
23166
|
-
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
23167
|
-
input: z.ZodString;
|
|
23168
|
-
synthetic: z.ZodOptional<z.ZodBoolean>;
|
|
23169
|
-
}, z.core.$strip>;
|
|
23170
|
-
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
23171
|
-
declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
23172
|
-
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
23173
|
-
lastActivityAt: z.ZodOptional<z.ZodISODateTime>;
|
|
23174
|
-
title: z.ZodOptional<z.ZodString>;
|
|
23175
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
23176
|
-
cost: z.ZodOptional<z.ZodNumber>;
|
|
23177
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
23178
|
-
opencodeSessionUuid: z.ZodOptional<z.ZodString>;
|
|
23179
|
-
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23180
|
-
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
23181
|
-
}, z.core.$strip>;
|
|
23182
|
-
type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
23183
|
-
|
|
23184
23667
|
declare const SessionCredentials: z.ZodObject<{
|
|
23185
23668
|
accessKeyId: z.ZodString;
|
|
23186
23669
|
secretAccessKey: z.ZodString;
|
|
@@ -23204,6 +23687,10 @@ declare const SessionParameters: z.ZodObject<{
|
|
|
23204
23687
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
23205
23688
|
modelId: z.ZodOptional<z.ZodString>;
|
|
23206
23689
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23690
|
+
engine: z.ZodOptional<z.ZodEnum<{
|
|
23691
|
+
opencode: "opencode";
|
|
23692
|
+
inline: "inline";
|
|
23693
|
+
}>>;
|
|
23207
23694
|
}, z.core.$strip>;
|
|
23208
23695
|
type SessionParameters = z.infer<typeof SessionParameters>;
|
|
23209
23696
|
interface SessionStatus {
|
|
@@ -23224,6 +23711,7 @@ interface SessionStatus {
|
|
|
23224
23711
|
agentVersion: string;
|
|
23225
23712
|
}
|
|
23226
23713
|
|
|
23714
|
+
declare const zodDateCoercion: () => z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
23227
23715
|
declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
|
|
23228
23716
|
|
|
23229
23717
|
declare const MappingSchema: z.ZodAny;
|
|
@@ -23538,7 +24026,7 @@ declare const CreateClientTokenRequest: z.ZodObject<{
|
|
|
23538
24026
|
grantId: z.ZodString;
|
|
23539
24027
|
grantName: z.ZodString;
|
|
23540
24028
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
23541
|
-
|
|
24029
|
+
clientKey: z.ZodOptional<z.ZodString>;
|
|
23542
24030
|
}, z.core.$strip>;
|
|
23543
24031
|
type CreateClientTokenRequest = z.infer<typeof CreateClientTokenRequest>;
|
|
23544
24032
|
declare const ClientTokenListResponse: z.ZodObject<{
|
|
@@ -23566,6 +24054,7 @@ declare const OAUTH_SCOPE_PLATFORM_USER: "platform-user";
|
|
|
23566
24054
|
declare const OAUTH_SCOPE_TENANT: "tenant";
|
|
23567
24055
|
declare const OAUTH_SCOPES: readonly ["platform-user", "tenant"];
|
|
23568
24056
|
type OAuthScope = (typeof OAUTH_SCOPES)[number];
|
|
24057
|
+
declare function selectHighestPriorityScope(scopes: string[]): string | undefined;
|
|
23569
24058
|
declare const OAuthTokenResponse: z.ZodObject<{
|
|
23570
24059
|
access_token: z.ZodString;
|
|
23571
24060
|
token_type: z.ZodString;
|
|
@@ -23710,5 +24199,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
23710
24199
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
23711
24200
|
}
|
|
23712
24201
|
|
|
23713
|
-
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, 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, 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, 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, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
24202
|
+
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, 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, 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, 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, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
23714
24203
|
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, LogRecord, LookupValue, MapFormulaValue, MappingItem, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, 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 };
|