@membranehq/sdk 0.27.1 → 0.28.1
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 +33 -0
- package/dist/bundle.js +164 -121
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +3 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +3 -0
- package/dist/dts/agent/index.d.ts +1 -0
- package/dist/dts/agent/session-cost.d.ts +1 -0
- package/dist/dts/agent/session.d.ts +1 -2
- package/dist/dts/api-version.generated.d.ts +1 -1
- package/dist/dts/oauth/types.d.ts +11 -5
- package/dist/dts/orgs/types.d.ts +102 -273
- package/dist/dts/webhooks/types.d.ts +3 -2
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/connected-products-api.d.ts +6 -21
- package/dist/dts/workspace-elements/api/connection-attempt-logs-api.d.ts +53 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +12 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/index.d.ts +1 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +3 -0
- package/dist/dts/workspace-elements/base/connected-products/index.d.ts +9 -14
- package/dist/dts/workspace-elements/base/connection-attempt-logs/index.d.ts +21 -0
- package/dist/dts/workspace-elements/base/connections/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/connectors/functions.d.ts +1 -1
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +3 -1
- package/dist/dts/workspace-elements/base/connectors/rest-api.d.ts +1 -1
- package/dist/dts/workspace-elements/base/index.d.ts +1 -0
- package/dist/dts/workspace-elements/paths.d.ts +2 -2
- package/dist/dts/workspaces/compare.d.ts +0 -2
- package/dist/index.browser.d.mts +288 -326
- package/dist/index.browser.d.ts +288 -326
- package/dist/index.browser.js +129 -68
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +118 -64
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +288 -326
- package/dist/index.node.d.ts +288 -326
- package/dist/index.node.js +129 -68
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +118 -64
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.browser.d.ts
CHANGED
|
@@ -3649,7 +3649,7 @@ declare const GenericFunctionDefinition: z.ZodObject<{
|
|
|
3649
3649
|
type GenericFunctionDefinition = z.infer<typeof GenericFunctionDefinition>;
|
|
3650
3650
|
declare function validateFunctionDefinitions(functions: Record<string, GenericFunctionDefinition>, schema: z.ZodType): void;
|
|
3651
3651
|
|
|
3652
|
-
declare function getEffectiveConnectorOption(connector: ConnectorVersionData, optionKey: string): ConnectorOption;
|
|
3652
|
+
declare function getEffectiveConnectorOption(connector: ConnectorVersionData, optionKey: string): ConnectorOption | undefined;
|
|
3653
3653
|
interface ConnectorFunctionSpec {
|
|
3654
3654
|
authTypes?: ConnectorAuthType[];
|
|
3655
3655
|
getInputSchema?: (authConfig: ConnectorAuthWithFunctions) => DataSchema | undefined;
|
|
@@ -3800,7 +3800,7 @@ interface RestApiClientOptions {
|
|
|
3800
3800
|
};
|
|
3801
3801
|
returnFullResponse?: boolean;
|
|
3802
3802
|
responseHandlers?: Array<RestApiClientResponseHandler>;
|
|
3803
|
-
dynamicOptions?: (input: RestApiClientInput) => RestApiClientOptions
|
|
3803
|
+
dynamicOptions?: (input: RestApiClientInput) => RestApiClientOptions | Promise<RestApiClientOptions>;
|
|
3804
3804
|
binary?: boolean;
|
|
3805
3805
|
stream?: boolean;
|
|
3806
3806
|
onError?: (error: any) => any;
|
|
@@ -6270,7 +6270,7 @@ declare const ConnectorOption: z.ZodObject<{
|
|
|
6270
6270
|
}, z.core.$strip>;
|
|
6271
6271
|
type ConnectorOption = z.infer<typeof ConnectorOption>;
|
|
6272
6272
|
declare const GeneratedConnectorOption: z.ZodObject<{
|
|
6273
|
-
key: z.ZodString
|
|
6273
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6274
6274
|
type: z.ZodEnum<{
|
|
6275
6275
|
proxy: "proxy";
|
|
6276
6276
|
"integration-app-token": "integration-app-token";
|
|
@@ -7899,6 +7899,7 @@ declare const BaseConnector: z.ZodObject<{
|
|
|
7899
7899
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
7900
7900
|
popularity: z.ZodOptional<z.ZodNumber>;
|
|
7901
7901
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
7902
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
7902
7903
|
}, z.core.$strip>;
|
|
7903
7904
|
type BaseConnector = z.infer<typeof BaseConnector>;
|
|
7904
7905
|
declare const Connector: z.ZodObject<{
|
|
@@ -7912,6 +7913,7 @@ declare const Connector: z.ZodObject<{
|
|
|
7912
7913
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
7913
7914
|
popularity: z.ZodOptional<z.ZodNumber>;
|
|
7914
7915
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
7916
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
7915
7917
|
baseUri: z.ZodString;
|
|
7916
7918
|
revision: z.ZodOptional<z.ZodString>;
|
|
7917
7919
|
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8171,9 +8173,12 @@ declare const BaseConnection: z.ZodObject<{
|
|
|
8171
8173
|
id: z.ZodString;
|
|
8172
8174
|
name: z.ZodString;
|
|
8173
8175
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8176
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
8174
8177
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8175
8178
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8176
8179
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8180
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8181
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8177
8182
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8178
8183
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
8179
8184
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -10816,19 +10821,19 @@ declare const AiAgentAudience: z.ZodEnum<{
|
|
|
10816
10821
|
type AiAgentAudience = ConnectedProductAudience;
|
|
10817
10822
|
declare const AiAgentType: z.ZodEnum<{
|
|
10818
10823
|
custom: "custom";
|
|
10824
|
+
cursor: "cursor";
|
|
10825
|
+
"claude-code": "claude-code";
|
|
10826
|
+
codex: "codex";
|
|
10819
10827
|
openclaw: "openclaw";
|
|
10828
|
+
copilot: "copilot";
|
|
10829
|
+
windsurf: "windsurf";
|
|
10820
10830
|
claude: "claude";
|
|
10821
10831
|
chatgpt: "chatgpt";
|
|
10822
10832
|
}>;
|
|
10823
10833
|
type AiAgentType = z.infer<typeof AiAgentType>;
|
|
10824
10834
|
declare const AiAgentParameters: z.ZodObject<{
|
|
10825
|
-
agentType: z.ZodOptional<z.
|
|
10826
|
-
|
|
10827
|
-
openclaw: "openclaw";
|
|
10828
|
-
claude: "claude";
|
|
10829
|
-
chatgpt: "chatgpt";
|
|
10830
|
-
}>>;
|
|
10831
|
-
}, z.core.$strip>;
|
|
10835
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
10836
|
+
}, z.core.$loose>;
|
|
10832
10837
|
type AiAgentParameters = z.infer<typeof AiAgentParameters>;
|
|
10833
10838
|
declare const BaseConnectedProduct: z.ZodObject<{
|
|
10834
10839
|
id: z.ZodString;
|
|
@@ -10843,13 +10848,8 @@ declare const BaseConnectedProduct: z.ZodObject<{
|
|
|
10843
10848
|
personal: "personal";
|
|
10844
10849
|
}>>;
|
|
10845
10850
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
10846
|
-
agentType: z.ZodOptional<z.
|
|
10847
|
-
|
|
10848
|
-
openclaw: "openclaw";
|
|
10849
|
-
claude: "claude";
|
|
10850
|
-
chatgpt: "chatgpt";
|
|
10851
|
-
}>>;
|
|
10852
|
-
}, z.core.$strip>>;
|
|
10851
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
10852
|
+
}, z.core.$loose>>;
|
|
10853
10853
|
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
10854
10854
|
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
10855
10855
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -10857,6 +10857,26 @@ declare const BaseConnectedProduct: z.ZodObject<{
|
|
|
10857
10857
|
}, z.core.$strip>;
|
|
10858
10858
|
type BaseConnectedProduct = z.infer<typeof BaseConnectedProduct>;
|
|
10859
10859
|
|
|
10860
|
+
declare const BaseConnectionAttemptLog: z.ZodObject<{
|
|
10861
|
+
userId: z.ZodString;
|
|
10862
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
10863
|
+
id: z.ZodString;
|
|
10864
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
10865
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
10866
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10867
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
10868
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
10869
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
10870
|
+
connectionRequestId: z.ZodOptional<z.ZodString>;
|
|
10871
|
+
status: z.ZodEnum<{
|
|
10872
|
+
success: "success";
|
|
10873
|
+
error: "error";
|
|
10874
|
+
}>;
|
|
10875
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
10876
|
+
createdAt: z.ZodString;
|
|
10877
|
+
}, z.core.$strip>;
|
|
10878
|
+
type BaseConnectionAttemptLog = z.infer<typeof BaseConnectionAttemptLog>;
|
|
10879
|
+
|
|
10860
10880
|
declare const PaginationQuery: z.ZodObject<{
|
|
10861
10881
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10862
10882
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -11178,6 +11198,7 @@ declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
11178
11198
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11179
11199
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
11180
11200
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11201
|
+
connected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11181
11202
|
disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11182
11203
|
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11183
11204
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -11273,9 +11294,12 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
11273
11294
|
id: z.ZodString;
|
|
11274
11295
|
name: z.ZodString;
|
|
11275
11296
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11297
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11276
11298
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11277
11299
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11278
11300
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
11301
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
11302
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11279
11303
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11280
11304
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11281
11305
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11372,9 +11396,12 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
11372
11396
|
id: z.ZodString;
|
|
11373
11397
|
name: z.ZodString;
|
|
11374
11398
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11399
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11375
11400
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11376
11401
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11377
11402
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
11403
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
11404
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11378
11405
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11379
11406
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11380
11407
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11479,9 +11506,12 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11479
11506
|
id: z.ZodString;
|
|
11480
11507
|
name: z.ZodString;
|
|
11481
11508
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11509
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11482
11510
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11483
11511
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11484
11512
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
11513
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
11514
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11485
11515
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11486
11516
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11487
11517
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11609,6 +11639,7 @@ declare const ConnectPayload: z.ZodObject<{
|
|
|
11609
11639
|
redirectUri: z.ZodOptional<z.ZodString>;
|
|
11610
11640
|
customState: z.ZodOptional<z.ZodString>;
|
|
11611
11641
|
connectionRequestId: z.ZodOptional<z.ZodString>;
|
|
11642
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
11612
11643
|
}, z.core.$strip>;
|
|
11613
11644
|
type ConnectPayload = z.infer<typeof ConnectPayload>;
|
|
11614
11645
|
declare const ConnectUIOptions: z.ZodObject<{
|
|
@@ -11616,6 +11647,7 @@ declare const ConnectUIOptions: z.ZodObject<{
|
|
|
11616
11647
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11617
11648
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
11618
11649
|
name: z.ZodOptional<z.ZodString>;
|
|
11650
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
11619
11651
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
11620
11652
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11621
11653
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11772,9 +11804,12 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
11772
11804
|
id: z.ZodString;
|
|
11773
11805
|
name: z.ZodString;
|
|
11774
11806
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11807
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11775
11808
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11776
11809
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11777
11810
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
11811
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
11812
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11778
11813
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11779
11814
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11780
11815
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11973,9 +12008,12 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
11973
12008
|
id: z.ZodString;
|
|
11974
12009
|
name: z.ZodString;
|
|
11975
12010
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12011
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11976
12012
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11977
12013
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11978
12014
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
12015
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
12016
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11979
12017
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11980
12018
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11981
12019
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -12325,9 +12363,12 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12325
12363
|
id: z.ZodString;
|
|
12326
12364
|
name: z.ZodString;
|
|
12327
12365
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12366
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12328
12367
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
12329
12368
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
12330
12369
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
12370
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
12371
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
12331
12372
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
12332
12373
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12333
12374
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -12682,9 +12723,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
12682
12723
|
id: z.ZodString;
|
|
12683
12724
|
name: z.ZodString;
|
|
12684
12725
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12726
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12685
12727
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
12686
12728
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
12687
12729
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
12730
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
12731
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
12688
12732
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
12689
12733
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12690
12734
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -13397,9 +13441,12 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13397
13441
|
id: z.ZodString;
|
|
13398
13442
|
name: z.ZodString;
|
|
13399
13443
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13444
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
13400
13445
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
13401
13446
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
13402
13447
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13448
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13449
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13403
13450
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13404
13451
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
13405
13452
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -13999,9 +14046,12 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
13999
14046
|
id: z.ZodString;
|
|
14000
14047
|
name: z.ZodString;
|
|
14001
14048
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14049
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14002
14050
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
14003
14051
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
14004
14052
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
14053
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
14054
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
14005
14055
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
14006
14056
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
14007
14057
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -14520,9 +14570,12 @@ declare class ConnectionAccessor {
|
|
|
14520
14570
|
updatedAt: string;
|
|
14521
14571
|
userId: string;
|
|
14522
14572
|
isTest?: boolean | undefined;
|
|
14573
|
+
connected?: boolean | undefined;
|
|
14523
14574
|
disconnected?: boolean | undefined;
|
|
14524
14575
|
isDefunct?: boolean | undefined;
|
|
14525
14576
|
state?: WorkspaceElementState | undefined;
|
|
14577
|
+
errors?: ErrorDataSchema[] | undefined;
|
|
14578
|
+
requestError?: ErrorDataSchema | undefined;
|
|
14526
14579
|
error?: ErrorDataSchema | undefined;
|
|
14527
14580
|
integrationId?: string | undefined;
|
|
14528
14581
|
connectorId?: string | undefined;
|
|
@@ -14840,9 +14893,12 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
14840
14893
|
id: z.ZodString;
|
|
14841
14894
|
name: z.ZodString;
|
|
14842
14895
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14896
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14843
14897
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
14844
14898
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
14845
14899
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
14900
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
14901
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
14846
14902
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
14847
14903
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
14848
14904
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -15110,9 +15166,12 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15110
15166
|
id: z.ZodString;
|
|
15111
15167
|
name: z.ZodString;
|
|
15112
15168
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15169
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15113
15170
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
15114
15171
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
15115
15172
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
15173
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
15174
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15116
15175
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15117
15176
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
15118
15177
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -15411,9 +15470,12 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15411
15470
|
id: z.ZodString;
|
|
15412
15471
|
name: z.ZodString;
|
|
15413
15472
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15473
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15414
15474
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
15415
15475
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
15416
15476
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
15477
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
15478
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15417
15479
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15418
15480
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
15419
15481
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -15769,9 +15831,12 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
15769
15831
|
updatedAt: string;
|
|
15770
15832
|
userId: string;
|
|
15771
15833
|
isTest?: boolean | undefined;
|
|
15834
|
+
connected?: boolean | undefined;
|
|
15772
15835
|
disconnected?: boolean | undefined;
|
|
15773
15836
|
isDefunct?: boolean | undefined;
|
|
15774
15837
|
state?: WorkspaceElementState | undefined;
|
|
15838
|
+
errors?: ErrorDataSchema[] | undefined;
|
|
15839
|
+
requestError?: ErrorDataSchema | undefined;
|
|
15775
15840
|
error?: ErrorDataSchema | undefined;
|
|
15776
15841
|
integrationId?: string | undefined;
|
|
15777
15842
|
connectorId?: string | undefined;
|
|
@@ -16455,9 +16520,12 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16455
16520
|
id: z.ZodString;
|
|
16456
16521
|
name: z.ZodString;
|
|
16457
16522
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
16523
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
16458
16524
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
16459
16525
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
16460
16526
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
16527
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
16528
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
16461
16529
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
16462
16530
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
16463
16531
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -17508,9 +17576,12 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17508
17576
|
id: z.ZodString;
|
|
17509
17577
|
name: z.ZodString;
|
|
17510
17578
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17579
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17511
17580
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
17512
17581
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
17513
17582
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
17583
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
17584
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
17514
17585
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
17515
17586
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17516
17587
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -17727,9 +17798,12 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17727
17798
|
id: z.ZodString;
|
|
17728
17799
|
name: z.ZodString;
|
|
17729
17800
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17801
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17730
17802
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
17731
17803
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
17732
17804
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
17805
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
17806
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
17733
17807
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
17734
17808
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17735
17809
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -18047,9 +18121,12 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18047
18121
|
id: z.ZodString;
|
|
18048
18122
|
name: z.ZodString;
|
|
18049
18123
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18124
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18050
18125
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18051
18126
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18052
18127
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
18128
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
18129
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18053
18130
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18054
18131
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18055
18132
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -18486,9 +18563,12 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18486
18563
|
id: z.ZodString;
|
|
18487
18564
|
name: z.ZodString;
|
|
18488
18565
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18566
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18489
18567
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18490
18568
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18491
18569
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
18570
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
18571
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18492
18572
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18493
18573
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18494
18574
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -18667,9 +18747,12 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
18667
18747
|
id: z.ZodString;
|
|
18668
18748
|
name: z.ZodString;
|
|
18669
18749
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18750
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18670
18751
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18671
18752
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18672
18753
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
18754
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
18755
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18673
18756
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18674
18757
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18675
18758
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -18852,9 +18935,12 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
18852
18935
|
id: z.ZodString;
|
|
18853
18936
|
name: z.ZodString;
|
|
18854
18937
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18938
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18855
18939
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18856
18940
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18857
18941
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
18942
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
18943
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18858
18944
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18859
18945
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18860
18946
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -18979,9 +19065,12 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
18979
19065
|
id: z.ZodString;
|
|
18980
19066
|
name: z.ZodString;
|
|
18981
19067
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
19068
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18982
19069
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18983
19070
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18984
19071
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
19072
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
19073
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18985
19074
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
18986
19075
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18987
19076
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -19066,13 +19155,8 @@ declare const CreateConnectedProductRequest: z.ZodObject<{
|
|
|
19066
19155
|
personal: "personal";
|
|
19067
19156
|
}>>;
|
|
19068
19157
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
19069
|
-
agentType: z.ZodOptional<z.
|
|
19070
|
-
|
|
19071
|
-
openclaw: "openclaw";
|
|
19072
|
-
claude: "claude";
|
|
19073
|
-
chatgpt: "chatgpt";
|
|
19074
|
-
}>>;
|
|
19075
|
-
}, z.core.$strip>>;
|
|
19158
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
19159
|
+
}, z.core.$loose>>;
|
|
19076
19160
|
}, z.core.$strip>;
|
|
19077
19161
|
type CreateConnectedProductRequest = z.infer<typeof CreateConnectedProductRequest>;
|
|
19078
19162
|
declare const UpdateConnectedProductRequest: z.ZodObject<{
|
|
@@ -19087,13 +19171,8 @@ declare const UpdateConnectedProductRequest: z.ZodObject<{
|
|
|
19087
19171
|
personal: "personal";
|
|
19088
19172
|
}>>;
|
|
19089
19173
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
19090
|
-
agentType: z.ZodOptional<z.
|
|
19091
|
-
|
|
19092
|
-
openclaw: "openclaw";
|
|
19093
|
-
claude: "claude";
|
|
19094
|
-
chatgpt: "chatgpt";
|
|
19095
|
-
}>>;
|
|
19096
|
-
}, z.core.$strip>>;
|
|
19174
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
19175
|
+
}, z.core.$loose>>;
|
|
19097
19176
|
}, z.core.$strip>;
|
|
19098
19177
|
type UpdateConnectedProductRequest = z.infer<typeof UpdateConnectedProductRequest>;
|
|
19099
19178
|
declare const FindConnectedProductsQuery: z.ZodObject<{
|
|
@@ -19124,13 +19203,8 @@ declare const ConnectedProductApiResponse: z.ZodObject<{
|
|
|
19124
19203
|
personal: "personal";
|
|
19125
19204
|
}>>;
|
|
19126
19205
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
19127
|
-
agentType: z.ZodOptional<z.
|
|
19128
|
-
|
|
19129
|
-
openclaw: "openclaw";
|
|
19130
|
-
claude: "claude";
|
|
19131
|
-
chatgpt: "chatgpt";
|
|
19132
|
-
}>>;
|
|
19133
|
-
}, z.core.$strip>>;
|
|
19206
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
19207
|
+
}, z.core.$loose>>;
|
|
19134
19208
|
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
19135
19209
|
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
19136
19210
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -19138,6 +19212,59 @@ declare const ConnectedProductApiResponse: z.ZodObject<{
|
|
|
19138
19212
|
}, z.core.$strip>;
|
|
19139
19213
|
type ConnectedProductApiResponse = z.infer<typeof ConnectedProductApiResponse>;
|
|
19140
19214
|
|
|
19215
|
+
declare const ConnectionAttemptLogApiResponse: z.ZodObject<{
|
|
19216
|
+
userId: z.ZodString;
|
|
19217
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19218
|
+
id: z.ZodString;
|
|
19219
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
19220
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
19221
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
19222
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
19223
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
19224
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
19225
|
+
connectionRequestId: z.ZodOptional<z.ZodString>;
|
|
19226
|
+
status: z.ZodEnum<{
|
|
19227
|
+
success: "success";
|
|
19228
|
+
error: "error";
|
|
19229
|
+
}>;
|
|
19230
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
19231
|
+
createdAt: z.ZodString;
|
|
19232
|
+
}, z.core.$strip>;
|
|
19233
|
+
type ConnectionAttemptLogApiResponse = z.infer<typeof ConnectionAttemptLogApiResponse>;
|
|
19234
|
+
declare const FindConnectionAttemptLogsQuery: z.ZodObject<{
|
|
19235
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
19236
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
19237
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
19238
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
19239
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
19240
|
+
success: "success";
|
|
19241
|
+
error: "error";
|
|
19242
|
+
}>>;
|
|
19243
|
+
}, z.core.$strip>;
|
|
19244
|
+
type FindConnectionAttemptLogsQuery = z.infer<typeof FindConnectionAttemptLogsQuery>;
|
|
19245
|
+
declare const FindConnectionAttemptLogsResponse: z.ZodObject<{
|
|
19246
|
+
items: z.ZodArray<z.ZodObject<{
|
|
19247
|
+
userId: z.ZodString;
|
|
19248
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
19249
|
+
id: z.ZodString;
|
|
19250
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
19251
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
19252
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
19253
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
19254
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
19255
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
19256
|
+
connectionRequestId: z.ZodOptional<z.ZodString>;
|
|
19257
|
+
status: z.ZodEnum<{
|
|
19258
|
+
success: "success";
|
|
19259
|
+
error: "error";
|
|
19260
|
+
}>;
|
|
19261
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
19262
|
+
createdAt: z.ZodString;
|
|
19263
|
+
}, z.core.$strip>>;
|
|
19264
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
19265
|
+
}, z.core.$strip>;
|
|
19266
|
+
type FindConnectionAttemptLogsResponse = z.infer<typeof FindConnectionAttemptLogsResponse>;
|
|
19267
|
+
|
|
19141
19268
|
declare class DependencyError extends MembraneError {
|
|
19142
19269
|
constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
|
|
19143
19270
|
}
|
|
@@ -19260,6 +19387,7 @@ declare enum AgentName {
|
|
|
19260
19387
|
ACTION_BUILDING = "action-building",
|
|
19261
19388
|
UNIVERSE = "universe"
|
|
19262
19389
|
}
|
|
19390
|
+
declare const MEMBRANE_SESSION_ID_HEADER = "X-Membrane-Session-Id";
|
|
19263
19391
|
declare const AgentSession: z.ZodObject<{
|
|
19264
19392
|
id: z.ZodString;
|
|
19265
19393
|
workspaceId: z.ZodString;
|
|
@@ -19275,7 +19403,6 @@ declare const AgentSession: z.ZodObject<{
|
|
|
19275
19403
|
summary: z.ZodOptional<z.ZodString>;
|
|
19276
19404
|
cost: z.ZodOptional<z.ZodNumber>;
|
|
19277
19405
|
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
19278
|
-
usage: z.ZodOptional<z.ZodNumber>;
|
|
19279
19406
|
hasWorker: z.ZodBoolean;
|
|
19280
19407
|
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
19281
19408
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
@@ -19319,7 +19446,6 @@ declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
|
19319
19446
|
lastActivityAt: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>>;
|
|
19320
19447
|
title: z.ZodOptional<z.ZodString>;
|
|
19321
19448
|
summary: z.ZodOptional<z.ZodString>;
|
|
19322
|
-
cost: z.ZodOptional<z.ZodNumber>;
|
|
19323
19449
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
19324
19450
|
opencodeSessionUuid: z.ZodOptional<z.ZodString>;
|
|
19325
19451
|
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -19382,8 +19508,8 @@ declare function parseMembraneElementPath(relativePath: string): {
|
|
|
19382
19508
|
key: string;
|
|
19383
19509
|
integrationKey?: string;
|
|
19384
19510
|
} | undefined;
|
|
19385
|
-
declare function getConnectorSpecPath(
|
|
19386
|
-
declare function getConnectorVersionPath(
|
|
19511
|
+
declare function getConnectorSpecPath(connectorUuid: string): string;
|
|
19512
|
+
declare function getConnectorVersionPath(connectorUuid: string, version: string): string;
|
|
19387
19513
|
|
|
19388
19514
|
declare enum AlertStatus {
|
|
19389
19515
|
ONGOING = "ongoing",
|
|
@@ -20957,7 +21083,6 @@ interface WorkspaceElementChangeInfo {
|
|
|
20957
21083
|
interface WorkspaceExportComparisonResult {
|
|
20958
21084
|
comparison: WorkspaceExportComparison;
|
|
20959
21085
|
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
20960
|
-
sourceUuidByTargetUuid: Map<string, string>;
|
|
20961
21086
|
diff?: string;
|
|
20962
21087
|
}
|
|
20963
21088
|
interface WorkspaceExportComparisonOptions {
|
|
@@ -20965,7 +21090,6 @@ interface WorkspaceExportComparisonOptions {
|
|
|
20965
21090
|
includeDiff?: boolean;
|
|
20966
21091
|
}
|
|
20967
21092
|
declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
20968
|
-
declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
|
20969
21093
|
|
|
20970
21094
|
declare const IneligibilityReasonSchema: z.ZodEnum<{
|
|
20971
21095
|
disposable: "disposable";
|
|
@@ -21376,6 +21500,7 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21376
21500
|
}, z.core.$strip>>;
|
|
21377
21501
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21378
21502
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
21503
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
21379
21504
|
}, z.core.$strip>;
|
|
21380
21505
|
type WorkspaceEditableFields = z.infer<typeof WorkspaceEditableFields>;
|
|
21381
21506
|
declare const OrgWorkspace: z.ZodObject<{
|
|
@@ -21650,6 +21775,7 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21650
21775
|
}, z.core.$strip>>;
|
|
21651
21776
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21652
21777
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
21778
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
21653
21779
|
}, z.core.$strip>;
|
|
21654
21780
|
type OrgWorkspace = z.infer<typeof OrgWorkspace>;
|
|
21655
21781
|
declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
@@ -21913,16 +22039,90 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
21913
22039
|
}, z.core.$strip>>;
|
|
21914
22040
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21915
22041
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22042
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
21916
22043
|
}, z.core.$strip>;
|
|
21917
22044
|
type OrgWorkspaceUpdateRequest = z.infer<typeof OrgWorkspaceUpdateRequest>;
|
|
22045
|
+
declare const WorkspaceOnboardingData: z.ZodObject<{
|
|
22046
|
+
productSetup: z.ZodOptional<z.ZodObject<{
|
|
22047
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
22048
|
+
app: "app";
|
|
22049
|
+
"ai-agent": "ai-agent";
|
|
22050
|
+
}>>;
|
|
22051
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
22052
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22053
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
22054
|
+
}, z.core.$strip>>;
|
|
22055
|
+
connections: z.ZodOptional<z.ZodObject<{
|
|
22056
|
+
apps: z.ZodArray<z.ZodObject<{
|
|
22057
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
22058
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22059
|
+
url: z.ZodOptional<z.ZodString>;
|
|
22060
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
22061
|
+
connected: "connected";
|
|
22062
|
+
skipped: "skipped";
|
|
22063
|
+
pending: "pending";
|
|
22064
|
+
}>>;
|
|
22065
|
+
}, z.core.$strip>>;
|
|
22066
|
+
}, z.core.$strip>>;
|
|
22067
|
+
}, z.core.$loose>;
|
|
22068
|
+
type WorkspaceOnboardingData = z.infer<typeof WorkspaceOnboardingData>;
|
|
21918
22069
|
declare const OrgWorkspaceUser: z.ZodObject<{
|
|
21919
22070
|
id: z.ZodString;
|
|
21920
22071
|
workspaceId: z.ZodString;
|
|
21921
22072
|
testCustomerId: z.ZodString;
|
|
21922
22073
|
userId: z.ZodString;
|
|
21923
22074
|
role: z.ZodString;
|
|
22075
|
+
onboardingData: z.ZodOptional<z.ZodObject<{
|
|
22076
|
+
productSetup: z.ZodOptional<z.ZodObject<{
|
|
22077
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
22078
|
+
app: "app";
|
|
22079
|
+
"ai-agent": "ai-agent";
|
|
22080
|
+
}>>;
|
|
22081
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
22082
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22083
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
22084
|
+
}, z.core.$strip>>;
|
|
22085
|
+
connections: z.ZodOptional<z.ZodObject<{
|
|
22086
|
+
apps: z.ZodArray<z.ZodObject<{
|
|
22087
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
22088
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22089
|
+
url: z.ZodOptional<z.ZodString>;
|
|
22090
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
22091
|
+
connected: "connected";
|
|
22092
|
+
skipped: "skipped";
|
|
22093
|
+
pending: "pending";
|
|
22094
|
+
}>>;
|
|
22095
|
+
}, z.core.$strip>>;
|
|
22096
|
+
}, z.core.$strip>>;
|
|
22097
|
+
}, z.core.$loose>>;
|
|
21924
22098
|
}, z.core.$strip>;
|
|
21925
22099
|
type OrgWorkspaceUser = z.infer<typeof OrgWorkspaceUser>;
|
|
22100
|
+
declare const PatchUserWorkspaceSettings: z.ZodObject<{
|
|
22101
|
+
onboardingData: z.ZodOptional<z.ZodObject<{
|
|
22102
|
+
productSetup: z.ZodOptional<z.ZodObject<{
|
|
22103
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
22104
|
+
app: "app";
|
|
22105
|
+
"ai-agent": "ai-agent";
|
|
22106
|
+
}>>;
|
|
22107
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
22108
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22109
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
22110
|
+
}, z.core.$strip>>;
|
|
22111
|
+
connections: z.ZodOptional<z.ZodObject<{
|
|
22112
|
+
apps: z.ZodArray<z.ZodObject<{
|
|
22113
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
22114
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22115
|
+
url: z.ZodOptional<z.ZodString>;
|
|
22116
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
22117
|
+
connected: "connected";
|
|
22118
|
+
skipped: "skipped";
|
|
22119
|
+
pending: "pending";
|
|
22120
|
+
}>>;
|
|
22121
|
+
}, z.core.$strip>>;
|
|
22122
|
+
}, z.core.$strip>>;
|
|
22123
|
+
}, z.core.$loose>>;
|
|
22124
|
+
}, z.core.$strip>;
|
|
22125
|
+
type PatchUserWorkspaceSettings = z.infer<typeof PatchUserWorkspaceSettings>;
|
|
21926
22126
|
declare const CreateOrgRequest: z.ZodObject<{
|
|
21927
22127
|
name: z.ZodString;
|
|
21928
22128
|
website: z.ZodOptional<z.ZodString>;
|
|
@@ -22387,6 +22587,7 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22387
22587
|
}, z.core.$strip>>;
|
|
22388
22588
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22389
22589
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22590
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
22390
22591
|
}, z.core.$strip>>;
|
|
22391
22592
|
cursor: z.ZodOptional<z.ZodString>;
|
|
22392
22593
|
}, z.core.$strip>;
|
|
@@ -22693,285 +22894,37 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22693
22894
|
}, z.core.$strip>>;
|
|
22694
22895
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22695
22896
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22897
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
22696
22898
|
}, z.core.$strip>>;
|
|
22697
|
-
|
|
22698
|
-
id: z.ZodString;
|
|
22699
|
-
name: z.ZodString;
|
|
22700
|
-
orgId: z.ZodString;
|
|
22701
|
-
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22702
|
-
key: z.ZodString;
|
|
22703
|
-
secret: z.ZodString;
|
|
22704
|
-
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22705
|
-
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22706
|
-
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22707
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22708
|
-
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22709
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
22710
|
-
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22711
|
-
limits: z.ZodOptional<z.ZodObject<{
|
|
22712
|
-
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
22713
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22714
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22715
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22716
|
-
}, z.core.$strip>>;
|
|
22717
|
-
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22718
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22719
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22720
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22721
|
-
}, z.core.$strip>>;
|
|
22722
|
-
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22723
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22724
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22725
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22726
|
-
}, z.core.$strip>>;
|
|
22727
|
-
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
22728
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22729
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22730
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22731
|
-
}, z.core.$strip>>;
|
|
22732
|
-
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22733
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22734
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22735
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22736
|
-
}, z.core.$strip>>;
|
|
22737
|
-
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
22738
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22739
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22740
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22741
|
-
}, z.core.$strip>>;
|
|
22742
|
-
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
22743
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22744
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22745
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22746
|
-
}, z.core.$strip>>;
|
|
22747
|
-
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
22748
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22749
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22750
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22751
|
-
}, z.core.$strip>>;
|
|
22752
|
-
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
22753
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22754
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22755
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22756
|
-
}, z.core.$strip>>;
|
|
22757
|
-
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22758
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22759
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22760
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22761
|
-
}, z.core.$strip>>;
|
|
22762
|
-
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
22763
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22764
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22765
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22766
|
-
}, z.core.$strip>>;
|
|
22767
|
-
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
22768
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22769
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22770
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22771
|
-
}, z.core.$strip>>;
|
|
22772
|
-
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
22773
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22774
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22775
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22776
|
-
}, z.core.$strip>>;
|
|
22777
|
-
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
22778
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22779
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22780
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22781
|
-
}, z.core.$strip>>;
|
|
22782
|
-
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
22783
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22784
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22785
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22786
|
-
}, z.core.$strip>>;
|
|
22787
|
-
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22788
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22789
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22790
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22791
|
-
}, z.core.$strip>>;
|
|
22792
|
-
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22793
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22794
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22795
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22796
|
-
}, z.core.$strip>>;
|
|
22797
|
-
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22798
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22799
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22800
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22801
|
-
}, z.core.$strip>>;
|
|
22802
|
-
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22803
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22804
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22805
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22806
|
-
}, z.core.$strip>>;
|
|
22807
|
-
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22808
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22809
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22810
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22811
|
-
}, z.core.$strip>>;
|
|
22812
|
-
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22813
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22814
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22815
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22816
|
-
}, z.core.$strip>>;
|
|
22817
|
-
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
22818
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22819
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22820
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22821
|
-
}, z.core.$strip>>;
|
|
22822
|
-
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22823
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22824
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22825
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22826
|
-
}, z.core.$strip>>;
|
|
22827
|
-
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
22828
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22829
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22830
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22831
|
-
}, z.core.$strip>>;
|
|
22832
|
-
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
22833
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22834
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22835
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22836
|
-
}, z.core.$strip>>;
|
|
22837
|
-
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
22838
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22839
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22840
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22841
|
-
}, z.core.$strip>>;
|
|
22842
|
-
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
22843
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22844
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22845
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22846
|
-
}, z.core.$strip>>;
|
|
22847
|
-
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
22848
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22849
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22850
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22851
|
-
}, z.core.$strip>>;
|
|
22852
|
-
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22853
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22854
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22855
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22856
|
-
}, z.core.$strip>>;
|
|
22857
|
-
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22858
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22859
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22860
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22861
|
-
}, z.core.$strip>>;
|
|
22862
|
-
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22863
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22864
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22865
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22866
|
-
}, z.core.$strip>>;
|
|
22867
|
-
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22868
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22869
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22870
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22871
|
-
}, z.core.$strip>>;
|
|
22872
|
-
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22873
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22874
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22875
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22876
|
-
}, z.core.$strip>>;
|
|
22877
|
-
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22878
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22879
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22880
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22881
|
-
}, z.core.$strip>>;
|
|
22882
|
-
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22883
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22884
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22885
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22886
|
-
}, z.core.$strip>>;
|
|
22887
|
-
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22888
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22889
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22890
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22891
|
-
}, z.core.$strip>>;
|
|
22892
|
-
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22893
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22894
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22895
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22896
|
-
}, z.core.$strip>>;
|
|
22897
|
-
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22898
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22899
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22900
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22901
|
-
}, z.core.$strip>>;
|
|
22902
|
-
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
22903
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22904
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22905
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22906
|
-
}, z.core.$strip>>;
|
|
22907
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
22908
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22909
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22910
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22911
|
-
}, z.core.$strip>>;
|
|
22912
|
-
}, z.core.$strip>>;
|
|
22913
|
-
settings: z.ZodOptional<z.ZodObject<{
|
|
22914
|
-
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22915
|
-
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22916
|
-
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22917
|
-
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22918
|
-
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22919
|
-
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22920
|
-
}, z.core.$strip>>;
|
|
22921
|
-
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22922
|
-
name: z.ZodString;
|
|
22923
|
-
publicKey: z.ZodString;
|
|
22924
|
-
}, z.core.$strip>>>;
|
|
22925
|
-
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
22926
|
-
webhookUri: z.ZodOptional<z.ZodString>;
|
|
22927
|
-
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22928
|
-
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
22929
|
-
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
22930
|
-
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
22931
|
-
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
22932
|
-
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
22933
|
-
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
22934
|
-
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
22935
|
-
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
22936
|
-
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
22937
|
-
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
22938
|
-
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
22939
|
-
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
22940
|
-
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
22941
|
-
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
22942
|
-
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
22943
|
-
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22944
|
-
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22945
|
-
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22946
|
-
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22947
|
-
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22948
|
-
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22949
|
-
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
22950
|
-
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22951
|
-
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22952
|
-
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22953
|
-
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
22954
|
-
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
22955
|
-
parallelApiRequests: AlertType.parallelApiRequests;
|
|
22956
|
-
testAlert: AlertType.testAlert;
|
|
22957
|
-
}>, z.ZodOptional<z.ZodObject<{
|
|
22958
|
-
internal: z.ZodLiteral<true>;
|
|
22959
|
-
webhook: z.ZodOptional<z.ZodObject<{
|
|
22960
|
-
enabled: z.ZodBoolean;
|
|
22961
|
-
}, z.core.$strip>>;
|
|
22962
|
-
email: z.ZodOptional<z.ZodObject<{
|
|
22963
|
-
enabled: z.ZodBoolean;
|
|
22964
|
-
}, z.core.$strip>>;
|
|
22965
|
-
}, z.core.$strip>>>>;
|
|
22966
|
-
}, z.core.$strip>>;
|
|
22967
|
-
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22968
|
-
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22969
|
-
}, z.core.$strip>>>;
|
|
22899
|
+
hasWorkspaces: z.ZodOptional<z.ZodBoolean>;
|
|
22970
22900
|
workspaceUser: z.ZodOptional<z.ZodObject<{
|
|
22971
22901
|
id: z.ZodString;
|
|
22972
22902
|
workspaceId: z.ZodString;
|
|
22973
22903
|
userId: z.ZodString;
|
|
22974
22904
|
role: z.ZodString;
|
|
22905
|
+
onboardingData: z.ZodOptional<z.ZodObject<{
|
|
22906
|
+
productSetup: z.ZodOptional<z.ZodObject<{
|
|
22907
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
22908
|
+
app: "app";
|
|
22909
|
+
"ai-agent": "ai-agent";
|
|
22910
|
+
}>>;
|
|
22911
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
22912
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22913
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
22914
|
+
}, z.core.$strip>>;
|
|
22915
|
+
connections: z.ZodOptional<z.ZodObject<{
|
|
22916
|
+
apps: z.ZodArray<z.ZodObject<{
|
|
22917
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
22918
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22919
|
+
url: z.ZodOptional<z.ZodString>;
|
|
22920
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
22921
|
+
connected: "connected";
|
|
22922
|
+
skipped: "skipped";
|
|
22923
|
+
pending: "pending";
|
|
22924
|
+
}>>;
|
|
22925
|
+
}, z.core.$strip>>;
|
|
22926
|
+
}, z.core.$strip>>;
|
|
22927
|
+
}, z.core.$loose>>;
|
|
22975
22928
|
testCustomerId: z.ZodString;
|
|
22976
22929
|
}, z.core.$strip>>;
|
|
22977
22930
|
engineTestUser: z.ZodOptional<z.ZodObject<{
|
|
@@ -24210,9 +24163,10 @@ declare enum WebhookTypeEnum {
|
|
|
24210
24163
|
CONNECTOR_VERSION_PUBLISHED = "connector-version-published",
|
|
24211
24164
|
AGENT_SESSION_FINISHED = "agent-session-finished",
|
|
24212
24165
|
SEND_ALERT_EMAIL = "send-alert-email",
|
|
24213
|
-
PUBLIC_PACKAGE_ACTION_RUN_FAILED = "public-package-action-run-failed"
|
|
24166
|
+
PUBLIC_PACKAGE_ACTION_RUN_FAILED = "public-package-action-run-failed",
|
|
24167
|
+
BETTER_AUTH_SIGNUP_VERIFY = "better-auth-signup-verify"
|
|
24214
24168
|
}
|
|
24215
|
-
type WebhookType = WebhookTypeEnum.USER_INVITED_TO_ORG | WebhookTypeEnum.ORG_ACCESS_REQUESTED | WebhookTypeEnum.ORG_CREATED | WebhookTypeEnum.TASK_CREATED | WebhookTypeEnum.TASK_UPDATED | WebhookTypeEnum.TASK_ACTIVITY_CREATED | WebhookTypeEnum.CONNECTOR_VERSION_PUBLISHED | WebhookTypeEnum.AGENT_SESSION_FINISHED | WebhookTypeEnum.SEND_ALERT_EMAIL | WebhookTypeEnum.PUBLIC_PACKAGE_ACTION_RUN_FAILED;
|
|
24169
|
+
type WebhookType = WebhookTypeEnum.USER_INVITED_TO_ORG | WebhookTypeEnum.ORG_ACCESS_REQUESTED | WebhookTypeEnum.ORG_CREATED | WebhookTypeEnum.TASK_CREATED | WebhookTypeEnum.TASK_UPDATED | WebhookTypeEnum.TASK_ACTIVITY_CREATED | WebhookTypeEnum.CONNECTOR_VERSION_PUBLISHED | WebhookTypeEnum.AGENT_SESSION_FINISHED | WebhookTypeEnum.SEND_ALERT_EMAIL | WebhookTypeEnum.PUBLIC_PACKAGE_ACTION_RUN_FAILED | WebhookTypeEnum.BETTER_AUTH_SIGNUP_VERIFY;
|
|
24216
24170
|
interface Webhook {
|
|
24217
24171
|
type: WebhookType;
|
|
24218
24172
|
url: string;
|
|
@@ -24455,6 +24409,8 @@ interface HandyScenarioTemplateElementApi {
|
|
|
24455
24409
|
} & Record<string, any>;
|
|
24456
24410
|
}
|
|
24457
24411
|
|
|
24412
|
+
declare function formatSessionCost(cost?: number | null): string;
|
|
24413
|
+
|
|
24458
24414
|
declare const SessionCredentials: z.ZodObject<{
|
|
24459
24415
|
accessKeyId: z.ZodString;
|
|
24460
24416
|
secretAccessKey: z.ZodString;
|
|
@@ -24846,11 +24802,16 @@ declare const ClientTokenListResponse: z.ZodObject<{
|
|
|
24846
24802
|
type ClientTokenListResponse = z.infer<typeof ClientTokenListResponse>;
|
|
24847
24803
|
|
|
24848
24804
|
declare const MEMBRANE_CLI_CLIENT_ID: "membrane-cli";
|
|
24849
|
-
declare const
|
|
24850
|
-
declare const
|
|
24851
|
-
declare const
|
|
24852
|
-
|
|
24853
|
-
|
|
24805
|
+
declare const OAUTH_TOKEN_TYPE_PLATFORM_USER: "platform-user";
|
|
24806
|
+
declare const OAUTH_TOKEN_TYPE_TENANT: "tenant";
|
|
24807
|
+
declare const OAUTH_TOKEN_TYPE_CONNECTION: "connection";
|
|
24808
|
+
declare const OAUTH_TOKEN_TYPES: readonly ["platform-user", "tenant", "connection"];
|
|
24809
|
+
type OAuthTokenType = (typeof OAUTH_TOKEN_TYPES)[number];
|
|
24810
|
+
interface AuthContextSettings {
|
|
24811
|
+
defaultWorkspaceKey?: string;
|
|
24812
|
+
defaultTenantKey?: string;
|
|
24813
|
+
connectionId?: string;
|
|
24814
|
+
}
|
|
24854
24815
|
declare const OAuthTokenResponse: z.ZodObject<{
|
|
24855
24816
|
access_token: z.ZodString;
|
|
24856
24817
|
token_type: z.ZodString;
|
|
@@ -24859,6 +24820,7 @@ declare const OAuthTokenResponse: z.ZodObject<{
|
|
|
24859
24820
|
default_workspace_key: z.ZodOptional<z.ZodString>;
|
|
24860
24821
|
default_tenant_key: z.ZodOptional<z.ZodString>;
|
|
24861
24822
|
email: z.ZodOptional<z.ZodString>;
|
|
24823
|
+
org_id: z.ZodOptional<z.ZodString>;
|
|
24862
24824
|
}, z.core.$strip>;
|
|
24863
24825
|
type OAuthTokenResponse = z.infer<typeof OAuthTokenResponse>;
|
|
24864
24826
|
|
|
@@ -25133,5 +25095,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
25133
25095
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
25134
25096
|
}
|
|
25135
25097
|
|
|
25136
|
-
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, 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, 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, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateMembraneInstanceRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreateOrgWorkspaceRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CreateWorkspaceRequest, 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, GenerateWorkspaceAccessTokenRequest, GenerateWorkspaceAccessTokenResponse, GeneratedConnectorOption, GenericFunctionDefinition, GetWorkspaceQuery, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HUB_INSTANCE_ID, 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, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListMembraneInstancesQuery, ListMembraneInstancesResponse, ListOrgWorkspacesQuery, ListOrgWorkspacesResponse, ListPublicConnectorsQuery, ListPublicPackagesQuery, ListWorkspacesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MembraneInstance, MembraneInstanceAdmin, 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, OrgInstance, OrgInstanceType, OrgInstanceWorkspace, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUpdateRequest, 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, RotateOrgWorkspaceSecretResponse, 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, UpdateMembraneInstanceRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpdateWorkspaceLimitsRequest, UpdateWorkspaceRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_DATABASE_RECORD_COLLECTIONS, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_ELEMENT_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceAiCreditLimits, WorkspaceEditableFields, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isHubInstanceId, isHubWorkspace, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isSelfHostedInstance, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
25137
|
-
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, 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, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneInstanceDto,
|
|
25098
|
+
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, BaseConnectionAttemptLog, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionAttemptLogApiResponse, 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, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateMembraneInstanceRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreateOrgWorkspaceRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CreateWorkspaceRequest, 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, FindConnectionAttemptLogsQuery, FindConnectionAttemptLogsResponse, 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, GenerateWorkspaceAccessTokenRequest, GenerateWorkspaceAccessTokenResponse, GeneratedConnectorOption, GenericFunctionDefinition, GetWorkspaceQuery, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HUB_INSTANCE_ID, 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, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListMembraneInstancesQuery, ListMembraneInstancesResponse, ListOrgWorkspacesQuery, ListOrgWorkspacesResponse, ListPublicConnectorsQuery, ListPublicPackagesQuery, ListWorkspacesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MEMBRANE_SESSION_ID_HEADER, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MembraneInstance, MembraneInstanceAdmin, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_TOKEN_TYPES, OAUTH_TOKEN_TYPE_CONNECTION, OAUTH_TOKEN_TYPE_PLATFORM_USER, OAUTH_TOKEN_TYPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInstance, OrgInstanceType, OrgInstanceWorkspace, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUpdateRequest, 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, PatchUserWorkspaceSettings, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RotateOrgWorkspaceSecretResponse, 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, UpdateMembraneInstanceRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpdateWorkspaceLimitsRequest, UpdateWorkspaceRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_DATABASE_RECORD_COLLECTIONS, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_ELEMENT_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceAiCreditLimits, WorkspaceEditableFields, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingData, 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, formatSessionCost, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isHubInstanceId, isHubWorkspace, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isSelfHostedInstance, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
25099
|
+
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, AuthContextSettings, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, 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, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneInstanceDto, OAuthTokenType, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PendingQueueCount, PendingTasksSummary, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkerTypeFilter, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|