@membranehq/sdk 0.28.0 → 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 +13 -0
- package/dist/bundle.js +160 -119
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +1 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +1 -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 +0 -1
- 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 +2 -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 +6 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/index.d.ts +1 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +1 -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 +1 -0
- package/dist/dts/workspace-elements/base/connectors/functions.d.ts +1 -1
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +2 -0
- 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 +240 -324
- package/dist/index.browser.d.ts +240 -324
- package/dist/index.browser.js +119 -64
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +109 -60
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +240 -324
- package/dist/index.node.d.ts +240 -324
- package/dist/index.node.js +119 -64
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +109 -60
- 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;
|
|
@@ -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,6 +8173,7 @@ 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>>;
|
|
@@ -10818,19 +10821,19 @@ declare const AiAgentAudience: z.ZodEnum<{
|
|
|
10818
10821
|
type AiAgentAudience = ConnectedProductAudience;
|
|
10819
10822
|
declare const AiAgentType: z.ZodEnum<{
|
|
10820
10823
|
custom: "custom";
|
|
10824
|
+
cursor: "cursor";
|
|
10825
|
+
"claude-code": "claude-code";
|
|
10826
|
+
codex: "codex";
|
|
10821
10827
|
openclaw: "openclaw";
|
|
10828
|
+
copilot: "copilot";
|
|
10829
|
+
windsurf: "windsurf";
|
|
10822
10830
|
claude: "claude";
|
|
10823
10831
|
chatgpt: "chatgpt";
|
|
10824
10832
|
}>;
|
|
10825
10833
|
type AiAgentType = z.infer<typeof AiAgentType>;
|
|
10826
10834
|
declare const AiAgentParameters: z.ZodObject<{
|
|
10827
|
-
agentType: z.ZodOptional<z.
|
|
10828
|
-
|
|
10829
|
-
openclaw: "openclaw";
|
|
10830
|
-
claude: "claude";
|
|
10831
|
-
chatgpt: "chatgpt";
|
|
10832
|
-
}>>;
|
|
10833
|
-
}, z.core.$strip>;
|
|
10835
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
10836
|
+
}, z.core.$loose>;
|
|
10834
10837
|
type AiAgentParameters = z.infer<typeof AiAgentParameters>;
|
|
10835
10838
|
declare const BaseConnectedProduct: z.ZodObject<{
|
|
10836
10839
|
id: z.ZodString;
|
|
@@ -10845,13 +10848,8 @@ declare const BaseConnectedProduct: z.ZodObject<{
|
|
|
10845
10848
|
personal: "personal";
|
|
10846
10849
|
}>>;
|
|
10847
10850
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
10848
|
-
agentType: z.ZodOptional<z.
|
|
10849
|
-
|
|
10850
|
-
openclaw: "openclaw";
|
|
10851
|
-
claude: "claude";
|
|
10852
|
-
chatgpt: "chatgpt";
|
|
10853
|
-
}>>;
|
|
10854
|
-
}, z.core.$strip>>;
|
|
10851
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
10852
|
+
}, z.core.$loose>>;
|
|
10855
10853
|
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
10856
10854
|
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
10857
10855
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -10859,6 +10857,26 @@ declare const BaseConnectedProduct: z.ZodObject<{
|
|
|
10859
10857
|
}, z.core.$strip>;
|
|
10860
10858
|
type BaseConnectedProduct = z.infer<typeof BaseConnectedProduct>;
|
|
10861
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
|
+
|
|
10862
10880
|
declare const PaginationQuery: z.ZodObject<{
|
|
10863
10881
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10864
10882
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -11180,6 +11198,7 @@ declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
11180
11198
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11181
11199
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
11182
11200
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11201
|
+
connected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11183
11202
|
disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11184
11203
|
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11185
11204
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -11275,6 +11294,7 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
11275
11294
|
id: z.ZodString;
|
|
11276
11295
|
name: z.ZodString;
|
|
11277
11296
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11297
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11278
11298
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11279
11299
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11280
11300
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -11376,6 +11396,7 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
11376
11396
|
id: z.ZodString;
|
|
11377
11397
|
name: z.ZodString;
|
|
11378
11398
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11399
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11379
11400
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11380
11401
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11381
11402
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -11485,6 +11506,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11485
11506
|
id: z.ZodString;
|
|
11486
11507
|
name: z.ZodString;
|
|
11487
11508
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11509
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11488
11510
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11489
11511
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11490
11512
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -11617,6 +11639,7 @@ declare const ConnectPayload: z.ZodObject<{
|
|
|
11617
11639
|
redirectUri: z.ZodOptional<z.ZodString>;
|
|
11618
11640
|
customState: z.ZodOptional<z.ZodString>;
|
|
11619
11641
|
connectionRequestId: z.ZodOptional<z.ZodString>;
|
|
11642
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
11620
11643
|
}, z.core.$strip>;
|
|
11621
11644
|
type ConnectPayload = z.infer<typeof ConnectPayload>;
|
|
11622
11645
|
declare const ConnectUIOptions: z.ZodObject<{
|
|
@@ -11624,6 +11647,7 @@ declare const ConnectUIOptions: z.ZodObject<{
|
|
|
11624
11647
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11625
11648
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
11626
11649
|
name: z.ZodOptional<z.ZodString>;
|
|
11650
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
11627
11651
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
11628
11652
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11629
11653
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11780,6 +11804,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
11780
11804
|
id: z.ZodString;
|
|
11781
11805
|
name: z.ZodString;
|
|
11782
11806
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11807
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11783
11808
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11784
11809
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11785
11810
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -11983,6 +12008,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
11983
12008
|
id: z.ZodString;
|
|
11984
12009
|
name: z.ZodString;
|
|
11985
12010
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12011
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11986
12012
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11987
12013
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11988
12014
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -12337,6 +12363,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12337
12363
|
id: z.ZodString;
|
|
12338
12364
|
name: z.ZodString;
|
|
12339
12365
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12366
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12340
12367
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
12341
12368
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
12342
12369
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -12696,6 +12723,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
12696
12723
|
id: z.ZodString;
|
|
12697
12724
|
name: z.ZodString;
|
|
12698
12725
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12726
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12699
12727
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
12700
12728
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
12701
12729
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -13413,6 +13441,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13413
13441
|
id: z.ZodString;
|
|
13414
13442
|
name: z.ZodString;
|
|
13415
13443
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13444
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
13416
13445
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
13417
13446
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
13418
13447
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -14017,6 +14046,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14017
14046
|
id: z.ZodString;
|
|
14018
14047
|
name: z.ZodString;
|
|
14019
14048
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14049
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14020
14050
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
14021
14051
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
14022
14052
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -14540,6 +14570,7 @@ declare class ConnectionAccessor {
|
|
|
14540
14570
|
updatedAt: string;
|
|
14541
14571
|
userId: string;
|
|
14542
14572
|
isTest?: boolean | undefined;
|
|
14573
|
+
connected?: boolean | undefined;
|
|
14543
14574
|
disconnected?: boolean | undefined;
|
|
14544
14575
|
isDefunct?: boolean | undefined;
|
|
14545
14576
|
state?: WorkspaceElementState | undefined;
|
|
@@ -14862,6 +14893,7 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
14862
14893
|
id: z.ZodString;
|
|
14863
14894
|
name: z.ZodString;
|
|
14864
14895
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14896
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14865
14897
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
14866
14898
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
14867
14899
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -15134,6 +15166,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15134
15166
|
id: z.ZodString;
|
|
15135
15167
|
name: z.ZodString;
|
|
15136
15168
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15169
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15137
15170
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
15138
15171
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
15139
15172
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -15437,6 +15470,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15437
15470
|
id: z.ZodString;
|
|
15438
15471
|
name: z.ZodString;
|
|
15439
15472
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15473
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15440
15474
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
15441
15475
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
15442
15476
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -15797,6 +15831,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
15797
15831
|
updatedAt: string;
|
|
15798
15832
|
userId: string;
|
|
15799
15833
|
isTest?: boolean | undefined;
|
|
15834
|
+
connected?: boolean | undefined;
|
|
15800
15835
|
disconnected?: boolean | undefined;
|
|
15801
15836
|
isDefunct?: boolean | undefined;
|
|
15802
15837
|
state?: WorkspaceElementState | undefined;
|
|
@@ -16485,6 +16520,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16485
16520
|
id: z.ZodString;
|
|
16486
16521
|
name: z.ZodString;
|
|
16487
16522
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
16523
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
16488
16524
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
16489
16525
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
16490
16526
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -17540,6 +17576,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17540
17576
|
id: z.ZodString;
|
|
17541
17577
|
name: z.ZodString;
|
|
17542
17578
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17579
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17543
17580
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
17544
17581
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
17545
17582
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -17761,6 +17798,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17761
17798
|
id: z.ZodString;
|
|
17762
17799
|
name: z.ZodString;
|
|
17763
17800
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17801
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17764
17802
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
17765
17803
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
17766
17804
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -18083,6 +18121,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18083
18121
|
id: z.ZodString;
|
|
18084
18122
|
name: z.ZodString;
|
|
18085
18123
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18124
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18086
18125
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18087
18126
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18088
18127
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -18524,6 +18563,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18524
18563
|
id: z.ZodString;
|
|
18525
18564
|
name: z.ZodString;
|
|
18526
18565
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18566
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18527
18567
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18528
18568
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18529
18569
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -18707,6 +18747,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
18707
18747
|
id: z.ZodString;
|
|
18708
18748
|
name: z.ZodString;
|
|
18709
18749
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18750
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18710
18751
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18711
18752
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18712
18753
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -18894,6 +18935,7 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
18894
18935
|
id: z.ZodString;
|
|
18895
18936
|
name: z.ZodString;
|
|
18896
18937
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18938
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18897
18939
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
18898
18940
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
18899
18941
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -19023,6 +19065,7 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
19023
19065
|
id: z.ZodString;
|
|
19024
19066
|
name: z.ZodString;
|
|
19025
19067
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
19068
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
19026
19069
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
19027
19070
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
19028
19071
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -19112,13 +19155,8 @@ declare const CreateConnectedProductRequest: z.ZodObject<{
|
|
|
19112
19155
|
personal: "personal";
|
|
19113
19156
|
}>>;
|
|
19114
19157
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
19115
|
-
agentType: z.ZodOptional<z.
|
|
19116
|
-
|
|
19117
|
-
openclaw: "openclaw";
|
|
19118
|
-
claude: "claude";
|
|
19119
|
-
chatgpt: "chatgpt";
|
|
19120
|
-
}>>;
|
|
19121
|
-
}, z.core.$strip>>;
|
|
19158
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
19159
|
+
}, z.core.$loose>>;
|
|
19122
19160
|
}, z.core.$strip>;
|
|
19123
19161
|
type CreateConnectedProductRequest = z.infer<typeof CreateConnectedProductRequest>;
|
|
19124
19162
|
declare const UpdateConnectedProductRequest: z.ZodObject<{
|
|
@@ -19133,13 +19171,8 @@ declare const UpdateConnectedProductRequest: z.ZodObject<{
|
|
|
19133
19171
|
personal: "personal";
|
|
19134
19172
|
}>>;
|
|
19135
19173
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
19136
|
-
agentType: z.ZodOptional<z.
|
|
19137
|
-
|
|
19138
|
-
openclaw: "openclaw";
|
|
19139
|
-
claude: "claude";
|
|
19140
|
-
chatgpt: "chatgpt";
|
|
19141
|
-
}>>;
|
|
19142
|
-
}, z.core.$strip>>;
|
|
19174
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
19175
|
+
}, z.core.$loose>>;
|
|
19143
19176
|
}, z.core.$strip>;
|
|
19144
19177
|
type UpdateConnectedProductRequest = z.infer<typeof UpdateConnectedProductRequest>;
|
|
19145
19178
|
declare const FindConnectedProductsQuery: z.ZodObject<{
|
|
@@ -19170,13 +19203,8 @@ declare const ConnectedProductApiResponse: z.ZodObject<{
|
|
|
19170
19203
|
personal: "personal";
|
|
19171
19204
|
}>>;
|
|
19172
19205
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
19173
|
-
agentType: z.ZodOptional<z.
|
|
19174
|
-
|
|
19175
|
-
openclaw: "openclaw";
|
|
19176
|
-
claude: "claude";
|
|
19177
|
-
chatgpt: "chatgpt";
|
|
19178
|
-
}>>;
|
|
19179
|
-
}, z.core.$strip>>;
|
|
19206
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
19207
|
+
}, z.core.$loose>>;
|
|
19180
19208
|
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
19181
19209
|
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
19182
19210
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -19184,6 +19212,59 @@ declare const ConnectedProductApiResponse: z.ZodObject<{
|
|
|
19184
19212
|
}, z.core.$strip>;
|
|
19185
19213
|
type ConnectedProductApiResponse = z.infer<typeof ConnectedProductApiResponse>;
|
|
19186
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
|
+
|
|
19187
19268
|
declare class DependencyError extends MembraneError {
|
|
19188
19269
|
constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
|
|
19189
19270
|
}
|
|
@@ -19322,7 +19403,6 @@ declare const AgentSession: z.ZodObject<{
|
|
|
19322
19403
|
summary: z.ZodOptional<z.ZodString>;
|
|
19323
19404
|
cost: z.ZodOptional<z.ZodNumber>;
|
|
19324
19405
|
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
19325
|
-
usage: z.ZodOptional<z.ZodNumber>;
|
|
19326
19406
|
hasWorker: z.ZodBoolean;
|
|
19327
19407
|
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
19328
19408
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
@@ -19428,8 +19508,8 @@ declare function parseMembraneElementPath(relativePath: string): {
|
|
|
19428
19508
|
key: string;
|
|
19429
19509
|
integrationKey?: string;
|
|
19430
19510
|
} | undefined;
|
|
19431
|
-
declare function getConnectorSpecPath(
|
|
19432
|
-
declare function getConnectorVersionPath(
|
|
19511
|
+
declare function getConnectorSpecPath(connectorUuid: string): string;
|
|
19512
|
+
declare function getConnectorVersionPath(connectorUuid: string, version: string): string;
|
|
19433
19513
|
|
|
19434
19514
|
declare enum AlertStatus {
|
|
19435
19515
|
ONGOING = "ongoing",
|
|
@@ -21003,7 +21083,6 @@ interface WorkspaceElementChangeInfo {
|
|
|
21003
21083
|
interface WorkspaceExportComparisonResult {
|
|
21004
21084
|
comparison: WorkspaceExportComparison;
|
|
21005
21085
|
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
21006
|
-
sourceUuidByTargetUuid: Map<string, string>;
|
|
21007
21086
|
diff?: string;
|
|
21008
21087
|
}
|
|
21009
21088
|
interface WorkspaceExportComparisonOptions {
|
|
@@ -21011,7 +21090,6 @@ interface WorkspaceExportComparisonOptions {
|
|
|
21011
21090
|
includeDiff?: boolean;
|
|
21012
21091
|
}
|
|
21013
21092
|
declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
21014
|
-
declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
|
21015
21093
|
|
|
21016
21094
|
declare const IneligibilityReasonSchema: z.ZodEnum<{
|
|
21017
21095
|
disposable: "disposable";
|
|
@@ -21422,6 +21500,7 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21422
21500
|
}, z.core.$strip>>;
|
|
21423
21501
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21424
21502
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
21503
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
21425
21504
|
}, z.core.$strip>;
|
|
21426
21505
|
type WorkspaceEditableFields = z.infer<typeof WorkspaceEditableFields>;
|
|
21427
21506
|
declare const OrgWorkspace: z.ZodObject<{
|
|
@@ -21696,6 +21775,7 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21696
21775
|
}, z.core.$strip>>;
|
|
21697
21776
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21698
21777
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
21778
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
21699
21779
|
}, z.core.$strip>;
|
|
21700
21780
|
type OrgWorkspace = z.infer<typeof OrgWorkspace>;
|
|
21701
21781
|
declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
@@ -21959,16 +22039,90 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
21959
22039
|
}, z.core.$strip>>;
|
|
21960
22040
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21961
22041
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22042
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
21962
22043
|
}, z.core.$strip>;
|
|
21963
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>;
|
|
21964
22069
|
declare const OrgWorkspaceUser: z.ZodObject<{
|
|
21965
22070
|
id: z.ZodString;
|
|
21966
22071
|
workspaceId: z.ZodString;
|
|
21967
22072
|
testCustomerId: z.ZodString;
|
|
21968
22073
|
userId: z.ZodString;
|
|
21969
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>>;
|
|
21970
22098
|
}, z.core.$strip>;
|
|
21971
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>;
|
|
21972
22126
|
declare const CreateOrgRequest: z.ZodObject<{
|
|
21973
22127
|
name: z.ZodString;
|
|
21974
22128
|
website: z.ZodOptional<z.ZodString>;
|
|
@@ -22433,6 +22587,7 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22433
22587
|
}, z.core.$strip>>;
|
|
22434
22588
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22435
22589
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22590
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
22436
22591
|
}, z.core.$strip>>;
|
|
22437
22592
|
cursor: z.ZodOptional<z.ZodString>;
|
|
22438
22593
|
}, z.core.$strip>;
|
|
@@ -22739,285 +22894,37 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22739
22894
|
}, z.core.$strip>>;
|
|
22740
22895
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22741
22896
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22897
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
22742
22898
|
}, z.core.$strip>>;
|
|
22743
|
-
|
|
22744
|
-
id: z.ZodString;
|
|
22745
|
-
name: z.ZodString;
|
|
22746
|
-
orgId: z.ZodString;
|
|
22747
|
-
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22748
|
-
key: z.ZodString;
|
|
22749
|
-
secret: z.ZodString;
|
|
22750
|
-
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22751
|
-
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22752
|
-
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22753
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22754
|
-
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22755
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
22756
|
-
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22757
|
-
limits: z.ZodOptional<z.ZodObject<{
|
|
22758
|
-
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
22759
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22760
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22761
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22762
|
-
}, z.core.$strip>>;
|
|
22763
|
-
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22764
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22765
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22766
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22767
|
-
}, z.core.$strip>>;
|
|
22768
|
-
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22769
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22770
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22771
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22772
|
-
}, z.core.$strip>>;
|
|
22773
|
-
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
22774
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22775
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22776
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22777
|
-
}, z.core.$strip>>;
|
|
22778
|
-
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22779
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22780
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22781
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22782
|
-
}, z.core.$strip>>;
|
|
22783
|
-
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
22784
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22785
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22786
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22787
|
-
}, z.core.$strip>>;
|
|
22788
|
-
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
22789
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22790
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22791
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22792
|
-
}, z.core.$strip>>;
|
|
22793
|
-
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
22794
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22795
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22796
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22797
|
-
}, z.core.$strip>>;
|
|
22798
|
-
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
22799
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22800
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22801
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22802
|
-
}, z.core.$strip>>;
|
|
22803
|
-
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22804
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22805
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22806
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22807
|
-
}, z.core.$strip>>;
|
|
22808
|
-
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
22809
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22810
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22811
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22812
|
-
}, z.core.$strip>>;
|
|
22813
|
-
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
22814
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22815
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22816
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22817
|
-
}, z.core.$strip>>;
|
|
22818
|
-
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
22819
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22820
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22821
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22822
|
-
}, z.core.$strip>>;
|
|
22823
|
-
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
22824
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22825
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22826
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22827
|
-
}, z.core.$strip>>;
|
|
22828
|
-
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
22829
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22830
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22831
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22832
|
-
}, z.core.$strip>>;
|
|
22833
|
-
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22834
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22835
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22836
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22837
|
-
}, z.core.$strip>>;
|
|
22838
|
-
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22839
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22840
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22841
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22842
|
-
}, z.core.$strip>>;
|
|
22843
|
-
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22844
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22845
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22846
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22847
|
-
}, z.core.$strip>>;
|
|
22848
|
-
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22849
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22850
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22851
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22852
|
-
}, z.core.$strip>>;
|
|
22853
|
-
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22854
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22855
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22856
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22857
|
-
}, z.core.$strip>>;
|
|
22858
|
-
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22859
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22860
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22861
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22862
|
-
}, z.core.$strip>>;
|
|
22863
|
-
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
22864
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22865
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22866
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22867
|
-
}, z.core.$strip>>;
|
|
22868
|
-
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22869
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22870
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22871
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22872
|
-
}, z.core.$strip>>;
|
|
22873
|
-
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
22874
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22875
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22876
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22877
|
-
}, z.core.$strip>>;
|
|
22878
|
-
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
22879
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22880
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22881
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22882
|
-
}, z.core.$strip>>;
|
|
22883
|
-
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
22884
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22885
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22886
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22887
|
-
}, z.core.$strip>>;
|
|
22888
|
-
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
22889
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22890
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22891
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22892
|
-
}, z.core.$strip>>;
|
|
22893
|
-
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
22894
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22895
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22896
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22897
|
-
}, z.core.$strip>>;
|
|
22898
|
-
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22899
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22900
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22901
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22902
|
-
}, z.core.$strip>>;
|
|
22903
|
-
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22904
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22905
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22906
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22907
|
-
}, z.core.$strip>>;
|
|
22908
|
-
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22909
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22910
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22911
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22912
|
-
}, z.core.$strip>>;
|
|
22913
|
-
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22914
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22915
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22916
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22917
|
-
}, z.core.$strip>>;
|
|
22918
|
-
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22919
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22920
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22921
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22922
|
-
}, z.core.$strip>>;
|
|
22923
|
-
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22924
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22925
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22926
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22927
|
-
}, z.core.$strip>>;
|
|
22928
|
-
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22929
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22930
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22931
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22932
|
-
}, z.core.$strip>>;
|
|
22933
|
-
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22934
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22935
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22936
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22937
|
-
}, z.core.$strip>>;
|
|
22938
|
-
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22939
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22940
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22941
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22942
|
-
}, z.core.$strip>>;
|
|
22943
|
-
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22944
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22945
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22946
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22947
|
-
}, z.core.$strip>>;
|
|
22948
|
-
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
22949
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22950
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22951
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22952
|
-
}, z.core.$strip>>;
|
|
22953
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
22954
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
22955
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22956
|
-
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22957
|
-
}, z.core.$strip>>;
|
|
22958
|
-
}, z.core.$strip>>;
|
|
22959
|
-
settings: z.ZodOptional<z.ZodObject<{
|
|
22960
|
-
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22961
|
-
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22962
|
-
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22963
|
-
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22964
|
-
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22965
|
-
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22966
|
-
}, z.core.$strip>>;
|
|
22967
|
-
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22968
|
-
name: z.ZodString;
|
|
22969
|
-
publicKey: z.ZodString;
|
|
22970
|
-
}, z.core.$strip>>>;
|
|
22971
|
-
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
22972
|
-
webhookUri: z.ZodOptional<z.ZodString>;
|
|
22973
|
-
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22974
|
-
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
22975
|
-
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
22976
|
-
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
22977
|
-
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
22978
|
-
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
22979
|
-
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
22980
|
-
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
22981
|
-
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
22982
|
-
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
22983
|
-
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
22984
|
-
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
22985
|
-
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
22986
|
-
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
22987
|
-
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
22988
|
-
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
22989
|
-
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22990
|
-
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22991
|
-
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22992
|
-
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22993
|
-
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22994
|
-
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22995
|
-
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
22996
|
-
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22997
|
-
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22998
|
-
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22999
|
-
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
23000
|
-
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
23001
|
-
parallelApiRequests: AlertType.parallelApiRequests;
|
|
23002
|
-
testAlert: AlertType.testAlert;
|
|
23003
|
-
}>, z.ZodOptional<z.ZodObject<{
|
|
23004
|
-
internal: z.ZodLiteral<true>;
|
|
23005
|
-
webhook: z.ZodOptional<z.ZodObject<{
|
|
23006
|
-
enabled: z.ZodBoolean;
|
|
23007
|
-
}, z.core.$strip>>;
|
|
23008
|
-
email: z.ZodOptional<z.ZodObject<{
|
|
23009
|
-
enabled: z.ZodBoolean;
|
|
23010
|
-
}, z.core.$strip>>;
|
|
23011
|
-
}, z.core.$strip>>>>;
|
|
23012
|
-
}, z.core.$strip>>;
|
|
23013
|
-
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23014
|
-
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
23015
|
-
}, z.core.$strip>>>;
|
|
22899
|
+
hasWorkspaces: z.ZodOptional<z.ZodBoolean>;
|
|
23016
22900
|
workspaceUser: z.ZodOptional<z.ZodObject<{
|
|
23017
22901
|
id: z.ZodString;
|
|
23018
22902
|
workspaceId: z.ZodString;
|
|
23019
22903
|
userId: z.ZodString;
|
|
23020
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>>;
|
|
23021
22928
|
testCustomerId: z.ZodString;
|
|
23022
22929
|
}, z.core.$strip>>;
|
|
23023
22930
|
engineTestUser: z.ZodOptional<z.ZodObject<{
|
|
@@ -24256,9 +24163,10 @@ declare enum WebhookTypeEnum {
|
|
|
24256
24163
|
CONNECTOR_VERSION_PUBLISHED = "connector-version-published",
|
|
24257
24164
|
AGENT_SESSION_FINISHED = "agent-session-finished",
|
|
24258
24165
|
SEND_ALERT_EMAIL = "send-alert-email",
|
|
24259
|
-
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"
|
|
24260
24168
|
}
|
|
24261
|
-
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;
|
|
24262
24170
|
interface Webhook {
|
|
24263
24171
|
type: WebhookType;
|
|
24264
24172
|
url: string;
|
|
@@ -24501,6 +24409,8 @@ interface HandyScenarioTemplateElementApi {
|
|
|
24501
24409
|
} & Record<string, any>;
|
|
24502
24410
|
}
|
|
24503
24411
|
|
|
24412
|
+
declare function formatSessionCost(cost?: number | null): string;
|
|
24413
|
+
|
|
24504
24414
|
declare const SessionCredentials: z.ZodObject<{
|
|
24505
24415
|
accessKeyId: z.ZodString;
|
|
24506
24416
|
secretAccessKey: z.ZodString;
|
|
@@ -24892,11 +24802,16 @@ declare const ClientTokenListResponse: z.ZodObject<{
|
|
|
24892
24802
|
type ClientTokenListResponse = z.infer<typeof ClientTokenListResponse>;
|
|
24893
24803
|
|
|
24894
24804
|
declare const MEMBRANE_CLI_CLIENT_ID: "membrane-cli";
|
|
24895
|
-
declare const
|
|
24896
|
-
declare const
|
|
24897
|
-
declare const
|
|
24898
|
-
|
|
24899
|
-
|
|
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
|
+
}
|
|
24900
24815
|
declare const OAuthTokenResponse: z.ZodObject<{
|
|
24901
24816
|
access_token: z.ZodString;
|
|
24902
24817
|
token_type: z.ZodString;
|
|
@@ -24905,6 +24820,7 @@ declare const OAuthTokenResponse: z.ZodObject<{
|
|
|
24905
24820
|
default_workspace_key: z.ZodOptional<z.ZodString>;
|
|
24906
24821
|
default_tenant_key: z.ZodOptional<z.ZodString>;
|
|
24907
24822
|
email: z.ZodOptional<z.ZodString>;
|
|
24823
|
+
org_id: z.ZodOptional<z.ZodString>;
|
|
24908
24824
|
}, z.core.$strip>;
|
|
24909
24825
|
type OAuthTokenResponse = z.infer<typeof OAuthTokenResponse>;
|
|
24910
24826
|
|
|
@@ -25179,5 +25095,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
25179
25095
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
25180
25096
|
}
|
|
25181
25097
|
|
|
25182
|
-
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, 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_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 };
|
|
25183
|
-
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 };
|