@membranehq/sdk 0.18.1 → 0.20.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 +203 -9
- package/dist/bundle.js +1078 -765
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +8 -1
- package/dist/dts/accessors/integrations-accessors.d.ts +7 -0
- package/dist/dts/agent/session.d.ts +12 -2
- package/dist/dts/agent/worker-contracts.d.ts +4 -0
- package/dist/dts/auth/auth-context-permissions.d.ts +2 -0
- package/dist/dts/client-tokens/types.d.ts +1 -1
- package/dist/dts/functions/base.d.ts +1 -0
- package/dist/dts/functions/function-types/index.d.ts +2 -2
- package/dist/dts/functions/function-types/rest-api-mapping.d.ts +6 -6
- 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 +5 -1
- package/dist/dts/ui.d.ts +5 -0
- package/dist/dts/validation/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +32 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +34 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +52 -6
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +44 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +50 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +26 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +44 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +12 -4
- package/dist/dts/workspace-elements/base/action-instances/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/connection-requests/index.d.ts +8 -1
- package/dist/dts/workspace-elements/base/connections/index.d.ts +27 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +13 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/packages/index.d.ts +7 -2
- package/dist/dts/workspace-elements/types.d.ts +13 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
- package/dist/dts/workspaces/types.d.ts +6 -0
- package/dist/index.browser.d.mts +601 -100
- package/dist/index.browser.d.ts +601 -100
- package/dist/index.browser.js +244 -107
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +236 -108
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +601 -100
- package/dist/index.node.d.ts +601 -100
- package/dist/index.node.js +244 -107
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +236 -108
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.node.d.mts
CHANGED
|
@@ -166,6 +166,8 @@ declare enum WorkspaceEventType {
|
|
|
166
166
|
AlertCreated = "alert.created"
|
|
167
167
|
}
|
|
168
168
|
declare enum WorkspaceElementState {
|
|
169
|
+
BUILDING = "BUILDING",
|
|
170
|
+
CLIENT_ACTION_REQUIRED = "CLIENT_ACTION_REQUIRED",
|
|
169
171
|
CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
|
|
170
172
|
SETUP_FAILED = "SETUP_FAILED",
|
|
171
173
|
READY = "READY"
|
|
@@ -218,6 +220,10 @@ declare const BaseMembraneInterface: z.ZodObject<{
|
|
|
218
220
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
219
221
|
}, z.core.$strip>;
|
|
220
222
|
type BaseMembraneInterface = z.infer<typeof BaseMembraneInterface>;
|
|
223
|
+
declare const IntentProperties: z.ZodObject<{
|
|
224
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
225
|
+
}, z.core.$strip>;
|
|
226
|
+
type IntentProperties = z.infer<typeof IntentProperties>;
|
|
221
227
|
declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObject<{
|
|
222
228
|
uuid: z.ZodOptional<z.ZodString>;
|
|
223
229
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -233,6 +239,9 @@ declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObje
|
|
|
233
239
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
234
240
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
235
241
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
242
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
243
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
244
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
236
245
|
}, z.core.$strip>;
|
|
237
246
|
type BaseIntegrationLevelMembraneInterfaceEditableProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceEditableProperties>;
|
|
238
247
|
declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObject<{
|
|
@@ -256,6 +265,7 @@ declare const BaseIntegrationLevelMembraneInterfaceExportProperties: z.ZodObject
|
|
|
256
265
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
257
266
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
258
267
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
268
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
259
269
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
260
270
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
261
271
|
}, z.core.$strip>;
|
|
@@ -315,6 +325,9 @@ declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
|
315
325
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
316
326
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
317
327
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
328
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
329
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
330
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
318
331
|
name: z.ZodString;
|
|
319
332
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
320
333
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
@@ -433,6 +446,9 @@ declare const FieldMappingEditableProperties: z.ZodObject<{
|
|
|
433
446
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
434
447
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
435
448
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
449
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
450
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
451
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
436
452
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
437
453
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
438
454
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -463,6 +479,7 @@ declare const FieldMappingExportProperties: z.ZodObject<{
|
|
|
463
479
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
464
480
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
465
481
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
482
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
466
483
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
467
484
|
dataSourceUuid: z.ZodOptional<z.ZodString>;
|
|
468
485
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -491,6 +508,9 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
491
508
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
492
509
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
493
510
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
511
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
512
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
513
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
494
514
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
495
515
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
496
516
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -552,6 +572,9 @@ declare const BaseFieldMappingInstance: z.ZodObject<{
|
|
|
552
572
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
553
573
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
554
574
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
575
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
576
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
577
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
555
578
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
556
579
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
557
580
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -639,6 +662,9 @@ declare const ActionEditableProperties: z.ZodObject<{
|
|
|
639
662
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
640
663
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
641
664
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
665
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
666
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
667
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
642
668
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
643
669
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
644
670
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -660,6 +686,7 @@ declare const ActionExportProperties: z.ZodObject<{
|
|
|
660
686
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
661
687
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
662
688
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
689
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
663
690
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
664
691
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
665
692
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -679,6 +706,8 @@ declare const BaseAction: z.ZodObject<{
|
|
|
679
706
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
680
707
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
681
708
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
709
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
710
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
682
711
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
683
712
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
684
713
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -696,6 +725,7 @@ declare const BaseAction: z.ZodObject<{
|
|
|
696
725
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
697
726
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
698
727
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
728
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
699
729
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
700
730
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
701
731
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -717,6 +747,8 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
717
747
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
718
748
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
719
749
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
750
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
751
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
720
752
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
721
753
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
722
754
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -734,6 +766,7 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
734
766
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
735
767
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
736
768
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
769
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
737
770
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
738
771
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
739
772
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -744,8 +777,11 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
744
777
|
type BaseActionInstance = BaseAction;
|
|
745
778
|
|
|
746
779
|
declare const CONNECTION_REQUEST_SCREEN_PATH = "screens/connect";
|
|
780
|
+
declare const AGENTIC_CONNECTION_REQUEST_SCREEN_PATH = "screens/connections";
|
|
747
781
|
declare const CONNECTION_REQUEST_ID_PARAM = "connectionRequestId";
|
|
748
|
-
declare function getConnectionRequestUrl(baseUri: string, requestId: string
|
|
782
|
+
declare function getConnectionRequestUrl(baseUri: string, requestId: string, options?: {
|
|
783
|
+
prompt?: string;
|
|
784
|
+
}): string;
|
|
749
785
|
declare const CreateConnectionRequestPayload: z.ZodObject<{
|
|
750
786
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
751
787
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -757,8 +793,11 @@ declare const CreateConnectionRequestPayload: z.ZodObject<{
|
|
|
757
793
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
758
794
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
759
795
|
redirectUri: z.ZodOptional<z.ZodString>;
|
|
796
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
760
797
|
}, z.core.$strip>;
|
|
761
798
|
type CreateConnectionRequestPayload = z.infer<typeof CreateConnectionRequestPayload>;
|
|
799
|
+
declare const PatchConnectionRequestPayload: z.ZodObject<{}, z.core.$strip>;
|
|
800
|
+
type PatchConnectionRequestPayload = z.infer<typeof PatchConnectionRequestPayload>;
|
|
762
801
|
declare const ConnectionRequest: z.ZodObject<{
|
|
763
802
|
requestId: z.ZodString;
|
|
764
803
|
tenantId: z.ZodString;
|
|
@@ -772,6 +811,7 @@ declare const ConnectionRequest: z.ZodObject<{
|
|
|
772
811
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
773
812
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
774
813
|
redirectUri: z.ZodOptional<z.ZodString>;
|
|
814
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
775
815
|
status: z.ZodEnum<{
|
|
776
816
|
success: "success";
|
|
777
817
|
error: "error";
|
|
@@ -3401,6 +3441,7 @@ declare const GenericFunctionDefinition: z.ZodObject<{
|
|
|
3401
3441
|
}>>;
|
|
3402
3442
|
}, z.core.$loose>;
|
|
3403
3443
|
type GenericFunctionDefinition = z.infer<typeof GenericFunctionDefinition>;
|
|
3444
|
+
declare function validateFunctionDefinitions(functions: Record<string, GenericFunctionDefinition>, schema: z.ZodType): void;
|
|
3404
3445
|
|
|
3405
3446
|
declare function getEffectiveConnectorOption(connector: Connector, optionKey: string): ConnectorOption;
|
|
3406
3447
|
interface ConnectorFunctionSpec {
|
|
@@ -6748,6 +6789,7 @@ declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
6748
6789
|
}>>;
|
|
6749
6790
|
name: z.ZodOptional<z.ZodString>;
|
|
6750
6791
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6792
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
6751
6793
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6752
6794
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6753
6795
|
proxy: "proxy";
|
|
@@ -6926,7 +6968,6 @@ declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
6926
6968
|
proxyKey: z.ZodOptional<z.ZodString>;
|
|
6927
6969
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
6928
6970
|
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6929
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
6930
6971
|
}, z.core.$strip>;
|
|
6931
6972
|
type ConnectorExportProperties = z.infer<typeof ConnectorExportProperties>;
|
|
6932
6973
|
interface ConnectorVersionExport {
|
|
@@ -9351,6 +9392,13 @@ declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
9351
9392
|
name: z.ZodOptional<z.ZodString>;
|
|
9352
9393
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9353
9394
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
9395
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
9396
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9397
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
9398
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
9399
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
9400
|
+
connectorKey: z.ZodOptional<z.ZodString>;
|
|
9401
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
9354
9402
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
9355
9403
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
9356
9404
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -9358,6 +9406,16 @@ declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
9358
9406
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
9359
9407
|
}, z.core.$strip>;
|
|
9360
9408
|
type ConnectionEditableProperties = z.infer<typeof ConnectionEditableProperties>;
|
|
9409
|
+
declare const ConnectionClientAction: z.ZodObject<{
|
|
9410
|
+
type: z.ZodEnum<{
|
|
9411
|
+
connect: "connect";
|
|
9412
|
+
"provide-input": "provide-input";
|
|
9413
|
+
}>;
|
|
9414
|
+
description: z.ZodString;
|
|
9415
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
9416
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
9417
|
+
}, z.core.$strip>;
|
|
9418
|
+
type ConnectionClientAction = z.infer<typeof ConnectionClientAction>;
|
|
9361
9419
|
declare const BaseConnection: z.ZodObject<{
|
|
9362
9420
|
id: z.ZodString;
|
|
9363
9421
|
name: z.ZodString;
|
|
@@ -9382,6 +9440,16 @@ declare const BaseConnection: z.ZodObject<{
|
|
|
9382
9440
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9383
9441
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9384
9442
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9443
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
9444
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
9445
|
+
type: z.ZodEnum<{
|
|
9446
|
+
connect: "connect";
|
|
9447
|
+
"provide-input": "provide-input";
|
|
9448
|
+
}>;
|
|
9449
|
+
description: z.ZodString;
|
|
9450
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
9451
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
9452
|
+
}, z.core.$strip>>;
|
|
9385
9453
|
userId: z.ZodString;
|
|
9386
9454
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
9387
9455
|
}, z.core.$strip>;
|
|
@@ -10262,6 +10330,9 @@ declare const DataSourceEditableProperties: z.ZodObject<{
|
|
|
10262
10330
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10263
10331
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10264
10332
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10333
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10334
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10335
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10265
10336
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10266
10337
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10267
10338
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10285,6 +10356,9 @@ declare const BackwardCompatibleDataSourceEditableProperties: z.ZodObject<{
|
|
|
10285
10356
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10286
10357
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10287
10358
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10359
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10360
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10361
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10288
10362
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10289
10363
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10290
10364
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10309,6 +10383,7 @@ declare const DataSourceExportProperties: z.ZodObject<{
|
|
|
10309
10383
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
10310
10384
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10311
10385
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10386
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10312
10387
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
10313
10388
|
udm: z.ZodOptional<z.ZodString>;
|
|
10314
10389
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10330,6 +10405,9 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
10330
10405
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10331
10406
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10332
10407
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10408
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10409
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10410
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10333
10411
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10334
10412
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10335
10413
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10479,6 +10557,9 @@ declare const BaseDataSourceInstance: z.ZodObject<{
|
|
|
10479
10557
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10480
10558
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10481
10559
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
10560
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10561
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
10562
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10482
10563
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10483
10564
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10484
10565
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -10960,6 +11041,9 @@ declare const FlowEditableProperties: z.ZodObject<{
|
|
|
10960
11041
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
10961
11042
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
10962
11043
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11044
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11045
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11046
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
10963
11047
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10964
11048
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10965
11049
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11007,6 +11091,7 @@ declare const FlowExportProperties: z.ZodObject<{
|
|
|
11007
11091
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11008
11092
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11009
11093
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11094
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11010
11095
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11011
11096
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
11012
11097
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -11053,6 +11138,9 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
11053
11138
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11054
11139
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
11055
11140
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11141
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11142
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11143
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11056
11144
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11057
11145
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11058
11146
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11121,6 +11209,9 @@ declare const BaseFlowInstance: z.ZodObject<{
|
|
|
11121
11209
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11122
11210
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
11123
11211
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11212
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11213
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11214
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11124
11215
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11125
11216
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11126
11217
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -11325,12 +11416,12 @@ declare const IntegrationExportProperties: z.ZodObject<{
|
|
|
11325
11416
|
name: z.ZodOptional<z.ZodString>;
|
|
11326
11417
|
uuid: z.ZodOptional<z.ZodString>;
|
|
11327
11418
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11419
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11328
11420
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11329
11421
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
11330
11422
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
11331
11423
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11332
11424
|
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
11333
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11334
11425
|
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11335
11426
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
11336
11427
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -11423,8 +11514,10 @@ declare const PackageEditableProperties: z.ZodObject<{
|
|
|
11423
11514
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11424
11515
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11425
11516
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11426
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11427
11517
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11518
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11519
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11520
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11428
11521
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11429
11522
|
id: z.ZodString;
|
|
11430
11523
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -11440,6 +11533,7 @@ declare const PackageExportProperties: z.ZodObject<{
|
|
|
11440
11533
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11441
11534
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11442
11535
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
11536
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11443
11537
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11444
11538
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11445
11539
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -11478,8 +11572,10 @@ declare const BasePackage: z.ZodObject<{
|
|
|
11478
11572
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11479
11573
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11480
11574
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
11481
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11482
11575
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11576
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
11577
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
11578
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
11483
11579
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11484
11580
|
id: z.ZodString;
|
|
11485
11581
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -12338,15 +12434,15 @@ declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
12338
12434
|
includeSecrets: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12339
12435
|
}, z.core.$strip>;
|
|
12340
12436
|
type FindConnectionsQuery = z.infer<typeof FindConnectionsQuery>;
|
|
12437
|
+
declare const EnsureConnectionRequest: z.ZodObject<{
|
|
12438
|
+
intent: z.ZodString;
|
|
12439
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12440
|
+
}, z.core.$strip>;
|
|
12441
|
+
type EnsureConnectionRequest = z.infer<typeof EnsureConnectionRequest>;
|
|
12341
12442
|
declare const CreateConnectionRequest: z.ZodObject<{
|
|
12342
12443
|
name: z.ZodOptional<z.ZodString>;
|
|
12343
12444
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12344
12445
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12345
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12346
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12347
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12348
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12349
|
-
input: z.ZodOptional<z.ZodUnknown>;
|
|
12350
12446
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12351
12447
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12352
12448
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -12354,24 +12450,40 @@ declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
12354
12450
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12355
12451
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
12356
12452
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
12453
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12454
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12455
|
+
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12456
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12457
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
12458
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
12357
12459
|
}, z.core.$strip>;
|
|
12358
12460
|
type CreateConnectionRequest = z.infer<typeof CreateConnectionRequest>;
|
|
12359
12461
|
declare const UpdateConnectionRequest: z.ZodObject<{
|
|
12360
12462
|
name: z.ZodOptional<z.ZodString>;
|
|
12361
12463
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12362
12464
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12465
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
12466
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12467
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
12468
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
12469
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12470
|
+
connectorKey: z.ZodOptional<z.ZodString>;
|
|
12471
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
12363
12472
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12364
12473
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12365
12474
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
12366
12475
|
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
12367
12476
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
12477
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
12368
12478
|
}, z.core.$strip>;
|
|
12369
12479
|
type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
12370
12480
|
declare const ConnectionExportProperties: z.ZodObject<{
|
|
12371
12481
|
name: z.ZodOptional<z.ZodString>;
|
|
12372
12482
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12373
|
-
|
|
12483
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
12374
12484
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12485
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
12486
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
12375
12487
|
}, z.core.$strip>;
|
|
12376
12488
|
type ConnectionExportProperties = z.infer<typeof ConnectionExportProperties>;
|
|
12377
12489
|
declare const ConnectionTestResponse: z.ZodObject<{
|
|
@@ -12429,6 +12541,16 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
12429
12541
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12430
12542
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12431
12543
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12544
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
12545
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
12546
|
+
type: z.ZodEnum<{
|
|
12547
|
+
connect: "connect";
|
|
12548
|
+
"provide-input": "provide-input";
|
|
12549
|
+
}>;
|
|
12550
|
+
description: z.ZodString;
|
|
12551
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
12552
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
12553
|
+
}, z.core.$strip>>;
|
|
12432
12554
|
userId: z.ZodString;
|
|
12433
12555
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12434
12556
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12517,6 +12639,16 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
12517
12639
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12518
12640
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12519
12641
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12642
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
12643
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
12644
|
+
type: z.ZodEnum<{
|
|
12645
|
+
connect: "connect";
|
|
12646
|
+
"provide-input": "provide-input";
|
|
12647
|
+
}>;
|
|
12648
|
+
description: z.ZodString;
|
|
12649
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
12650
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
12651
|
+
}, z.core.$strip>>;
|
|
12520
12652
|
userId: z.ZodString;
|
|
12521
12653
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12522
12654
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12613,6 +12745,16 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12613
12745
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12614
12746
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12615
12747
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12748
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
12749
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
12750
|
+
type: z.ZodEnum<{
|
|
12751
|
+
connect: "connect";
|
|
12752
|
+
"provide-input": "provide-input";
|
|
12753
|
+
}>;
|
|
12754
|
+
description: z.ZodString;
|
|
12755
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
12756
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
12757
|
+
}, z.core.$strip>>;
|
|
12616
12758
|
userId: z.ZodString;
|
|
12617
12759
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12618
12760
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -12813,6 +12955,9 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12813
12955
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
12814
12956
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
12815
12957
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
12958
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12959
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
12960
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
12816
12961
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12817
12962
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12818
12963
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -12892,6 +13037,16 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12892
13037
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12893
13038
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12894
13039
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13040
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
13041
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13042
|
+
type: z.ZodEnum<{
|
|
13043
|
+
connect: "connect";
|
|
13044
|
+
"provide-input": "provide-input";
|
|
13045
|
+
}>;
|
|
13046
|
+
description: z.ZodString;
|
|
13047
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13048
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13049
|
+
}, z.core.$strip>>;
|
|
12895
13050
|
userId: z.ZodString;
|
|
12896
13051
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12897
13052
|
}, z.core.$strip>>;
|
|
@@ -13000,6 +13155,9 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
13000
13155
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13001
13156
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13002
13157
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13158
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13159
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13160
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13003
13161
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13004
13162
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13005
13163
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13079,6 +13237,16 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
13079
13237
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13080
13238
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13081
13239
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13240
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
13241
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13242
|
+
type: z.ZodEnum<{
|
|
13243
|
+
connect: "connect";
|
|
13244
|
+
"provide-input": "provide-input";
|
|
13245
|
+
}>;
|
|
13246
|
+
description: z.ZodString;
|
|
13247
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13248
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13249
|
+
}, z.core.$strip>>;
|
|
13082
13250
|
userId: z.ZodString;
|
|
13083
13251
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13084
13252
|
}, z.core.$strip>>;
|
|
@@ -13160,6 +13328,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13160
13328
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13161
13329
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13162
13330
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13331
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13332
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13333
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13163
13334
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13164
13335
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13165
13336
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13273,6 +13444,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13273
13444
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13274
13445
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13275
13446
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13447
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13448
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13449
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13276
13450
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13277
13451
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13278
13452
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13413,6 +13587,16 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13413
13587
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13414
13588
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13415
13589
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13590
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
13591
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13592
|
+
type: z.ZodEnum<{
|
|
13593
|
+
connect: "connect";
|
|
13594
|
+
"provide-input": "provide-input";
|
|
13595
|
+
}>;
|
|
13596
|
+
description: z.ZodString;
|
|
13597
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13598
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13599
|
+
}, z.core.$strip>>;
|
|
13416
13600
|
userId: z.ZodString;
|
|
13417
13601
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13418
13602
|
}, z.core.$strip>>;
|
|
@@ -13428,6 +13612,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13428
13612
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13429
13613
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13430
13614
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13615
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13616
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13617
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13431
13618
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13432
13619
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13433
13620
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13497,6 +13684,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13497
13684
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13498
13685
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13499
13686
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13687
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13688
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13689
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13500
13690
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13501
13691
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13502
13692
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13610,6 +13800,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13610
13800
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13611
13801
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13612
13802
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13803
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13804
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13805
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13613
13806
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13614
13807
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13615
13808
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13750,6 +13943,16 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13750
13943
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13751
13944
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13752
13945
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13946
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
13947
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
13948
|
+
type: z.ZodEnum<{
|
|
13949
|
+
connect: "connect";
|
|
13950
|
+
"provide-input": "provide-input";
|
|
13951
|
+
}>;
|
|
13952
|
+
description: z.ZodString;
|
|
13953
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
13954
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
13955
|
+
}, z.core.$strip>>;
|
|
13753
13956
|
userId: z.ZodString;
|
|
13754
13957
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13755
13958
|
}, z.core.$strip>>;
|
|
@@ -13765,6 +13968,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13765
13968
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13766
13969
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13767
13970
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
13971
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13972
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
13973
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13768
13974
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13769
13975
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13770
13976
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13859,6 +14065,9 @@ declare const CreateFlowRequest: z.ZodObject<{
|
|
|
13859
14065
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13860
14066
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
13861
14067
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14068
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14069
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14070
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
13862
14071
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13863
14072
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13864
14073
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13908,6 +14117,9 @@ declare const UpdateFlowRequest: z.ZodObject<{
|
|
|
13908
14117
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13909
14118
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13910
14119
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
14120
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14121
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14122
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13911
14123
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13912
14124
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13913
14125
|
flowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -14024,6 +14236,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14024
14236
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14025
14237
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14026
14238
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14239
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14240
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14241
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14027
14242
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14028
14243
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14029
14244
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14218,6 +14433,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14218
14433
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14219
14434
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14220
14435
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14436
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14437
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14438
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14221
14439
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14222
14440
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14223
14441
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14439,6 +14657,16 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14439
14657
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14440
14658
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14441
14659
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14660
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
14661
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
14662
|
+
type: z.ZodEnum<{
|
|
14663
|
+
connect: "connect";
|
|
14664
|
+
"provide-input": "provide-input";
|
|
14665
|
+
}>;
|
|
14666
|
+
description: z.ZodString;
|
|
14667
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
14668
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
14669
|
+
}, z.core.$strip>>;
|
|
14442
14670
|
userId: z.ZodString;
|
|
14443
14671
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14444
14672
|
}, z.core.$strip>>;
|
|
@@ -14454,6 +14682,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14454
14682
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14455
14683
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14456
14684
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14685
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14686
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14687
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14457
14688
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14458
14689
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14459
14690
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14606,6 +14837,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14606
14837
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14607
14838
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14608
14839
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
14840
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14841
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
14842
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14609
14843
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14610
14844
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14611
14845
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14800,6 +15034,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14800
15034
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
14801
15035
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
14802
15036
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15037
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15038
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15039
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
14803
15040
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14804
15041
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14805
15042
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15021,6 +15258,16 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
15021
15258
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15022
15259
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15023
15260
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15261
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
15262
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
15263
|
+
type: z.ZodEnum<{
|
|
15264
|
+
connect: "connect";
|
|
15265
|
+
"provide-input": "provide-input";
|
|
15266
|
+
}>;
|
|
15267
|
+
description: z.ZodString;
|
|
15268
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
15269
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
15270
|
+
}, z.core.$strip>>;
|
|
15024
15271
|
userId: z.ZodString;
|
|
15025
15272
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15026
15273
|
}, z.core.$strip>>;
|
|
@@ -15036,6 +15283,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
15036
15283
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15037
15284
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15038
15285
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15286
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15287
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15288
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15039
15289
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15040
15290
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15041
15291
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15235,6 +15485,9 @@ declare const CreateDataSourceRequest: z.ZodObject<{
|
|
|
15235
15485
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15236
15486
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15237
15487
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
15488
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15489
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
15490
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15238
15491
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15239
15492
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15240
15493
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15258,6 +15511,9 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
|
|
|
15258
15511
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15259
15512
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15260
15513
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
15514
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15515
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15516
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15261
15517
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15262
15518
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15263
15519
|
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -15521,6 +15777,13 @@ declare class ConnectionAccessor {
|
|
|
15521
15777
|
archivedAt?: string | undefined;
|
|
15522
15778
|
isDeactivated?: boolean | undefined;
|
|
15523
15779
|
meta?: Record<string, any> | undefined;
|
|
15780
|
+
buildingAgentSessionId?: string | undefined;
|
|
15781
|
+
clientAction?: {
|
|
15782
|
+
type: "connect" | "provide-input";
|
|
15783
|
+
description: string;
|
|
15784
|
+
uiUrl?: string | undefined;
|
|
15785
|
+
agentInstructions?: string | undefined;
|
|
15786
|
+
} | undefined;
|
|
15524
15787
|
tenantId?: string | undefined;
|
|
15525
15788
|
user?: {
|
|
15526
15789
|
id: string;
|
|
@@ -15576,7 +15839,7 @@ declare class ConnectionAccessor {
|
|
|
15576
15839
|
}> | undefined;
|
|
15577
15840
|
} | undefined;
|
|
15578
15841
|
} | null>;
|
|
15579
|
-
openReconnectUI(
|
|
15842
|
+
openReconnectUI(_options?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
15580
15843
|
refreshCredentials(): Promise<void>;
|
|
15581
15844
|
getPath(subpath?: string, query?: Record<string, any>): string;
|
|
15582
15845
|
}
|
|
@@ -15836,6 +16099,16 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
15836
16099
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15837
16100
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15838
16101
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16102
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
16103
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
16104
|
+
type: z.ZodEnum<{
|
|
16105
|
+
connect: "connect";
|
|
16106
|
+
"provide-input": "provide-input";
|
|
16107
|
+
}>;
|
|
16108
|
+
description: z.ZodString;
|
|
16109
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
16110
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
16111
|
+
}, z.core.$strip>>;
|
|
15839
16112
|
userId: z.ZodString;
|
|
15840
16113
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15841
16114
|
}, z.core.$strip>>;
|
|
@@ -15874,6 +16147,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15874
16147
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15875
16148
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15876
16149
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16150
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16151
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16152
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15877
16153
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15878
16154
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15879
16155
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -15968,6 +16244,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15968
16244
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
15969
16245
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
15970
16246
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16247
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16248
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16249
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
15971
16250
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
15972
16251
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15973
16252
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16089,6 +16368,16 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
16089
16368
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16090
16369
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16091
16370
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16371
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
16372
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
16373
|
+
type: z.ZodEnum<{
|
|
16374
|
+
connect: "connect";
|
|
16375
|
+
"provide-input": "provide-input";
|
|
16376
|
+
}>;
|
|
16377
|
+
description: z.ZodString;
|
|
16378
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
16379
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
16380
|
+
}, z.core.$strip>>;
|
|
16092
16381
|
userId: z.ZodString;
|
|
16093
16382
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16094
16383
|
}, z.core.$strip>>;
|
|
@@ -16104,6 +16393,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
16104
16393
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16105
16394
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16106
16395
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16396
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16397
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16398
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16107
16399
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16108
16400
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16109
16401
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16155,6 +16447,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16155
16447
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16156
16448
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16157
16449
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16450
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16451
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16452
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16158
16453
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16159
16454
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16160
16455
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16249,6 +16544,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16249
16544
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16250
16545
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16251
16546
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16547
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16548
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16549
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16252
16550
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16253
16551
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16254
16552
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16370,6 +16668,16 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16370
16668
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16371
16669
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16372
16670
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16671
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
16672
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
16673
|
+
type: z.ZodEnum<{
|
|
16674
|
+
connect: "connect";
|
|
16675
|
+
"provide-input": "provide-input";
|
|
16676
|
+
}>;
|
|
16677
|
+
description: z.ZodString;
|
|
16678
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
16679
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
16680
|
+
}, z.core.$strip>>;
|
|
16373
16681
|
userId: z.ZodString;
|
|
16374
16682
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16375
16683
|
}, z.core.$strip>>;
|
|
@@ -16385,6 +16693,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
16385
16693
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16386
16694
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16387
16695
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16696
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16697
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16698
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16388
16699
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16389
16700
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16390
16701
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16481,6 +16792,9 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
|
16481
16792
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16482
16793
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16483
16794
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16795
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16796
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16797
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16484
16798
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16485
16799
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16486
16800
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16513,6 +16827,9 @@ declare const CreateFieldMappingInstanceRequest: z.ZodObject<{
|
|
|
16513
16827
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16514
16828
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
16515
16829
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16830
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16831
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
16832
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
16516
16833
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16517
16834
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16518
16835
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -16545,6 +16862,9 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
|
|
|
16545
16862
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16546
16863
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16547
16864
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16865
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16866
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16867
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16548
16868
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16549
16869
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16550
16870
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16577,6 +16897,9 @@ declare const UpdateFieldMappingInstanceRequest: z.ZodObject<{
|
|
|
16577
16897
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16578
16898
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16579
16899
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16900
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16901
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16902
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16580
16903
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16581
16904
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16582
16905
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -16701,6 +17024,13 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
16701
17024
|
archivedAt?: string | undefined;
|
|
16702
17025
|
isDeactivated?: boolean | undefined;
|
|
16703
17026
|
meta?: Record<string, any> | undefined;
|
|
17027
|
+
buildingAgentSessionId?: string | undefined;
|
|
17028
|
+
clientAction?: {
|
|
17029
|
+
type: "connect" | "provide-input";
|
|
17030
|
+
description: string;
|
|
17031
|
+
uiUrl?: string | undefined;
|
|
17032
|
+
agentInstructions?: string | undefined;
|
|
17033
|
+
} | undefined;
|
|
16704
17034
|
tenantId?: string | undefined;
|
|
16705
17035
|
user?: {
|
|
16706
17036
|
id: string;
|
|
@@ -16809,8 +17139,10 @@ declare const CreatePackageRequest: z.ZodObject<{
|
|
|
16809
17139
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16810
17140
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16811
17141
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16812
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16813
17142
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17143
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17144
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17145
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16814
17146
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16815
17147
|
id: z.ZodString;
|
|
16816
17148
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -16833,8 +17165,10 @@ declare const UpdatePackageRequest: z.ZodObject<{
|
|
|
16833
17165
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16834
17166
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16835
17167
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
16836
|
-
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16837
17168
|
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17169
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17170
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17171
|
+
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
16838
17172
|
elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16839
17173
|
id: z.ZodString;
|
|
16840
17174
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -16864,8 +17198,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16864
17198
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16865
17199
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16866
17200
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16867
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16868
17201
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17202
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17203
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17204
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16869
17205
|
key: z.ZodString;
|
|
16870
17206
|
name: z.ZodString;
|
|
16871
17207
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16901,8 +17237,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16901
17237
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16902
17238
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16903
17239
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
16904
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16905
17240
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17241
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17242
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17243
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
16906
17244
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16907
17245
|
id: z.ZodString;
|
|
16908
17246
|
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
@@ -17366,6 +17704,16 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
17366
17704
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17367
17705
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17368
17706
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17707
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
17708
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
17709
|
+
type: z.ZodEnum<{
|
|
17710
|
+
connect: "connect";
|
|
17711
|
+
"provide-input": "provide-input";
|
|
17712
|
+
}>;
|
|
17713
|
+
description: z.ZodString;
|
|
17714
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
17715
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
17716
|
+
}, z.core.$strip>>;
|
|
17369
17717
|
userId: z.ZodString;
|
|
17370
17718
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17371
17719
|
}, z.core.$strip>>;
|
|
@@ -17593,6 +17941,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17593
17941
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17594
17942
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17595
17943
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
17944
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
17945
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17596
17946
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17597
17947
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17598
17948
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17610,6 +17960,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17610
17960
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17611
17961
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17612
17962
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17963
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17613
17964
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17614
17965
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17615
17966
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -17688,6 +18039,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17688
18039
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17689
18040
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17690
18041
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18042
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18043
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17691
18044
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17692
18045
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17693
18046
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17705,6 +18058,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17705
18058
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17706
18059
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17707
18060
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18061
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17708
18062
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17709
18063
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17710
18064
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17726,6 +18080,8 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17726
18080
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17727
18081
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17728
18082
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18083
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18084
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17729
18085
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17730
18086
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17731
18087
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17743,6 +18099,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17743
18099
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17744
18100
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17745
18101
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18102
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17746
18103
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17747
18104
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17748
18105
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17840,6 +18197,9 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
17840
18197
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17841
18198
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17842
18199
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18200
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18201
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18202
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17843
18203
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17844
18204
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17845
18205
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17847,6 +18207,7 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
17847
18207
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
17848
18208
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
17849
18209
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
18210
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17850
18211
|
}, z.core.$strip>;
|
|
17851
18212
|
type CreateActionRequest = z.infer<typeof CreateActionRequest>;
|
|
17852
18213
|
declare const UpdateActionRequest: z.ZodObject<{
|
|
@@ -17862,6 +18223,9 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
17862
18223
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17863
18224
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17864
18225
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18226
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18227
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18228
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17865
18229
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17866
18230
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17867
18231
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -17869,6 +18233,7 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
17869
18233
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
17870
18234
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
17871
18235
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
18236
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17872
18237
|
}, z.core.$strip>;
|
|
17873
18238
|
type UpdateActionRequest = z.infer<typeof UpdateActionRequest>;
|
|
17874
18239
|
declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
@@ -17884,6 +18249,9 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
17884
18249
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17885
18250
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17886
18251
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18252
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18253
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18254
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17887
18255
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17888
18256
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17889
18257
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17891,6 +18259,7 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
17891
18259
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
17892
18260
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
17893
18261
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
18262
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17894
18263
|
}, z.core.$strip>;
|
|
17895
18264
|
type CreateActionInstanceRequest = CreateActionRequest;
|
|
17896
18265
|
declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
@@ -17906,6 +18275,9 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
17906
18275
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17907
18276
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17908
18277
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
18278
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18279
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18280
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17909
18281
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17910
18282
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17911
18283
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -17913,6 +18285,7 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
17913
18285
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
17914
18286
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
17915
18287
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
18288
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17916
18289
|
}, z.core.$strip>;
|
|
17917
18290
|
type UpdateActionInstanceRequest = UpdateActionRequest;
|
|
17918
18291
|
declare const RunActionRequest: z.ZodObject<{
|
|
@@ -17940,6 +18313,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17940
18313
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
17941
18314
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17942
18315
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18316
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18317
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
17943
18318
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17944
18319
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17945
18320
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -17957,6 +18332,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17957
18332
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17958
18333
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17959
18334
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18335
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
17960
18336
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17961
18337
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17962
18338
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -18035,6 +18411,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18035
18411
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18036
18412
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18037
18413
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18414
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18415
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18038
18416
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18039
18417
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18040
18418
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18052,6 +18430,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18052
18430
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18053
18431
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18054
18432
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18433
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18055
18434
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18056
18435
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18057
18436
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18073,6 +18452,8 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18073
18452
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18074
18453
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18075
18454
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18455
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18456
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18076
18457
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18077
18458
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18078
18459
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18090,6 +18471,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
18090
18471
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18091
18472
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18092
18473
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18474
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18093
18475
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18094
18476
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18095
18477
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18236,6 +18618,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18236
18618
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18237
18619
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18238
18620
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18621
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18622
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18239
18623
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18240
18624
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18241
18625
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18253,6 +18637,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18253
18637
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18254
18638
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18255
18639
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18640
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18256
18641
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18257
18642
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18258
18643
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18273,6 +18658,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18273
18658
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18274
18659
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18275
18660
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18661
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18662
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18276
18663
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18277
18664
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18278
18665
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18290,6 +18677,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18290
18677
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18291
18678
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18292
18679
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18680
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18293
18681
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18294
18682
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18295
18683
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18367,6 +18755,16 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18367
18755
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18368
18756
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18369
18757
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
18758
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
18759
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
18760
|
+
type: z.ZodEnum<{
|
|
18761
|
+
connect: "connect";
|
|
18762
|
+
"provide-input": "provide-input";
|
|
18763
|
+
}>;
|
|
18764
|
+
description: z.ZodString;
|
|
18765
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
18766
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
18767
|
+
}, z.core.$strip>>;
|
|
18370
18768
|
userId: z.ZodString;
|
|
18371
18769
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18372
18770
|
}, z.core.$strip>>;
|
|
@@ -18438,6 +18836,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18438
18836
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18439
18837
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18440
18838
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18839
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18840
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18441
18841
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18442
18842
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18443
18843
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18455,6 +18855,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18455
18855
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18456
18856
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18457
18857
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18858
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18458
18859
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18459
18860
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18460
18861
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18475,6 +18876,8 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18475
18876
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
18476
18877
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
18477
18878
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18879
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18880
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18478
18881
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18479
18882
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18480
18883
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -18492,6 +18895,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18492
18895
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18493
18896
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18494
18897
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
18898
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
18495
18899
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
18496
18900
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18497
18901
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18569,6 +18973,16 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18569
18973
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18570
18974
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18571
18975
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
18976
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
18977
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
18978
|
+
type: z.ZodEnum<{
|
|
18979
|
+
connect: "connect";
|
|
18980
|
+
"provide-input": "provide-input";
|
|
18981
|
+
}>;
|
|
18982
|
+
description: z.ZodString;
|
|
18983
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
18984
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
18985
|
+
}, z.core.$strip>>;
|
|
18572
18986
|
userId: z.ZodString;
|
|
18573
18987
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18574
18988
|
}, z.core.$strip>>;
|
|
@@ -18729,6 +19143,7 @@ declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
|
|
|
18729
19143
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18730
19144
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18731
19145
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
19146
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
18732
19147
|
}, z.core.$strip>;
|
|
18733
19148
|
type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
|
|
18734
19149
|
interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
@@ -18877,6 +19292,16 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18877
19292
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18878
19293
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18879
19294
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19295
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
19296
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
19297
|
+
type: z.ZodEnum<{
|
|
19298
|
+
connect: "connect";
|
|
19299
|
+
"provide-input": "provide-input";
|
|
19300
|
+
}>;
|
|
19301
|
+
description: z.ZodString;
|
|
19302
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
19303
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
19304
|
+
}, z.core.$strip>>;
|
|
18880
19305
|
userId: z.ZodString;
|
|
18881
19306
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18882
19307
|
}, z.core.$strip>>;
|
|
@@ -19072,6 +19497,7 @@ declare const FindAppDataSchemaInstancesQuery: z.ZodObject<{
|
|
|
19072
19497
|
userId: z.ZodOptional<z.ZodString>;
|
|
19073
19498
|
appDataSchemaId: z.ZodOptional<z.ZodString>;
|
|
19074
19499
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
19500
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
19075
19501
|
}, z.core.$strip>;
|
|
19076
19502
|
type FindAppDataSchemaInstancesQuery = z.infer<typeof FindAppDataSchemaInstancesQuery>;
|
|
19077
19503
|
interface AppDataSchemaInstanceSelector {
|
|
@@ -19301,6 +19727,16 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
19301
19727
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19302
19728
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19303
19729
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19730
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
19731
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
19732
|
+
type: z.ZodEnum<{
|
|
19733
|
+
connect: "connect";
|
|
19734
|
+
"provide-input": "provide-input";
|
|
19735
|
+
}>;
|
|
19736
|
+
description: z.ZodString;
|
|
19737
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
19738
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
19739
|
+
}, z.core.$strip>>;
|
|
19304
19740
|
userId: z.ZodString;
|
|
19305
19741
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19306
19742
|
}, z.core.$strip>>;
|
|
@@ -19470,6 +19906,16 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
19470
19906
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19471
19907
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19472
19908
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19909
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
19910
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
19911
|
+
type: z.ZodEnum<{
|
|
19912
|
+
connect: "connect";
|
|
19913
|
+
"provide-input": "provide-input";
|
|
19914
|
+
}>;
|
|
19915
|
+
description: z.ZodString;
|
|
19916
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
19917
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
19918
|
+
}, z.core.$strip>>;
|
|
19473
19919
|
userId: z.ZodString;
|
|
19474
19920
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19475
19921
|
}, z.core.$strip>>;
|
|
@@ -19643,6 +20089,16 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
19643
20089
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19644
20090
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19645
20091
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
20092
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
20093
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
20094
|
+
type: z.ZodEnum<{
|
|
20095
|
+
connect: "connect";
|
|
20096
|
+
"provide-input": "provide-input";
|
|
20097
|
+
}>;
|
|
20098
|
+
description: z.ZodString;
|
|
20099
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
20100
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
20101
|
+
}, z.core.$strip>>;
|
|
19646
20102
|
userId: z.ZodString;
|
|
19647
20103
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19648
20104
|
}, z.core.$strip>>;
|
|
@@ -19759,6 +20215,16 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
19759
20215
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19760
20216
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19761
20217
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
20218
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
20219
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
20220
|
+
type: z.ZodEnum<{
|
|
20221
|
+
connect: "connect";
|
|
20222
|
+
"provide-input": "provide-input";
|
|
20223
|
+
}>;
|
|
20224
|
+
description: z.ZodString;
|
|
20225
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
20226
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
20227
|
+
}, z.core.$strip>>;
|
|
19762
20228
|
userId: z.ZodString;
|
|
19763
20229
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19764
20230
|
}, z.core.$strip>>;
|
|
@@ -19989,6 +20455,89 @@ interface FilterFieldMeta {
|
|
|
19989
20455
|
}
|
|
19990
20456
|
declare function getFilterFieldMeta(meta: unknown): FilterFieldMeta | undefined;
|
|
19991
20457
|
|
|
20458
|
+
declare enum AgentSessionStatus {
|
|
20459
|
+
QUEUED = "queued",
|
|
20460
|
+
STARTING = "starting",
|
|
20461
|
+
RUNNING = "running",
|
|
20462
|
+
COMPLETED = "completed",
|
|
20463
|
+
FAILED = "failed",
|
|
20464
|
+
CANCELLED = "cancelled"
|
|
20465
|
+
}
|
|
20466
|
+
declare enum AgentSessionState {
|
|
20467
|
+
BUSY = "busy",
|
|
20468
|
+
IDLE = "idle"
|
|
20469
|
+
}
|
|
20470
|
+
declare enum AgentName {
|
|
20471
|
+
MEMBRANE = "membrane",
|
|
20472
|
+
MEMBRANE_CORE = "membrane-core",
|
|
20473
|
+
SELF_INTEGRATING = "self-integrating",
|
|
20474
|
+
CONNECTION_BUILDING = "connection-building",
|
|
20475
|
+
ACTION_BUILDING = "action-building",
|
|
20476
|
+
UNIVERSE = "universe"
|
|
20477
|
+
}
|
|
20478
|
+
declare const AgentSession: z.ZodObject<{
|
|
20479
|
+
id: z.ZodString;
|
|
20480
|
+
workspaceId: z.ZodString;
|
|
20481
|
+
orgWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
20482
|
+
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
20483
|
+
workspaceElementId: z.ZodString;
|
|
20484
|
+
type: z.ZodString;
|
|
20485
|
+
status: z.ZodEnum<typeof AgentSessionStatus>;
|
|
20486
|
+
prompt: z.ZodString;
|
|
20487
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
20488
|
+
lastActivityAt: z.ZodISODateTime;
|
|
20489
|
+
title: z.ZodOptional<z.ZodString>;
|
|
20490
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
20491
|
+
cost: z.ZodOptional<z.ZodNumber>;
|
|
20492
|
+
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
20493
|
+
usage: z.ZodOptional<z.ZodNumber>;
|
|
20494
|
+
hasWorker: z.ZodBoolean;
|
|
20495
|
+
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
20496
|
+
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
20497
|
+
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20498
|
+
createdAt: z.ZodISODateTime;
|
|
20499
|
+
updatedAt: z.ZodISODateTime;
|
|
20500
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
20501
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20502
|
+
}, z.core.$strip>;
|
|
20503
|
+
type AgentSession = z.infer<typeof AgentSession>;
|
|
20504
|
+
declare const CreateAgentSession: z.ZodObject<{
|
|
20505
|
+
workspaceElementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
20506
|
+
workspaceElementId: z.ZodOptional<z.ZodString>;
|
|
20507
|
+
prompt: z.ZodString;
|
|
20508
|
+
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
20509
|
+
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
20510
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
20511
|
+
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
20512
|
+
}, z.core.$strip>;
|
|
20513
|
+
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
20514
|
+
declare const AgentSessionAttachment: z.ZodObject<{
|
|
20515
|
+
title: z.ZodString;
|
|
20516
|
+
data: z.ZodUnknown;
|
|
20517
|
+
}, z.core.$strip>;
|
|
20518
|
+
type AgentSessionAttachment = z.infer<typeof AgentSessionAttachment>;
|
|
20519
|
+
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
20520
|
+
input: z.ZodString;
|
|
20521
|
+
synthetic: z.ZodOptional<z.ZodBoolean>;
|
|
20522
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20523
|
+
title: z.ZodString;
|
|
20524
|
+
data: z.ZodUnknown;
|
|
20525
|
+
}, z.core.$strip>>>;
|
|
20526
|
+
}, z.core.$strip>;
|
|
20527
|
+
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
20528
|
+
declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
20529
|
+
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
20530
|
+
lastActivityAt: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>>;
|
|
20531
|
+
title: z.ZodOptional<z.ZodString>;
|
|
20532
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
20533
|
+
cost: z.ZodOptional<z.ZodNumber>;
|
|
20534
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
20535
|
+
opencodeSessionUuid: z.ZodOptional<z.ZodString>;
|
|
20536
|
+
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20537
|
+
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
20538
|
+
}, z.core.$strip>;
|
|
20539
|
+
type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
20540
|
+
|
|
19992
20541
|
declare const SYSTEM_FIELDS: string[];
|
|
19993
20542
|
declare function jsonPointerToDotPath(pointer: string): string;
|
|
19994
20543
|
declare function getEditablePathsFromSchema(schema: z.ZodTypeAny, prefix?: string): Set<string>;
|
|
@@ -20018,6 +20567,8 @@ interface WorkspaceElementSpec {
|
|
|
20018
20567
|
statsKey?: string;
|
|
20019
20568
|
relatedIntegrationLayerElements?: WorkspaceElementType[];
|
|
20020
20569
|
relatedActivityLogElements?: WorkspaceElementType[];
|
|
20570
|
+
isAgentic?: boolean;
|
|
20571
|
+
agentName?: AgentName;
|
|
20021
20572
|
}
|
|
20022
20573
|
interface WorkspaceElements {
|
|
20023
20574
|
flows?: Record<string, CreateFlowRequest>;
|
|
@@ -20662,6 +21213,7 @@ declare const WorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20662
21213
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20663
21214
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20664
21215
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21216
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20665
21217
|
}, z$1.core.$strip>;
|
|
20666
21218
|
declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
20667
21219
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -20669,6 +21221,7 @@ declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20669
21221
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20670
21222
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20671
21223
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21224
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20672
21225
|
}, z$1.core.$strip>;
|
|
20673
21226
|
declare const WorkspacePublicKey: z$1.ZodObject<{
|
|
20674
21227
|
name: z$1.ZodString;
|
|
@@ -20894,6 +21447,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20894
21447
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20895
21448
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20896
21449
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21450
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20897
21451
|
}, z$1.core.$strip>>;
|
|
20898
21452
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
20899
21453
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -20939,6 +21493,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20939
21493
|
isThrottled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20940
21494
|
isDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20941
21495
|
isBackgroundJobsDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21496
|
+
isReadOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20942
21497
|
lastExternalApiRequestDate: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
20943
21498
|
}, z$1.core.$strip>;
|
|
20944
21499
|
declare const Workspace: z$1.ZodObject<{
|
|
@@ -21161,6 +21716,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21161
21716
|
enableActionRunLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21162
21717
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21163
21718
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21719
|
+
useInlineAgent: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21164
21720
|
}, z$1.core.$strip>>;
|
|
21165
21721
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
21166
21722
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -21206,6 +21762,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21206
21762
|
isThrottled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21207
21763
|
isDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21208
21764
|
isBackgroundJobsDisabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21765
|
+
isReadOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
21209
21766
|
lastExternalApiRequestDate: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
21210
21767
|
}, z$1.core.$strip>;
|
|
21211
21768
|
type Workspace = z$1.infer<typeof Workspace>;
|
|
@@ -21322,7 +21879,8 @@ declare enum OrgPlan {
|
|
|
21322
21879
|
}
|
|
21323
21880
|
declare enum OrgUserRole {
|
|
21324
21881
|
Admin = "admin",
|
|
21325
|
-
Member = "member"
|
|
21882
|
+
Member = "member",
|
|
21883
|
+
ReadOnly = "read-only"
|
|
21326
21884
|
}
|
|
21327
21885
|
declare enum OrgUserStatus {
|
|
21328
21886
|
Invited = "invited",
|
|
@@ -21911,6 +22469,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21911
22469
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21912
22470
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21913
22471
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22472
|
+
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
21914
22473
|
}, z.core.$strip>>;
|
|
21915
22474
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
21916
22475
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -21956,6 +22515,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21956
22515
|
isThrottled: z.ZodOptional<z.ZodBoolean>;
|
|
21957
22516
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
21958
22517
|
isBackgroundJobsDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
22518
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
21959
22519
|
lastExternalApiRequestDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21960
22520
|
}, z.core.$strip>>;
|
|
21961
22521
|
superAdminToken: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -22015,6 +22575,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22015
22575
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
22016
22576
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22017
22577
|
isWorkspaceManager: z.ZodBoolean;
|
|
22578
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22018
22579
|
scopes: z.ZodArray<z.ZodString>;
|
|
22019
22580
|
}, z.core.$strip>>;
|
|
22020
22581
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -22055,6 +22616,7 @@ declare const OrgPermissionsSchema: z.ZodObject<{
|
|
|
22055
22616
|
declare const WorkspacePermissionsSchema: z.ZodObject<{
|
|
22056
22617
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22057
22618
|
isWorkspaceManager: z.ZodBoolean;
|
|
22619
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22058
22620
|
scopes: z.ZodArray<z.ZodString>;
|
|
22059
22621
|
}, z.core.$strip>;
|
|
22060
22622
|
declare const TenantPermissionsSchema: z.ZodObject<{
|
|
@@ -22081,6 +22643,7 @@ declare const AuthContextPermissionsSchema: z.ZodObject<{
|
|
|
22081
22643
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
22082
22644
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
22083
22645
|
isWorkspaceManager: z.ZodBoolean;
|
|
22646
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
22084
22647
|
scopes: z.ZodArray<z.ZodString>;
|
|
22085
22648
|
}, z.core.$strip>>;
|
|
22086
22649
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -23121,79 +23684,6 @@ interface HandyScenarioTemplateElementApi {
|
|
|
23121
23684
|
} & Record<string, any>;
|
|
23122
23685
|
}
|
|
23123
23686
|
|
|
23124
|
-
declare enum AgentSessionStatus {
|
|
23125
|
-
QUEUED = "queued",
|
|
23126
|
-
STARTING = "starting",
|
|
23127
|
-
RUNNING = "running",
|
|
23128
|
-
COMPLETED = "completed",
|
|
23129
|
-
FAILED = "failed",
|
|
23130
|
-
CANCELLED = "cancelled"
|
|
23131
|
-
}
|
|
23132
|
-
declare enum AgentSessionState {
|
|
23133
|
-
BUSY = "busy",
|
|
23134
|
-
IDLE = "idle"
|
|
23135
|
-
}
|
|
23136
|
-
declare enum AgentName {
|
|
23137
|
-
MEMBRANE = "membrane",
|
|
23138
|
-
MEMBRANE_CORE = "membrane-core",
|
|
23139
|
-
SELF_INTEGRATING = "self-integrating",
|
|
23140
|
-
CONNECTION_BUILDING = "connection-building",
|
|
23141
|
-
ACTION_BUILDING = "action-building",
|
|
23142
|
-
UNIVERSE = "universe"
|
|
23143
|
-
}
|
|
23144
|
-
declare const AgentSession: z.ZodObject<{
|
|
23145
|
-
id: z.ZodString;
|
|
23146
|
-
workspaceId: z.ZodString;
|
|
23147
|
-
orgWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
23148
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
23149
|
-
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
23150
|
-
workspaceElementId: z.ZodString;
|
|
23151
|
-
type: z.ZodString;
|
|
23152
|
-
status: z.ZodEnum<typeof AgentSessionStatus>;
|
|
23153
|
-
prompt: z.ZodString;
|
|
23154
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
23155
|
-
lastActivityAt: z.ZodISODateTime;
|
|
23156
|
-
title: z.ZodOptional<z.ZodString>;
|
|
23157
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
23158
|
-
cost: z.ZodOptional<z.ZodNumber>;
|
|
23159
|
-
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
23160
|
-
usage: z.ZodOptional<z.ZodNumber>;
|
|
23161
|
-
hasWorker: z.ZodBoolean;
|
|
23162
|
-
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
23163
|
-
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23164
|
-
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23165
|
-
createdAt: z.ZodISODateTime;
|
|
23166
|
-
updatedAt: z.ZodISODateTime;
|
|
23167
|
-
}, z.core.$strip>;
|
|
23168
|
-
type AgentSession = z.infer<typeof AgentSession>;
|
|
23169
|
-
declare const CreateAgentSession: z.ZodObject<{
|
|
23170
|
-
workspaceElementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
23171
|
-
workspaceElementId: z.ZodOptional<z.ZodString>;
|
|
23172
|
-
prompt: z.ZodString;
|
|
23173
|
-
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
23174
|
-
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
23175
|
-
modelId: z.ZodOptional<z.ZodString>;
|
|
23176
|
-
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23177
|
-
}, z.core.$strip>;
|
|
23178
|
-
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
23179
|
-
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
23180
|
-
input: z.ZodString;
|
|
23181
|
-
synthetic: z.ZodOptional<z.ZodBoolean>;
|
|
23182
|
-
}, z.core.$strip>;
|
|
23183
|
-
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
23184
|
-
declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
23185
|
-
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
23186
|
-
lastActivityAt: z.ZodOptional<z.ZodISODateTime>;
|
|
23187
|
-
title: z.ZodOptional<z.ZodString>;
|
|
23188
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
23189
|
-
cost: z.ZodOptional<z.ZodNumber>;
|
|
23190
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
23191
|
-
opencodeSessionUuid: z.ZodOptional<z.ZodString>;
|
|
23192
|
-
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
23193
|
-
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
23194
|
-
}, z.core.$strip>;
|
|
23195
|
-
type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
23196
|
-
|
|
23197
23687
|
declare const SessionCredentials: z.ZodObject<{
|
|
23198
23688
|
accessKeyId: z.ZodString;
|
|
23199
23689
|
secretAccessKey: z.ZodString;
|
|
@@ -23217,6 +23707,10 @@ declare const SessionParameters: z.ZodObject<{
|
|
|
23217
23707
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
23218
23708
|
modelId: z.ZodOptional<z.ZodString>;
|
|
23219
23709
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
23710
|
+
engine: z.ZodOptional<z.ZodEnum<{
|
|
23711
|
+
opencode: "opencode";
|
|
23712
|
+
inline: "inline";
|
|
23713
|
+
}>>;
|
|
23220
23714
|
}, z.core.$strip>;
|
|
23221
23715
|
type SessionParameters = z.infer<typeof SessionParameters>;
|
|
23222
23716
|
interface SessionStatus {
|
|
@@ -23237,6 +23731,7 @@ interface SessionStatus {
|
|
|
23237
23731
|
agentVersion: string;
|
|
23238
23732
|
}
|
|
23239
23733
|
|
|
23734
|
+
declare const zodDateCoercion: () => z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
23240
23735
|
declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
|
|
23241
23736
|
|
|
23242
23737
|
declare const MappingSchema: z.ZodAny;
|
|
@@ -23273,24 +23768,24 @@ type RequestMappingSchema = z.infer<typeof RequestMappingSchema>;
|
|
|
23273
23768
|
declare const RestApiMappingSchema: z.ZodObject<{
|
|
23274
23769
|
path: z.ZodString;
|
|
23275
23770
|
method: z.ZodString;
|
|
23276
|
-
requestMapping: z.ZodObject<{
|
|
23771
|
+
requestMapping: z.ZodOptional<z.ZodObject<{
|
|
23277
23772
|
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
23278
23773
|
query: z.ZodOptional<z.ZodAny>;
|
|
23279
23774
|
data: z.ZodOptional<z.ZodAny>;
|
|
23280
23775
|
headers: z.ZodOptional<z.ZodAny>;
|
|
23281
|
-
}, z.core.$strip
|
|
23776
|
+
}, z.core.$strip>>;
|
|
23282
23777
|
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
23283
23778
|
}, z.core.$strip>;
|
|
23284
23779
|
type RestApiMappingSchema = z.infer<typeof RestApiMappingSchema>;
|
|
23285
23780
|
declare const OpenapiMappingSchema: z.ZodObject<{
|
|
23286
23781
|
path: z.ZodString;
|
|
23287
23782
|
method: z.ZodString;
|
|
23288
|
-
requestMapping: z.ZodObject<{
|
|
23783
|
+
requestMapping: z.ZodOptional<z.ZodObject<{
|
|
23289
23784
|
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
23290
23785
|
query: z.ZodOptional<z.ZodAny>;
|
|
23291
23786
|
data: z.ZodOptional<z.ZodAny>;
|
|
23292
23787
|
headers: z.ZodOptional<z.ZodAny>;
|
|
23293
|
-
}, z.core.$strip
|
|
23788
|
+
}, z.core.$strip>>;
|
|
23294
23789
|
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
23295
23790
|
}, z.core.$strip>;
|
|
23296
23791
|
type OpenapiMappingSchema = z.infer<typeof OpenapiMappingSchema>;
|
|
@@ -23299,12 +23794,12 @@ declare const RestApiMappingFunction: z.ZodObject<{
|
|
|
23299
23794
|
mapping: z.ZodObject<{
|
|
23300
23795
|
path: z.ZodString;
|
|
23301
23796
|
method: z.ZodString;
|
|
23302
|
-
requestMapping: z.ZodObject<{
|
|
23797
|
+
requestMapping: z.ZodOptional<z.ZodObject<{
|
|
23303
23798
|
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
23304
23799
|
query: z.ZodOptional<z.ZodAny>;
|
|
23305
23800
|
data: z.ZodOptional<z.ZodAny>;
|
|
23306
23801
|
headers: z.ZodOptional<z.ZodAny>;
|
|
23307
|
-
}, z.core.$strip
|
|
23802
|
+
}, z.core.$strip>>;
|
|
23308
23803
|
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
23309
23804
|
}, z.core.$strip>;
|
|
23310
23805
|
}, z.core.$strip>;
|
|
@@ -23397,12 +23892,12 @@ declare const FunctionDefinition: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
23397
23892
|
mapping: z.ZodObject<{
|
|
23398
23893
|
path: z.ZodString;
|
|
23399
23894
|
method: z.ZodString;
|
|
23400
|
-
requestMapping: z.ZodObject<{
|
|
23895
|
+
requestMapping: z.ZodOptional<z.ZodObject<{
|
|
23401
23896
|
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
23402
23897
|
query: z.ZodOptional<z.ZodAny>;
|
|
23403
23898
|
data: z.ZodOptional<z.ZodAny>;
|
|
23404
23899
|
headers: z.ZodOptional<z.ZodAny>;
|
|
23405
|
-
}, z.core.$strip
|
|
23900
|
+
}, z.core.$strip>>;
|
|
23406
23901
|
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
23407
23902
|
}, z.core.$strip>;
|
|
23408
23903
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -23551,7 +24046,7 @@ declare const CreateClientTokenRequest: z.ZodObject<{
|
|
|
23551
24046
|
grantId: z.ZodString;
|
|
23552
24047
|
grantName: z.ZodString;
|
|
23553
24048
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
23554
|
-
|
|
24049
|
+
clientKey: z.ZodOptional<z.ZodString>;
|
|
23555
24050
|
}, z.core.$strip>;
|
|
23556
24051
|
type CreateClientTokenRequest = z.infer<typeof CreateClientTokenRequest>;
|
|
23557
24052
|
declare const ClientTokenListResponse: z.ZodObject<{
|
|
@@ -23579,6 +24074,7 @@ declare const OAUTH_SCOPE_PLATFORM_USER: "platform-user";
|
|
|
23579
24074
|
declare const OAUTH_SCOPE_TENANT: "tenant";
|
|
23580
24075
|
declare const OAUTH_SCOPES: readonly ["platform-user", "tenant"];
|
|
23581
24076
|
type OAuthScope = (typeof OAUTH_SCOPES)[number];
|
|
24077
|
+
declare function selectHighestPriorityScope(scopes: string[]): string | undefined;
|
|
23582
24078
|
declare const OAuthTokenResponse: z.ZodObject<{
|
|
23583
24079
|
access_token: z.ZodString;
|
|
23584
24080
|
token_type: z.ZodString;
|
|
@@ -23658,6 +24154,10 @@ declare const ListClustersQuery: z.ZodObject<{
|
|
|
23658
24154
|
}, z.core.$strip>;
|
|
23659
24155
|
type ListClustersQuery = z.infer<typeof ListClustersQuery>;
|
|
23660
24156
|
|
|
24157
|
+
interface ConnectionUIOptions {
|
|
24158
|
+
connectionId: string;
|
|
24159
|
+
theme?: 'light' | 'dark' | 'auto';
|
|
24160
|
+
}
|
|
23661
24161
|
interface UNSAFE_AgentSessionUIOptions {
|
|
23662
24162
|
sessionId: string;
|
|
23663
24163
|
theme?: 'light' | 'dark' | 'auto';
|
|
@@ -23666,6 +24166,7 @@ declare class UI {
|
|
|
23666
24166
|
private client;
|
|
23667
24167
|
constructor(client: MembraneApiClient);
|
|
23668
24168
|
connect(options?: ConnectUIOptions): Promise<ConnectionApiResponse | null>;
|
|
24169
|
+
connection(options: ConnectionUIOptions): Promise<ConnectionApiResponse | null>;
|
|
23669
24170
|
UNSAFE_agentSession(options: UNSAFE_AgentSessionUIOptions): Promise<void>;
|
|
23670
24171
|
}
|
|
23671
24172
|
|
|
@@ -23757,5 +24258,5 @@ declare function getDefaultMembraneConfigLoader(): MembraneConfigLoader;
|
|
|
23757
24258
|
declare function loadMembraneConfig(cwd?: string, options?: LoadConfigOptions): PartialMembraneConfig;
|
|
23758
24259
|
declare function hasMembraneCredentials(cwd?: string): boolean;
|
|
23759
24260
|
|
|
23760
|
-
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONFIG_FILE_NAME, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, Cluster, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateClusterRequest, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, Eval, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FirstNotEmpty, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListClustersQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneConfigLoader, MembraneElementLayer, MembraneError, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDefaultMembraneConfigLoader, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, hasMembraneCredentials, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
24261
|
+
export { ACTIONS, AGENTIC_CONNECTION_REQUEST_SCREEN_PATH, 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, AgentSessionAttachment, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONFIG_FILE_NAME, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, Cluster, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionClientAction, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateClusterRequest, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, EnsureConnectionRequest, ErrorData, ErrorDataSchema, ErrorType, Eval, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FirstNotEmpty, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, IntentProperties, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListClustersQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneConfigLoader, MembraneElementLayer, MembraneError, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PatchConnectionRequestPayload, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDefaultMembraneConfigLoader, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, hasMembraneCredentials, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
23761
24262
|
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ClusterDto, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DbBackedCounts, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneConfig, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PartialMembraneConfig, PatchAgentSession, PatchSchemaOption, PendingQueueCount, PendingTasksSummary, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkerTypeFilter, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|