@membranehq/sdk 0.28.1 → 0.28.2
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 +47 -4
- package/dist/bundle.js +73 -7
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/actions-accessors.d.ts +1 -0
- package/dist/dts/accessors/connections-accessors.d.ts +2 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +1 -0
- package/dist/dts/agent/session.d.ts +10 -1
- package/dist/dts/ai-gateway/models.d.ts +43 -0
- package/dist/dts/ai-gateway/models.test.d.ts +1 -0
- package/dist/dts/alerts/types.d.ts +7 -0
- package/dist/dts/api-client.d.ts +22 -3
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/membrane-instances/types.d.ts +19 -35
- package/dist/dts/membrane-instances/types.test.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +55 -11
- package/dist/dts/webhooks/types.d.ts +3 -2
- package/dist/dts/workspace-elements/api/act-api.d.ts +33 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +9 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +4 -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 +4 -1
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +3 -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 +112 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connection-requests/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/connections/index.d.ts +2 -0
- package/dist/dts/workspace-elements/types.d.ts +4 -1
- package/dist/dts/workspaces/api.d.ts +20 -0
- package/dist/dts/workspaces/compare.d.ts +2 -0
- package/dist/dts/workspaces/types.d.ts +29 -0
- package/dist/index.browser.d.mts +403 -55
- package/dist/index.browser.d.ts +403 -55
- package/dist/index.browser.js +230 -25
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +220 -26
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +403 -55
- package/dist/index.node.d.ts +403 -55
- package/dist/index.node.js +230 -25
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +220 -26
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.d.ts
CHANGED
|
@@ -170,7 +170,8 @@ declare enum WorkspaceElementState {
|
|
|
170
170
|
CLIENT_ACTION_REQUIRED = "CLIENT_ACTION_REQUIRED",
|
|
171
171
|
CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
|
|
172
172
|
SETUP_FAILED = "SETUP_FAILED",
|
|
173
|
-
READY = "READY"
|
|
173
|
+
READY = "READY",
|
|
174
|
+
DISCONNECTING = "DISCONNECTING"
|
|
174
175
|
}
|
|
175
176
|
declare enum WorkspaceElementDependencyType {
|
|
176
177
|
Configuration = "CONFIGURATION",
|
|
@@ -285,6 +286,7 @@ declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
|
|
|
285
286
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
286
287
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
287
288
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
289
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
288
290
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
289
291
|
}, z.core.$strip>;
|
|
290
292
|
type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
|
|
@@ -292,6 +294,7 @@ declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
|
292
294
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
293
295
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
294
296
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
297
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
295
298
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
296
299
|
search: z.ZodOptional<z.ZodString>;
|
|
297
300
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -787,6 +790,7 @@ declare const CreateConnectionRequestPayload: z.ZodObject<{
|
|
|
787
790
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
788
791
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
789
792
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
793
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
790
794
|
name: z.ZodOptional<z.ZodString>;
|
|
791
795
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
792
796
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -805,6 +809,7 @@ declare const ConnectionRequest: z.ZodObject<{
|
|
|
805
809
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
806
810
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
807
811
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
812
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
808
813
|
name: z.ZodOptional<z.ZodString>;
|
|
809
814
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
810
815
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -8145,6 +8150,7 @@ declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
8145
8150
|
name: z.ZodOptional<z.ZodString>;
|
|
8146
8151
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8147
8152
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8153
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8148
8154
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
8149
8155
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8150
8156
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -8172,6 +8178,7 @@ type ConnectionClientAction = z.infer<typeof ConnectionClientAction>;
|
|
|
8172
8178
|
declare const BaseConnection: z.ZodObject<{
|
|
8173
8179
|
id: z.ZodString;
|
|
8174
8180
|
name: z.ZodString;
|
|
8181
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8175
8182
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8176
8183
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
8177
8184
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10877,6 +10884,38 @@ declare const BaseConnectionAttemptLog: z.ZodObject<{
|
|
|
10877
10884
|
}, z.core.$strip>;
|
|
10878
10885
|
type BaseConnectionAttemptLog = z.infer<typeof BaseConnectionAttemptLog>;
|
|
10879
10886
|
|
|
10887
|
+
declare const ActApiDispatch: z.ZodObject<{
|
|
10888
|
+
method: z.ZodEnum<typeof HttpRequestMethod>;
|
|
10889
|
+
path: z.ZodOptional<z.ZodString>;
|
|
10890
|
+
body: z.ZodOptional<z.ZodAny>;
|
|
10891
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10892
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
10893
|
+
url: z.ZodOptional<z.ZodString>;
|
|
10894
|
+
data: z.ZodOptional<z.ZodAny>;
|
|
10895
|
+
}, z.core.$strip>;
|
|
10896
|
+
type ActApiDispatch = z.infer<typeof ActApiDispatch>;
|
|
10897
|
+
declare const ActRequest: z.ZodObject<{
|
|
10898
|
+
id: z.ZodOptional<z.ZodString>;
|
|
10899
|
+
key: z.ZodOptional<z.ZodString>;
|
|
10900
|
+
api: z.ZodOptional<z.ZodObject<{
|
|
10901
|
+
method: z.ZodEnum<typeof HttpRequestMethod>;
|
|
10902
|
+
path: z.ZodOptional<z.ZodString>;
|
|
10903
|
+
body: z.ZodOptional<z.ZodAny>;
|
|
10904
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10905
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
10906
|
+
url: z.ZodOptional<z.ZodString>;
|
|
10907
|
+
data: z.ZodOptional<z.ZodAny>;
|
|
10908
|
+
}, z.core.$strip>>;
|
|
10909
|
+
code: z.ZodOptional<z.ZodString>;
|
|
10910
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
10911
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
10912
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
10913
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
10914
|
+
input: z.ZodOptional<z.ZodAny>;
|
|
10915
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10916
|
+
}, z.core.$strict>;
|
|
10917
|
+
type ActRequest = z.infer<typeof ActRequest>;
|
|
10918
|
+
|
|
10880
10919
|
declare const PaginationQuery: z.ZodObject<{
|
|
10881
10920
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10882
10921
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -10969,24 +11008,42 @@ declare function isBlob(value: unknown): value is BlobLike;
|
|
|
10969
11008
|
declare function truncateData(data: any, depth?: number): any;
|
|
10970
11009
|
|
|
10971
11010
|
declare const axios: _axios.AxiosInstance;
|
|
10972
|
-
interface
|
|
10973
|
-
token?: string;
|
|
10974
|
-
fetchToken?: () => Promise<string>;
|
|
11011
|
+
interface BaseClientOptions {
|
|
10975
11012
|
credentials?: any;
|
|
10976
11013
|
fetchCredentials?: () => Promise<any>;
|
|
10977
11014
|
apiUri?: string;
|
|
10978
11015
|
uiUri?: string;
|
|
11016
|
+
}
|
|
11017
|
+
interface TokenBasedClientOptions extends BaseClientOptions {
|
|
11018
|
+
token?: string;
|
|
11019
|
+
fetchToken?: () => Promise<string>;
|
|
11020
|
+
workspaceKey?: never;
|
|
11021
|
+
workspaceSecret?: never;
|
|
11022
|
+
tenantKey?: never;
|
|
10979
11023
|
accessToken?: string;
|
|
10980
11024
|
}
|
|
11025
|
+
interface WorkspaceCredentialClientOptions extends BaseClientOptions {
|
|
11026
|
+
token?: never;
|
|
11027
|
+
fetchToken?: never;
|
|
11028
|
+
workspaceKey: string;
|
|
11029
|
+
workspaceSecret: string;
|
|
11030
|
+
tenantKey: string;
|
|
11031
|
+
accessToken?: never;
|
|
11032
|
+
}
|
|
11033
|
+
type MembraneClientOptions = TokenBasedClientOptions | WorkspaceCredentialClientOptions;
|
|
10981
11034
|
declare class MembraneApiClient {
|
|
10982
11035
|
apiUri: string;
|
|
10983
11036
|
uiUri: string;
|
|
10984
11037
|
token?: string;
|
|
10985
11038
|
protected fetchToken?: () => Promise<string>;
|
|
10986
11039
|
private logs;
|
|
11040
|
+
private _workspaceKey?;
|
|
11041
|
+
private _workspaceSecret?;
|
|
11042
|
+
private _tenantKey?;
|
|
10987
11043
|
constructor(options?: MembraneClientOptions);
|
|
10988
11044
|
setCredentials(credentials: any): Promise<any>;
|
|
10989
11045
|
getToken(): Promise<string>;
|
|
11046
|
+
private mintToken;
|
|
10990
11047
|
get<T = any>(uri: string, queryParams?: Record<string, any>, options?: AxiosRequestConfig): Promise<T>;
|
|
10991
11048
|
post<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
10992
11049
|
put<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
@@ -11157,6 +11214,7 @@ declare class ActionAccessor<RunInput = any, RunOutput = any> extends ElementAcc
|
|
|
11157
11214
|
run(input?: RunInput, options?: {
|
|
11158
11215
|
integrationKey?: string;
|
|
11159
11216
|
connectionId?: string;
|
|
11217
|
+
connectionKey?: string;
|
|
11160
11218
|
}): Promise<ActionRunResponse<RunOutput>>;
|
|
11161
11219
|
}
|
|
11162
11220
|
declare class IntegrationLevelActionAccessor extends IntegrationLevelElementAccessor<ActionApiResponse, UpdateActionRequest> {
|
|
@@ -11216,6 +11274,7 @@ declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
11216
11274
|
name: z.ZodOptional<z.ZodString>;
|
|
11217
11275
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11218
11276
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
11277
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11219
11278
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11220
11279
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11221
11280
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -11235,6 +11294,7 @@ declare const UpdateConnectionRequest: z.ZodObject<{
|
|
|
11235
11294
|
name: z.ZodOptional<z.ZodString>;
|
|
11236
11295
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11237
11296
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
11297
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11238
11298
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11239
11299
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11240
11300
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -11251,6 +11311,7 @@ declare const UpdateConnectionRequest: z.ZodObject<{
|
|
|
11251
11311
|
}, z.core.$strip>;
|
|
11252
11312
|
type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
11253
11313
|
declare const ConnectionExportProperties: z.ZodObject<{
|
|
11314
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11254
11315
|
name: z.ZodOptional<z.ZodString>;
|
|
11255
11316
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11256
11317
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -11288,11 +11349,13 @@ declare const ConnectionSelector: z.ZodObject<{
|
|
|
11288
11349
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
11289
11350
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11290
11351
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11352
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
11291
11353
|
}, z.core.$strip>;
|
|
11292
11354
|
type ConnectionSelector = z.infer<typeof ConnectionSelector>;
|
|
11293
11355
|
declare const ConnectionApiResponse: z.ZodObject<{
|
|
11294
11356
|
id: z.ZodString;
|
|
11295
11357
|
name: z.ZodString;
|
|
11358
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11296
11359
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11297
11360
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11298
11361
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11395,6 +11458,7 @@ type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
|
11395
11458
|
declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
11396
11459
|
id: z.ZodString;
|
|
11397
11460
|
name: z.ZodString;
|
|
11461
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11398
11462
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11399
11463
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11400
11464
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11505,6 +11569,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11505
11569
|
connection: z.ZodObject<{
|
|
11506
11570
|
id: z.ZodString;
|
|
11507
11571
|
name: z.ZodString;
|
|
11572
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11508
11573
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11509
11574
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11510
11575
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11630,6 +11695,7 @@ declare const ConnectPayload: z.ZodObject<{
|
|
|
11630
11695
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
11631
11696
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11632
11697
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11698
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
11633
11699
|
name: z.ZodOptional<z.ZodString>;
|
|
11634
11700
|
input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11635
11701
|
connectionParameters: z.ZodOptional<z.ZodAny>;
|
|
@@ -11648,6 +11714,7 @@ declare const ConnectUIOptions: z.ZodObject<{
|
|
|
11648
11714
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
11649
11715
|
name: z.ZodOptional<z.ZodString>;
|
|
11650
11716
|
intent: z.ZodOptional<z.ZodString>;
|
|
11717
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
11651
11718
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
11652
11719
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11653
11720
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11803,6 +11870,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
11803
11870
|
connection: z.ZodOptional<z.ZodObject<{
|
|
11804
11871
|
id: z.ZodString;
|
|
11805
11872
|
name: z.ZodString;
|
|
11873
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11806
11874
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11807
11875
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11808
11876
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12007,6 +12075,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12007
12075
|
connection: z.ZodOptional<z.ZodObject<{
|
|
12008
12076
|
id: z.ZodString;
|
|
12009
12077
|
name: z.ZodString;
|
|
12078
|
+
key: z.ZodOptional<z.ZodString>;
|
|
12010
12079
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12011
12080
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12012
12081
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12362,6 +12431,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12362
12431
|
connection: z.ZodOptional<z.ZodObject<{
|
|
12363
12432
|
id: z.ZodString;
|
|
12364
12433
|
name: z.ZodString;
|
|
12434
|
+
key: z.ZodOptional<z.ZodString>;
|
|
12365
12435
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12366
12436
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12367
12437
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12722,6 +12792,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
12722
12792
|
connection: z.ZodOptional<z.ZodObject<{
|
|
12723
12793
|
id: z.ZodString;
|
|
12724
12794
|
name: z.ZodString;
|
|
12795
|
+
key: z.ZodOptional<z.ZodString>;
|
|
12725
12796
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12726
12797
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12727
12798
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12849,6 +12920,7 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
12849
12920
|
integration: "integration";
|
|
12850
12921
|
universal: "universal";
|
|
12851
12922
|
}>>;
|
|
12923
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
12852
12924
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
12853
12925
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12854
12926
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13440,6 +13512,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13440
13512
|
connection: z.ZodOptional<z.ZodObject<{
|
|
13441
13513
|
id: z.ZodString;
|
|
13442
13514
|
name: z.ZodString;
|
|
13515
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13443
13516
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13444
13517
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
13445
13518
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14045,6 +14118,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14045
14118
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14046
14119
|
id: z.ZodString;
|
|
14047
14120
|
name: z.ZodString;
|
|
14121
|
+
key: z.ZodOptional<z.ZodString>;
|
|
14048
14122
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14049
14123
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14050
14124
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14254,6 +14328,7 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
14254
14328
|
integration: "integration";
|
|
14255
14329
|
universal: "universal";
|
|
14256
14330
|
}>>;
|
|
14331
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
14257
14332
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14258
14333
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14259
14334
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14277,6 +14352,7 @@ declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
14277
14352
|
integration: "integration";
|
|
14278
14353
|
universal: "universal";
|
|
14279
14354
|
}>>;
|
|
14355
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
14280
14356
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14281
14357
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14282
14358
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14569,6 +14645,7 @@ declare class ConnectionAccessor {
|
|
|
14569
14645
|
createdAt: string;
|
|
14570
14646
|
updatedAt: string;
|
|
14571
14647
|
userId: string;
|
|
14648
|
+
key?: string | undefined;
|
|
14572
14649
|
isTest?: boolean | undefined;
|
|
14573
14650
|
connected?: boolean | undefined;
|
|
14574
14651
|
disconnected?: boolean | undefined;
|
|
@@ -14702,6 +14779,7 @@ declare function createOrUpdateConnection(options: {
|
|
|
14702
14779
|
connectorId?: string;
|
|
14703
14780
|
connectorVersion?: string;
|
|
14704
14781
|
connectionId?: string;
|
|
14782
|
+
connectionKey?: string;
|
|
14705
14783
|
allowMultipleConnections?: boolean;
|
|
14706
14784
|
connectionRequestId?: string;
|
|
14707
14785
|
apiUri: string;
|
|
@@ -14807,6 +14885,9 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
14807
14885
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
14808
14886
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
14809
14887
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
14888
|
+
connectors: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14889
|
+
externalApps: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14890
|
+
websearch: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14810
14891
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14811
14892
|
cursor: z.ZodOptional<z.ZodString>;
|
|
14812
14893
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -14892,6 +14973,7 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
14892
14973
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14893
14974
|
id: z.ZodString;
|
|
14894
14975
|
name: z.ZodString;
|
|
14976
|
+
key: z.ZodOptional<z.ZodString>;
|
|
14895
14977
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14896
14978
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14897
14979
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14950,6 +15032,114 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
14950
15032
|
}, z.core.$strip>>>;
|
|
14951
15033
|
}, z.core.$strip>;
|
|
14952
15034
|
type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
15035
|
+
declare const IntegrationListItem: z.ZodObject<{
|
|
15036
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
15037
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15038
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15039
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15040
|
+
name: z.ZodString;
|
|
15041
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
15042
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
15043
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
15044
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
15045
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15046
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15047
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
15048
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
15049
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
15050
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
15051
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15052
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
15053
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
15054
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
15055
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
15056
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
15057
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
15058
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
15059
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
15060
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
15061
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
15062
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15063
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15064
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
15065
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15066
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
15067
|
+
proxy: "proxy";
|
|
15068
|
+
"integration-app-token": "integration-app-token";
|
|
15069
|
+
"membrane-token": "membrane-token";
|
|
15070
|
+
oauth2: "oauth2";
|
|
15071
|
+
oauth1: "oauth1";
|
|
15072
|
+
"client-credentials": "client-credentials";
|
|
15073
|
+
}>>;
|
|
15074
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
15075
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
15076
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15077
|
+
}, z.core.$strip>>>;
|
|
15078
|
+
connection: z.ZodOptional<z.ZodObject<{
|
|
15079
|
+
id: z.ZodString;
|
|
15080
|
+
name: z.ZodString;
|
|
15081
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15082
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15083
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15084
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
15085
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
15086
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
15087
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
15088
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15089
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15090
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
15091
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
15092
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15093
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
15094
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
15095
|
+
createdAt: z.ZodString;
|
|
15096
|
+
updatedAt: z.ZodString;
|
|
15097
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
15098
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
15099
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
15100
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
15101
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
15102
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
15103
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15104
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15105
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15106
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
15107
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
15108
|
+
type: z.ZodEnum<{
|
|
15109
|
+
connect: "connect";
|
|
15110
|
+
"provide-input": "provide-input";
|
|
15111
|
+
}>;
|
|
15112
|
+
description: z.ZodString;
|
|
15113
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
15114
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
15115
|
+
}, z.core.$strip>>;
|
|
15116
|
+
userId: z.ZodString;
|
|
15117
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
15118
|
+
}, z.core.$strip>>;
|
|
15119
|
+
spec: z.ZodOptional<z.ZodAny>;
|
|
15120
|
+
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15121
|
+
key: z.ZodString;
|
|
15122
|
+
type: z.ZodEnum<{
|
|
15123
|
+
proxy: "proxy";
|
|
15124
|
+
"integration-app-token": "integration-app-token";
|
|
15125
|
+
"membrane-token": "membrane-token";
|
|
15126
|
+
oauth2: "oauth2";
|
|
15127
|
+
oauth1: "oauth1";
|
|
15128
|
+
"client-credentials": "client-credentials";
|
|
15129
|
+
}>;
|
|
15130
|
+
title: z.ZodOptional<z.ZodString>;
|
|
15131
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15132
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
15133
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
15134
|
+
schema: z.ZodOptional<z.ZodAny>;
|
|
15135
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
15136
|
+
}, z.core.$strip>>;
|
|
15137
|
+
}, z.core.$strip>>>;
|
|
15138
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15139
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
15140
|
+
appUri: z.ZodOptional<z.ZodString>;
|
|
15141
|
+
}, z.core.$strip>;
|
|
15142
|
+
type IntegrationListItem = z.infer<typeof IntegrationListItem>;
|
|
14953
15143
|
type Integration = IntegrationApiResponse;
|
|
14954
15144
|
|
|
14955
15145
|
declare const FieldMappingApiResponse: z.ZodObject<{
|
|
@@ -15165,6 +15355,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15165
15355
|
connection: z.ZodOptional<z.ZodObject<{
|
|
15166
15356
|
id: z.ZodString;
|
|
15167
15357
|
name: z.ZodString;
|
|
15358
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15168
15359
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15169
15360
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15170
15361
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15469,6 +15660,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15469
15660
|
connection: z.ZodOptional<z.ZodObject<{
|
|
15470
15661
|
id: z.ZodString;
|
|
15471
15662
|
name: z.ZodString;
|
|
15663
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15472
15664
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15473
15665
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15474
15666
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15575,6 +15767,7 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
15575
15767
|
integration: "integration";
|
|
15576
15768
|
universal: "universal";
|
|
15577
15769
|
}>>;
|
|
15770
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
15578
15771
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15579
15772
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15580
15773
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -15598,6 +15791,7 @@ declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
|
15598
15791
|
integration: "integration";
|
|
15599
15792
|
universal: "universal";
|
|
15600
15793
|
}>>;
|
|
15794
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
15601
15795
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15602
15796
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15603
15797
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -15830,6 +16024,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
15830
16024
|
createdAt: string;
|
|
15831
16025
|
updatedAt: string;
|
|
15832
16026
|
userId: string;
|
|
16027
|
+
key?: string | undefined;
|
|
15833
16028
|
isTest?: boolean | undefined;
|
|
15834
16029
|
connected?: boolean | undefined;
|
|
15835
16030
|
disconnected?: boolean | undefined;
|
|
@@ -15935,6 +16130,7 @@ declare const FindPackagesQuery: z.ZodObject<{
|
|
|
15935
16130
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
15936
16131
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
15937
16132
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16133
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
15938
16134
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15939
16135
|
search: z.ZodOptional<z.ZodString>;
|
|
15940
16136
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -16461,6 +16657,7 @@ declare const ListExternalEventSubscriptionsQuery: z.ZodObject<{
|
|
|
16461
16657
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16462
16658
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
16463
16659
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16660
|
+
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventSubscriptionStatus>>;
|
|
16464
16661
|
}, z.core.$strip>;
|
|
16465
16662
|
type ListExternalEventSubscriptionsQuery = z.infer<typeof ListExternalEventSubscriptionsQuery>;
|
|
16466
16663
|
declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
@@ -16519,6 +16716,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16519
16716
|
connection: z.ZodOptional<z.ZodObject<{
|
|
16520
16717
|
id: z.ZodString;
|
|
16521
16718
|
name: z.ZodString;
|
|
16719
|
+
key: z.ZodOptional<z.ZodString>;
|
|
16522
16720
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
16523
16721
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
16524
16722
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17005,6 +17203,7 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
17005
17203
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
17006
17204
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17007
17205
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17206
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
17008
17207
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17009
17208
|
search: z.ZodOptional<z.ZodString>;
|
|
17010
17209
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -17380,6 +17579,7 @@ declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
|
17380
17579
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
17381
17580
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17382
17581
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17582
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
17383
17583
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17384
17584
|
search: z.ZodOptional<z.ZodString>;
|
|
17385
17585
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -17403,6 +17603,7 @@ declare const FindActionInstancesQuery: z.ZodObject<{
|
|
|
17403
17603
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
17404
17604
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17405
17605
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17606
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
17406
17607
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17407
17608
|
search: z.ZodOptional<z.ZodString>;
|
|
17408
17609
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -17575,6 +17776,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17575
17776
|
connection: z.ZodOptional<z.ZodObject<{
|
|
17576
17777
|
id: z.ZodString;
|
|
17577
17778
|
name: z.ZodString;
|
|
17779
|
+
key: z.ZodOptional<z.ZodString>;
|
|
17578
17780
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17579
17781
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17580
17782
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17797,6 +17999,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17797
17999
|
connection: z.ZodOptional<z.ZodObject<{
|
|
17798
18000
|
id: z.ZodString;
|
|
17799
18001
|
name: z.ZodString;
|
|
18002
|
+
key: z.ZodOptional<z.ZodString>;
|
|
17800
18003
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17801
18004
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17802
18005
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18060,6 +18263,7 @@ declare const FindDataLinkTableInstanceLinksQuery: z.ZodObject<{
|
|
|
18060
18263
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
18061
18264
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18062
18265
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18266
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
18063
18267
|
id: z.ZodOptional<z.ZodString>;
|
|
18064
18268
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18065
18269
|
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
@@ -18120,6 +18324,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18120
18324
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18121
18325
|
id: z.ZodString;
|
|
18122
18326
|
name: z.ZodString;
|
|
18327
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18123
18328
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18124
18329
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18125
18330
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18562,6 +18767,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18562
18767
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18563
18768
|
id: z.ZodString;
|
|
18564
18769
|
name: z.ZodString;
|
|
18770
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18565
18771
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18566
18772
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18567
18773
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18746,6 +18952,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
18746
18952
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18747
18953
|
id: z.ZodString;
|
|
18748
18954
|
name: z.ZodString;
|
|
18955
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18749
18956
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18750
18957
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18751
18958
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18934,6 +19141,7 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
18934
19141
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18935
19142
|
id: z.ZodString;
|
|
18936
19143
|
name: z.ZodString;
|
|
19144
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18937
19145
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18938
19146
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18939
19147
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19064,6 +19272,7 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
19064
19272
|
connection: z.ZodOptional<z.ZodObject<{
|
|
19065
19273
|
id: z.ZodString;
|
|
19066
19274
|
name: z.ZodString;
|
|
19275
|
+
key: z.ZodOptional<z.ZodString>;
|
|
19067
19276
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
19068
19277
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
19069
19278
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19424,7 +19633,16 @@ declare const CreateAgentSession: z.ZodObject<{
|
|
|
19424
19633
|
prompt: z.ZodString;
|
|
19425
19634
|
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
19426
19635
|
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
19427
|
-
modelId: z.ZodOptional<z.
|
|
19636
|
+
modelId: z.ZodOptional<z.ZodEnum<{
|
|
19637
|
+
"anthropic/claude-sonnet-4.6": "anthropic/claude-sonnet-4.6";
|
|
19638
|
+
"anthropic/claude-opus-4.6": "anthropic/claude-opus-4.6";
|
|
19639
|
+
"anthropic/claude-sonnet-4.5": "anthropic/claude-sonnet-4.5";
|
|
19640
|
+
"anthropic/claude-opus-4.5": "anthropic/claude-opus-4.5";
|
|
19641
|
+
"openai/gpt-5.2": "openai/gpt-5.2";
|
|
19642
|
+
"openai/gpt-5-nano": "openai/gpt-5-nano";
|
|
19643
|
+
"google/gemini-3-pro-preview": "google/gemini-3-pro-preview";
|
|
19644
|
+
"moonshotai/kimi-k2.5": "moonshotai/kimi-k2.5";
|
|
19645
|
+
}>>;
|
|
19428
19646
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
19429
19647
|
promptAttachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19430
19648
|
title: z.ZodString;
|
|
@@ -19536,6 +19754,7 @@ declare enum AlertType {
|
|
|
19536
19754
|
parallelApiRequestsPerCustomer = "parallelApiRequestsPerCustomer",
|
|
19537
19755
|
engineCreditsExhaustionProjected = "engineCreditsExhaustionProjected",
|
|
19538
19756
|
engineCreditsExhaustionActual = "engineCreditsExhaustionActual",
|
|
19757
|
+
aiCreditsDebtAccumulated = "aiCreditsDebtAccumulated",
|
|
19539
19758
|
totalNumberOfDatabaseEntitiesPerCustomer = "totalNumberOfDatabaseEntitiesPerCustomer",
|
|
19540
19759
|
totalNumberOfCustomers = "totalNumberOfCustomers",
|
|
19541
19760
|
totalNumberOfConnections = "totalNumberOfConnections",
|
|
@@ -19572,6 +19791,7 @@ declare const ALERT_TYPE_CATEGORIES: {
|
|
|
19572
19791
|
readonly parallelApiRequestsPerCustomer: AlertCategory.CUSTOMER_RATE_LIMIT;
|
|
19573
19792
|
readonly engineCreditsExhaustionProjected: AlertCategory.USAGE;
|
|
19574
19793
|
readonly engineCreditsExhaustionActual: AlertCategory.USAGE;
|
|
19794
|
+
readonly aiCreditsDebtAccumulated: AlertCategory.USAGE;
|
|
19575
19795
|
readonly totalNumberOfDatabaseEntitiesPerCustomer: AlertCategory.WORKSPACE_SIZE;
|
|
19576
19796
|
readonly testAlert: AlertCategory.TEST;
|
|
19577
19797
|
readonly totalNumberOfCustomers: AlertCategory.WORKSPACE_SIZE;
|
|
@@ -19617,6 +19837,7 @@ declare const Alert: z.ZodObject<{
|
|
|
19617
19837
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19618
19838
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19619
19839
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
19840
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19620
19841
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19621
19842
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19622
19843
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19667,6 +19888,7 @@ declare const AlertSchema: z.ZodObject<{
|
|
|
19667
19888
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19668
19889
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19669
19890
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
19891
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19670
19892
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19671
19893
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19672
19894
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19726,6 +19948,7 @@ declare const AlertDeliverySettingsSchema: z.ZodObject<{
|
|
|
19726
19948
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19727
19949
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19728
19950
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
19951
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19729
19952
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19730
19953
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19731
19954
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19777,6 +20000,7 @@ declare const FindAlertsQuery: z.ZodObject<{
|
|
|
19777
20000
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19778
20001
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19779
20002
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20003
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19780
20004
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19781
20005
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19782
20006
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19813,6 +20037,7 @@ declare const CreateAlert: z.ZodObject<{
|
|
|
19813
20037
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19814
20038
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19815
20039
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20040
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19816
20041
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19817
20042
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19818
20043
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20067,6 +20292,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
20067
20292
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20068
20293
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20069
20294
|
}, z$1.core.$strip>>;
|
|
20295
|
+
flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
20296
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20297
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20298
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20299
|
+
}, z$1.core.$strip>>;
|
|
20070
20300
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
20071
20301
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20072
20302
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20146,6 +20376,9 @@ declare const WorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20146
20376
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20147
20377
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20148
20378
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20379
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20380
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20381
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20149
20382
|
}, z$1.core.$strip>;
|
|
20150
20383
|
declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
20151
20384
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -20154,6 +20387,9 @@ declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20154
20387
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20155
20388
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20156
20389
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20390
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20391
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20392
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20157
20393
|
}, z$1.core.$strip>;
|
|
20158
20394
|
declare const WorkspacePublicKey: z$1.ZodObject<{
|
|
20159
20395
|
name: z$1.ZodString;
|
|
@@ -20322,6 +20558,11 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20322
20558
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20323
20559
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20324
20560
|
}, z$1.core.$strip>>;
|
|
20561
|
+
flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
20562
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20563
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20564
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20565
|
+
}, z$1.core.$strip>>;
|
|
20325
20566
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
20326
20567
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20327
20568
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20390,6 +20631,9 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20390
20631
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20391
20632
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20392
20633
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20634
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20635
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20636
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20393
20637
|
}, z$1.core.$strip>>;
|
|
20394
20638
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
20395
20639
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -20409,6 +20653,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20409
20653
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
20410
20654
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
20411
20655
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20656
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
20412
20657
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
20413
20658
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20414
20659
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20602,6 +20847,11 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
20602
20847
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20603
20848
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20604
20849
|
}, z$1.core.$strip>>;
|
|
20850
|
+
flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
20851
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20852
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20853
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20854
|
+
}, z$1.core.$strip>>;
|
|
20605
20855
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
20606
20856
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20607
20857
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20670,6 +20920,9 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
20670
20920
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20671
20921
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20672
20922
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20923
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20924
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20925
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20673
20926
|
}, z$1.core.$strip>>;
|
|
20674
20927
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
20675
20928
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -20689,6 +20942,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
20689
20942
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
20690
20943
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
20691
20944
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20945
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
20692
20946
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
20693
20947
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20694
20948
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20756,6 +21010,9 @@ declare const CreateWorkspaceRequest: z.ZodObject<{
|
|
|
20756
21010
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
20757
21011
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
20758
21012
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21013
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
21014
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
21015
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
20759
21016
|
}, z.core.$strip>>;
|
|
20760
21017
|
}, z.core.$strip>;
|
|
20761
21018
|
type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
|
|
@@ -20784,6 +21041,9 @@ declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
20784
21041
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
20785
21042
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
20786
21043
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21044
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
21045
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
21046
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
20787
21047
|
}, z.core.$strip>>;
|
|
20788
21048
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
20789
21049
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -20803,6 +21063,7 @@ declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
20803
21063
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
20804
21064
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
20805
21065
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
21066
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
20806
21067
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
20807
21068
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20808
21069
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20971,6 +21232,11 @@ declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
|
20971
21232
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
20972
21233
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
20973
21234
|
}, z.core.$strip>>>;
|
|
21235
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
21236
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21237
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21238
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21239
|
+
}, z.core.$strip>>>;
|
|
20974
21240
|
instantTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20975
21241
|
value: z.ZodOptional<z.ZodNumber>;
|
|
20976
21242
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21056,6 +21322,14 @@ declare const GetWorkspaceQuery: z.ZodObject<{
|
|
|
21056
21322
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
21057
21323
|
}, z.core.$strip>;
|
|
21058
21324
|
type GetWorkspaceQuery = z.infer<typeof GetWorkspaceQuery>;
|
|
21325
|
+
declare const MembraneCredentials: z.ZodObject<{
|
|
21326
|
+
apiUri: z.ZodString;
|
|
21327
|
+
workspaceKey: z.ZodString;
|
|
21328
|
+
workspaceSecret: z.ZodOptional<z.ZodString>;
|
|
21329
|
+
tenantKey: z.ZodOptional<z.ZodString>;
|
|
21330
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
21331
|
+
}, z.core.$strip>;
|
|
21332
|
+
type MembraneCredentials = z.infer<typeof MembraneCredentials>;
|
|
21059
21333
|
|
|
21060
21334
|
declare const PARALLEL_EXECUTION_LIMITS: string[];
|
|
21061
21335
|
declare const RATE_LIMITS: string[];
|
|
@@ -21083,6 +21357,7 @@ interface WorkspaceElementChangeInfo {
|
|
|
21083
21357
|
interface WorkspaceExportComparisonResult {
|
|
21084
21358
|
comparison: WorkspaceExportComparison;
|
|
21085
21359
|
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
21360
|
+
baseUuidByTargetUuid: Map<string, string>;
|
|
21086
21361
|
diff?: string;
|
|
21087
21362
|
}
|
|
21088
21363
|
interface WorkspaceExportComparisonOptions {
|
|
@@ -21090,6 +21365,7 @@ interface WorkspaceExportComparisonOptions {
|
|
|
21090
21365
|
includeDiff?: boolean;
|
|
21091
21366
|
}
|
|
21092
21367
|
declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
21368
|
+
declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
|
21093
21369
|
|
|
21094
21370
|
declare const IneligibilityReasonSchema: z.ZodEnum<{
|
|
21095
21371
|
disposable: "disposable";
|
|
@@ -21383,6 +21659,11 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21383
21659
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21384
21660
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21385
21661
|
}, z.core.$strip>>;
|
|
21662
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
21663
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21664
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21665
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21666
|
+
}, z.core.$strip>>;
|
|
21386
21667
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
21387
21668
|
value: z.ZodOptional<z.ZodNumber>;
|
|
21388
21669
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21451,6 +21732,9 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21451
21732
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21452
21733
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21453
21734
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21735
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
21736
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
21737
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21454
21738
|
}, z.core.$strip>>;
|
|
21455
21739
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21456
21740
|
name: z.ZodString;
|
|
@@ -21477,6 +21761,7 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21477
21761
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
21478
21762
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
21479
21763
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
21764
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
21480
21765
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
21481
21766
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21482
21767
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -21658,6 +21943,11 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21658
21943
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21659
21944
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21660
21945
|
}, z.core.$strip>>;
|
|
21946
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
21947
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21948
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21949
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21950
|
+
}, z.core.$strip>>;
|
|
21661
21951
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
21662
21952
|
value: z.ZodOptional<z.ZodNumber>;
|
|
21663
21953
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21726,6 +22016,9 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21726
22016
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21727
22017
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21728
22018
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22019
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
22020
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
22021
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21729
22022
|
}, z.core.$strip>>;
|
|
21730
22023
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21731
22024
|
name: z.ZodString;
|
|
@@ -21752,6 +22045,7 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21752
22045
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
21753
22046
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
21754
22047
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22048
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
21755
22049
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
21756
22050
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21757
22051
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -21922,6 +22216,11 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
21922
22216
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21923
22217
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21924
22218
|
}, z.core.$strip>>;
|
|
22219
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
22220
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22221
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22222
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22223
|
+
}, z.core.$strip>>;
|
|
21925
22224
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
21926
22225
|
value: z.ZodOptional<z.ZodNumber>;
|
|
21927
22226
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21990,6 +22289,9 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
21990
22289
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21991
22290
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21992
22291
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22292
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
22293
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
22294
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21993
22295
|
}, z.core.$strip>>;
|
|
21994
22296
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21995
22297
|
name: z.ZodString;
|
|
@@ -22016,6 +22318,7 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
22016
22318
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22017
22319
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22018
22320
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22321
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
22019
22322
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22020
22323
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22021
22324
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -22135,17 +22438,7 @@ declare const CreateOrgRequest: z.ZodObject<{
|
|
|
22135
22438
|
team: "team";
|
|
22136
22439
|
}>>>;
|
|
22137
22440
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
22138
|
-
signupSource: z.ZodOptional<z.
|
|
22139
|
-
cursor: "cursor";
|
|
22140
|
-
other: "other";
|
|
22141
|
-
openclaw: "openclaw";
|
|
22142
|
-
claude: "claude";
|
|
22143
|
-
chatgpt: "chatgpt";
|
|
22144
|
-
web: "web";
|
|
22145
|
-
"membrane-cli": "membrane-cli";
|
|
22146
|
-
warp: "warp";
|
|
22147
|
-
lovable: "lovable";
|
|
22148
|
-
}>>;
|
|
22441
|
+
signupSource: z.ZodOptional<z.ZodString>;
|
|
22149
22442
|
}, z.core.$strip>;
|
|
22150
22443
|
type CreateOrgRequest = z.infer<typeof CreateOrgRequest>;
|
|
22151
22444
|
declare const UpdateOrgRequest: z.ZodObject<{
|
|
@@ -22470,6 +22763,11 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22470
22763
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22471
22764
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22472
22765
|
}, z.core.$strip>>;
|
|
22766
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
22767
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22768
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22769
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22770
|
+
}, z.core.$strip>>;
|
|
22473
22771
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22474
22772
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22475
22773
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22538,6 +22836,9 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22538
22836
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22539
22837
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22540
22838
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22839
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
22840
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
22841
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
22541
22842
|
}, z.core.$strip>>;
|
|
22542
22843
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22543
22844
|
name: z.ZodString;
|
|
@@ -22564,6 +22865,7 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22564
22865
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22565
22866
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22566
22867
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22868
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
22567
22869
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22568
22870
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22569
22871
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -22777,6 +23079,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22777
23079
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22778
23080
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22779
23081
|
}, z.core.$strip>>;
|
|
23082
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
23083
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23084
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23085
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23086
|
+
}, z.core.$strip>>;
|
|
22780
23087
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22781
23088
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22782
23089
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22845,6 +23152,9 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22845
23152
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22846
23153
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22847
23154
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
23155
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
23156
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
23157
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
22848
23158
|
}, z.core.$strip>>;
|
|
22849
23159
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22850
23160
|
name: z.ZodString;
|
|
@@ -22871,6 +23181,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22871
23181
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22872
23182
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22873
23183
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
23184
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
22874
23185
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22875
23186
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22876
23187
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -23120,6 +23431,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23120
23431
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23121
23432
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23122
23433
|
}, z.core.$strip>>;
|
|
23434
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
23435
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23436
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23437
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23438
|
+
}, z.core.$strip>>;
|
|
23123
23439
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23124
23440
|
value: z.ZodOptional<z.ZodNumber>;
|
|
23125
23441
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23188,6 +23504,9 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23188
23504
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
23189
23505
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
23190
23506
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
23507
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
23508
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
23509
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
23191
23510
|
}, z.core.$strip>>;
|
|
23192
23511
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
23193
23512
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -23207,6 +23526,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23207
23526
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
23208
23527
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
23209
23528
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
23529
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
23210
23530
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
23211
23531
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
23212
23532
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -24000,6 +24320,49 @@ declare function parseDate(value: any): Date | undefined;
|
|
|
24000
24320
|
declare function isBusinessDay(date: Date): boolean;
|
|
24001
24321
|
declare function getBusinessDaysBetween(startDate: Date, endDate: Date): Set<string>;
|
|
24002
24322
|
|
|
24323
|
+
declare const AI_GATEWAY_SUPPORTED_MODELS: readonly [{
|
|
24324
|
+
readonly id: "anthropic/claude-sonnet-4.6";
|
|
24325
|
+
readonly name: "Claude Sonnet 4.6";
|
|
24326
|
+
}, {
|
|
24327
|
+
readonly id: "anthropic/claude-opus-4.6";
|
|
24328
|
+
readonly name: "Claude Opus 4.6";
|
|
24329
|
+
}, {
|
|
24330
|
+
readonly id: "anthropic/claude-sonnet-4.5";
|
|
24331
|
+
readonly name: "Claude Sonnet 4.5";
|
|
24332
|
+
}, {
|
|
24333
|
+
readonly id: "anthropic/claude-opus-4.5";
|
|
24334
|
+
readonly name: "Claude Opus 4.5";
|
|
24335
|
+
}, {
|
|
24336
|
+
readonly id: "openai/gpt-5.2";
|
|
24337
|
+
readonly name: "GPT-5.2";
|
|
24338
|
+
}, {
|
|
24339
|
+
readonly id: "openai/gpt-5-nano";
|
|
24340
|
+
readonly name: "GPT-5 Nano";
|
|
24341
|
+
}, {
|
|
24342
|
+
readonly id: "google/gemini-3-pro-preview";
|
|
24343
|
+
readonly name: "Gemini 3 Pro";
|
|
24344
|
+
}, {
|
|
24345
|
+
readonly id: "moonshotai/kimi-k2.5";
|
|
24346
|
+
readonly name: "Kimi K2.5";
|
|
24347
|
+
}];
|
|
24348
|
+
declare const AI_GATEWAY_SUPPORTED_MODEL_IDS: [(typeof AI_GATEWAY_SUPPORTED_MODELS)[number]["id"], ...(typeof AI_GATEWAY_SUPPORTED_MODELS)[number]["id"][]];
|
|
24349
|
+
declare const AIGatewaySupportedModelIdSchema: z.ZodEnum<{
|
|
24350
|
+
"anthropic/claude-sonnet-4.6": "anthropic/claude-sonnet-4.6";
|
|
24351
|
+
"anthropic/claude-opus-4.6": "anthropic/claude-opus-4.6";
|
|
24352
|
+
"anthropic/claude-sonnet-4.5": "anthropic/claude-sonnet-4.5";
|
|
24353
|
+
"anthropic/claude-opus-4.5": "anthropic/claude-opus-4.5";
|
|
24354
|
+
"openai/gpt-5.2": "openai/gpt-5.2";
|
|
24355
|
+
"openai/gpt-5-nano": "openai/gpt-5-nano";
|
|
24356
|
+
"google/gemini-3-pro-preview": "google/gemini-3-pro-preview";
|
|
24357
|
+
"moonshotai/kimi-k2.5": "moonshotai/kimi-k2.5";
|
|
24358
|
+
}>;
|
|
24359
|
+
type AIGatewaySupportedModelId = z.infer<typeof AIGatewaySupportedModelIdSchema>;
|
|
24360
|
+
declare const DEFAULT_AI_GATEWAY_MODEL_ID: AIGatewaySupportedModelId;
|
|
24361
|
+
declare const AI_GATEWAY_PROVIDER_MODELS: Readonly<Record<AIGatewaySupportedModelId, {
|
|
24362
|
+
name: string;
|
|
24363
|
+
}>>;
|
|
24364
|
+
declare function isAIGatewaySupportedModelId(modelId: string): modelId is AIGatewaySupportedModelId;
|
|
24365
|
+
|
|
24003
24366
|
declare const StatsFilterQuery: z.ZodObject<{
|
|
24004
24367
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
24005
24368
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
@@ -24164,9 +24527,10 @@ declare enum WebhookTypeEnum {
|
|
|
24164
24527
|
AGENT_SESSION_FINISHED = "agent-session-finished",
|
|
24165
24528
|
SEND_ALERT_EMAIL = "send-alert-email",
|
|
24166
24529
|
PUBLIC_PACKAGE_ACTION_RUN_FAILED = "public-package-action-run-failed",
|
|
24167
|
-
BETTER_AUTH_SIGNUP_VERIFY = "better-auth-signup-verify"
|
|
24530
|
+
BETTER_AUTH_SIGNUP_VERIFY = "better-auth-signup-verify",
|
|
24531
|
+
BETTER_AUTH_RESET_PASSWORD = "better-auth-reset-password"
|
|
24168
24532
|
}
|
|
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;
|
|
24533
|
+
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 | WebhookTypeEnum.BETTER_AUTH_RESET_PASSWORD;
|
|
24170
24534
|
interface Webhook {
|
|
24171
24535
|
type: WebhookType;
|
|
24172
24536
|
url: string;
|
|
@@ -24896,6 +25260,24 @@ declare const MembraneInstance: z.ZodObject<{
|
|
|
24896
25260
|
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24897
25261
|
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24898
25262
|
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
25263
|
+
}, z.core.$strip>;
|
|
25264
|
+
type MembraneInstanceDto = z.infer<typeof MembraneInstance>;
|
|
25265
|
+
declare const MembraneInstanceAdmin: z.ZodObject<{
|
|
25266
|
+
id: z.ZodString;
|
|
25267
|
+
name: z.ZodString;
|
|
25268
|
+
apiBaseUri: z.ZodString;
|
|
25269
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
25270
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
25271
|
+
type: z.ZodOptional<z.ZodString>;
|
|
25272
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
25273
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
25274
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
25275
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
25276
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
25277
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
25278
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
25279
|
+
orgName: z.ZodOptional<z.ZodString>;
|
|
25280
|
+
workspaceCount: z.ZodOptional<z.ZodNumber>;
|
|
24899
25281
|
clusterName: z.ZodOptional<z.ZodString>;
|
|
24900
25282
|
argoCdUrl: z.ZodOptional<z.ZodURL>;
|
|
24901
25283
|
grafanaUrl: z.ZodOptional<z.ZodURL>;
|
|
@@ -24905,7 +25287,7 @@ declare const MembraneInstance: z.ZodObject<{
|
|
|
24905
25287
|
awsAccountName: z.ZodOptional<z.ZodString>;
|
|
24906
25288
|
awsSsoUrl: z.ZodOptional<z.ZodURL>;
|
|
24907
25289
|
}, z.core.$strip>;
|
|
24908
|
-
type
|
|
25290
|
+
type MembraneInstanceAdmin = z.infer<typeof MembraneInstanceAdmin>;
|
|
24909
25291
|
declare const CreateMembraneInstanceRequest: z.ZodObject<{
|
|
24910
25292
|
name: z.ZodString;
|
|
24911
25293
|
apiBaseUri: z.ZodString;
|
|
@@ -24949,44 +25331,10 @@ declare const ListMembraneInstancesResponse: z.ZodObject<{
|
|
|
24949
25331
|
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24950
25332
|
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24951
25333
|
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24952
|
-
clusterName: z.ZodOptional<z.ZodString>;
|
|
24953
|
-
argoCdUrl: z.ZodOptional<z.ZodURL>;
|
|
24954
|
-
grafanaUrl: z.ZodOptional<z.ZodURL>;
|
|
24955
|
-
mongoAtlasUrl: z.ZodOptional<z.ZodURL>;
|
|
24956
|
-
helmBranch: z.ZodOptional<z.ZodString>;
|
|
24957
|
-
helmValuesPath: z.ZodOptional<z.ZodURL>;
|
|
24958
|
-
awsAccountName: z.ZodOptional<z.ZodString>;
|
|
24959
|
-
awsSsoUrl: z.ZodOptional<z.ZodURL>;
|
|
24960
25334
|
}, z.core.$strip>>;
|
|
24961
25335
|
cursor: z.ZodOptional<z.ZodString>;
|
|
24962
25336
|
}, z.core.$strip>;
|
|
24963
25337
|
type ListMembraneInstancesResponse = z.infer<typeof ListMembraneInstancesResponse>;
|
|
24964
|
-
declare const MembraneInstanceAdmin: z.ZodObject<{
|
|
24965
|
-
id: z.ZodString;
|
|
24966
|
-
name: z.ZodString;
|
|
24967
|
-
apiBaseUri: z.ZodString;
|
|
24968
|
-
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24969
|
-
orgId: z.ZodOptional<z.ZodString>;
|
|
24970
|
-
type: z.ZodOptional<z.ZodString>;
|
|
24971
|
-
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24972
|
-
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24973
|
-
buildDate: z.ZodOptional<z.ZodString>;
|
|
24974
|
-
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
24975
|
-
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24976
|
-
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24977
|
-
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24978
|
-
clusterName: z.ZodOptional<z.ZodString>;
|
|
24979
|
-
argoCdUrl: z.ZodOptional<z.ZodURL>;
|
|
24980
|
-
grafanaUrl: z.ZodOptional<z.ZodURL>;
|
|
24981
|
-
mongoAtlasUrl: z.ZodOptional<z.ZodURL>;
|
|
24982
|
-
helmBranch: z.ZodOptional<z.ZodString>;
|
|
24983
|
-
helmValuesPath: z.ZodOptional<z.ZodURL>;
|
|
24984
|
-
awsAccountName: z.ZodOptional<z.ZodString>;
|
|
24985
|
-
awsSsoUrl: z.ZodOptional<z.ZodURL>;
|
|
24986
|
-
orgName: z.ZodOptional<z.ZodString>;
|
|
24987
|
-
workspaceCount: z.ZodOptional<z.ZodNumber>;
|
|
24988
|
-
}, z.core.$strip>;
|
|
24989
|
-
type MembraneInstanceAdmin = z.infer<typeof MembraneInstanceAdmin>;
|
|
24990
25338
|
|
|
24991
25339
|
declare const OrgInstanceType: z.ZodEnum<{
|
|
24992
25340
|
"membrane-hosted": "membrane-hosted";
|
|
@@ -25095,5 +25443,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
25095
25443
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
25096
25444
|
}
|
|
25097
25445
|
|
|
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 };
|
|
25446
|
+
export { ACTIONS, AGENTIC_CONNECTION_REQUEST_SCREEN_PATH, AIGatewaySupportedModelIdSchema, AI_GATEWAY_PROVIDER_MODELS, AI_GATEWAY_SUPPORTED_MODELS, AI_GATEWAY_SUPPORTED_MODEL_IDS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActApiDispatch, ActRequest, 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_AI_GATEWAY_MODEL_ID, 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, IntegrationListItem, 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, MembraneCredentials, 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, 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, isAIGatewaySupportedModelId, 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 };
|
|
25447
|
+
export type { AIGatewaySupportedModelId, 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 };
|