@membranehq/sdk 0.28.1 → 0.28.3
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 +53 -4
- package/dist/bundle.js +75 -9
- 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 +4 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +3 -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/api-version.generated.d.ts +1 -1
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/membrane-instances/types.d.ts +23 -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 +15 -2
- 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 +417 -57
- package/dist/index.browser.d.ts +417 -57
- package/dist/index.browser.js +236 -27
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +226 -28
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +417 -57
- package/dist/index.node.d.ts +417 -57
- package/dist/index.node.js +236 -27
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +226 -28
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.node.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>;
|
|
@@ -11390,11 +11453,14 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
11390
11453
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11391
11454
|
}, z.core.$strip>>>;
|
|
11392
11455
|
}, z.core.$strip>>;
|
|
11456
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
11457
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
11393
11458
|
}, z.core.$strip>;
|
|
11394
11459
|
type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
11395
11460
|
declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
11396
11461
|
id: z.ZodString;
|
|
11397
11462
|
name: z.ZodString;
|
|
11463
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11398
11464
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11399
11465
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11400
11466
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11492,9 +11558,9 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
11492
11558
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11493
11559
|
}, z.core.$strip>>>;
|
|
11494
11560
|
}, z.core.$strip>>;
|
|
11495
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
11496
|
-
input: z.ZodOptional<z.ZodUnknown>;
|
|
11497
11561
|
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
11562
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
11563
|
+
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
11498
11564
|
}, z.core.$strip>;
|
|
11499
11565
|
type ConnectionApiResponseWithSecrets = z.infer<typeof ConnectionApiResponseWithSecrets>;
|
|
11500
11566
|
type Connection = ConnectionApiResponse;
|
|
@@ -11505,6 +11571,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11505
11571
|
connection: z.ZodObject<{
|
|
11506
11572
|
id: z.ZodString;
|
|
11507
11573
|
name: z.ZodString;
|
|
11574
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11508
11575
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11509
11576
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11510
11577
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11602,6 +11669,8 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11602
11669
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11603
11670
|
}, z.core.$strip>>>;
|
|
11604
11671
|
}, z.core.$strip>>;
|
|
11672
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
11673
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
11605
11674
|
}, z.core.$strip>;
|
|
11606
11675
|
}, z.core.$strip>, z.ZodObject<{
|
|
11607
11676
|
source: z.ZodString;
|
|
@@ -11630,6 +11699,7 @@ declare const ConnectPayload: z.ZodObject<{
|
|
|
11630
11699
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
11631
11700
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11632
11701
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
11702
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
11633
11703
|
name: z.ZodOptional<z.ZodString>;
|
|
11634
11704
|
input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11635
11705
|
connectionParameters: z.ZodOptional<z.ZodAny>;
|
|
@@ -11648,6 +11718,7 @@ declare const ConnectUIOptions: z.ZodObject<{
|
|
|
11648
11718
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
11649
11719
|
name: z.ZodOptional<z.ZodString>;
|
|
11650
11720
|
intent: z.ZodOptional<z.ZodString>;
|
|
11721
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
11651
11722
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
11652
11723
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11653
11724
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -11803,6 +11874,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
11803
11874
|
connection: z.ZodOptional<z.ZodObject<{
|
|
11804
11875
|
id: z.ZodString;
|
|
11805
11876
|
name: z.ZodString;
|
|
11877
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11806
11878
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11807
11879
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
11808
11880
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12007,6 +12079,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12007
12079
|
connection: z.ZodOptional<z.ZodObject<{
|
|
12008
12080
|
id: z.ZodString;
|
|
12009
12081
|
name: z.ZodString;
|
|
12082
|
+
key: z.ZodOptional<z.ZodString>;
|
|
12010
12083
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12011
12084
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12012
12085
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12362,6 +12435,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12362
12435
|
connection: z.ZodOptional<z.ZodObject<{
|
|
12363
12436
|
id: z.ZodString;
|
|
12364
12437
|
name: z.ZodString;
|
|
12438
|
+
key: z.ZodOptional<z.ZodString>;
|
|
12365
12439
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12366
12440
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12367
12441
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12722,6 +12796,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
12722
12796
|
connection: z.ZodOptional<z.ZodObject<{
|
|
12723
12797
|
id: z.ZodString;
|
|
12724
12798
|
name: z.ZodString;
|
|
12799
|
+
key: z.ZodOptional<z.ZodString>;
|
|
12725
12800
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12726
12801
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
12727
12802
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12849,6 +12924,7 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
12849
12924
|
integration: "integration";
|
|
12850
12925
|
universal: "universal";
|
|
12851
12926
|
}>>;
|
|
12927
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
12852
12928
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
12853
12929
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12854
12930
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -13440,6 +13516,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13440
13516
|
connection: z.ZodOptional<z.ZodObject<{
|
|
13441
13517
|
id: z.ZodString;
|
|
13442
13518
|
name: z.ZodString;
|
|
13519
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13443
13520
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13444
13521
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
13445
13522
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14045,6 +14122,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14045
14122
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14046
14123
|
id: z.ZodString;
|
|
14047
14124
|
name: z.ZodString;
|
|
14125
|
+
key: z.ZodOptional<z.ZodString>;
|
|
14048
14126
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14049
14127
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14050
14128
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14254,6 +14332,7 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
14254
14332
|
integration: "integration";
|
|
14255
14333
|
universal: "universal";
|
|
14256
14334
|
}>>;
|
|
14335
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
14257
14336
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14258
14337
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14259
14338
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14277,6 +14356,7 @@ declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
14277
14356
|
integration: "integration";
|
|
14278
14357
|
universal: "universal";
|
|
14279
14358
|
}>>;
|
|
14359
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
14280
14360
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14281
14361
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14282
14362
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -14569,6 +14649,7 @@ declare class ConnectionAccessor {
|
|
|
14569
14649
|
createdAt: string;
|
|
14570
14650
|
updatedAt: string;
|
|
14571
14651
|
userId: string;
|
|
14652
|
+
key?: string | undefined;
|
|
14572
14653
|
isTest?: boolean | undefined;
|
|
14573
14654
|
connected?: boolean | undefined;
|
|
14574
14655
|
disconnected?: boolean | undefined;
|
|
@@ -14653,6 +14734,8 @@ declare class ConnectionAccessor {
|
|
|
14653
14734
|
parameters?: Record<string, any> | undefined;
|
|
14654
14735
|
}> | undefined;
|
|
14655
14736
|
} | undefined;
|
|
14737
|
+
connectorParameters?: unknown;
|
|
14738
|
+
input?: unknown;
|
|
14656
14739
|
} | null>;
|
|
14657
14740
|
openReconnectUI(_options?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
14658
14741
|
refreshCredentials(): Promise<void>;
|
|
@@ -14702,6 +14785,7 @@ declare function createOrUpdateConnection(options: {
|
|
|
14702
14785
|
connectorId?: string;
|
|
14703
14786
|
connectorVersion?: string;
|
|
14704
14787
|
connectionId?: string;
|
|
14788
|
+
connectionKey?: string;
|
|
14705
14789
|
allowMultipleConnections?: boolean;
|
|
14706
14790
|
connectionRequestId?: string;
|
|
14707
14791
|
apiUri: string;
|
|
@@ -14807,6 +14891,9 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
14807
14891
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
14808
14892
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
14809
14893
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
14894
|
+
connectors: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14895
|
+
externalApps: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14896
|
+
websearch: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14810
14897
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14811
14898
|
cursor: z.ZodOptional<z.ZodString>;
|
|
14812
14899
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -14892,6 +14979,7 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
14892
14979
|
connection: z.ZodOptional<z.ZodObject<{
|
|
14893
14980
|
id: z.ZodString;
|
|
14894
14981
|
name: z.ZodString;
|
|
14982
|
+
key: z.ZodOptional<z.ZodString>;
|
|
14895
14983
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
14896
14984
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
14897
14985
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14950,6 +15038,114 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
14950
15038
|
}, z.core.$strip>>>;
|
|
14951
15039
|
}, z.core.$strip>;
|
|
14952
15040
|
type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
15041
|
+
declare const IntegrationListItem: z.ZodObject<{
|
|
15042
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
15043
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15044
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15045
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15046
|
+
name: z.ZodString;
|
|
15047
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
15048
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
15049
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
15050
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
15051
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15052
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15053
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
15054
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
15055
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
15056
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
15057
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15058
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
15059
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
15060
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
15061
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
15062
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
15063
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
15064
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
15065
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
15066
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
15067
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
15068
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15069
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15070
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
15071
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15072
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
15073
|
+
proxy: "proxy";
|
|
15074
|
+
"integration-app-token": "integration-app-token";
|
|
15075
|
+
"membrane-token": "membrane-token";
|
|
15076
|
+
oauth2: "oauth2";
|
|
15077
|
+
oauth1: "oauth1";
|
|
15078
|
+
"client-credentials": "client-credentials";
|
|
15079
|
+
}>>;
|
|
15080
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
15081
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
15082
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15083
|
+
}, z.core.$strip>>>;
|
|
15084
|
+
connection: z.ZodOptional<z.ZodObject<{
|
|
15085
|
+
id: z.ZodString;
|
|
15086
|
+
name: z.ZodString;
|
|
15087
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15088
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15089
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15090
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
15091
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
15092
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
15093
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
15094
|
+
requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15095
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
15096
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
15097
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
15098
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15099
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
15100
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
15101
|
+
createdAt: z.ZodString;
|
|
15102
|
+
updatedAt: z.ZodString;
|
|
15103
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
15104
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
15105
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
15106
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
15107
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
15108
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
15109
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15110
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15111
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15112
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
15113
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
15114
|
+
type: z.ZodEnum<{
|
|
15115
|
+
connect: "connect";
|
|
15116
|
+
"provide-input": "provide-input";
|
|
15117
|
+
}>;
|
|
15118
|
+
description: z.ZodString;
|
|
15119
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
15120
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
15121
|
+
}, z.core.$strip>>;
|
|
15122
|
+
userId: z.ZodString;
|
|
15123
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
15124
|
+
}, z.core.$strip>>;
|
|
15125
|
+
spec: z.ZodOptional<z.ZodAny>;
|
|
15126
|
+
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15127
|
+
key: z.ZodString;
|
|
15128
|
+
type: z.ZodEnum<{
|
|
15129
|
+
proxy: "proxy";
|
|
15130
|
+
"integration-app-token": "integration-app-token";
|
|
15131
|
+
"membrane-token": "membrane-token";
|
|
15132
|
+
oauth2: "oauth2";
|
|
15133
|
+
oauth1: "oauth1";
|
|
15134
|
+
"client-credentials": "client-credentials";
|
|
15135
|
+
}>;
|
|
15136
|
+
title: z.ZodOptional<z.ZodString>;
|
|
15137
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15138
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
15139
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
15140
|
+
schema: z.ZodOptional<z.ZodAny>;
|
|
15141
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
15142
|
+
}, z.core.$strip>>;
|
|
15143
|
+
}, z.core.$strip>>>;
|
|
15144
|
+
id: z.ZodOptional<z.ZodString>;
|
|
15145
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
15146
|
+
appUri: z.ZodOptional<z.ZodString>;
|
|
15147
|
+
}, z.core.$strip>;
|
|
15148
|
+
type IntegrationListItem = z.infer<typeof IntegrationListItem>;
|
|
14953
15149
|
type Integration = IntegrationApiResponse;
|
|
14954
15150
|
|
|
14955
15151
|
declare const FieldMappingApiResponse: z.ZodObject<{
|
|
@@ -15165,6 +15361,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15165
15361
|
connection: z.ZodOptional<z.ZodObject<{
|
|
15166
15362
|
id: z.ZodString;
|
|
15167
15363
|
name: z.ZodString;
|
|
15364
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15168
15365
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15169
15366
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15170
15367
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15469,6 +15666,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15469
15666
|
connection: z.ZodOptional<z.ZodObject<{
|
|
15470
15667
|
id: z.ZodString;
|
|
15471
15668
|
name: z.ZodString;
|
|
15669
|
+
key: z.ZodOptional<z.ZodString>;
|
|
15472
15670
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
15473
15671
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
15474
15672
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15575,6 +15773,7 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
15575
15773
|
integration: "integration";
|
|
15576
15774
|
universal: "universal";
|
|
15577
15775
|
}>>;
|
|
15776
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
15578
15777
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15579
15778
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15580
15779
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -15598,6 +15797,7 @@ declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
|
15598
15797
|
integration: "integration";
|
|
15599
15798
|
universal: "universal";
|
|
15600
15799
|
}>>;
|
|
15800
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
15601
15801
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15602
15802
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15603
15803
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -15830,6 +16030,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
15830
16030
|
createdAt: string;
|
|
15831
16031
|
updatedAt: string;
|
|
15832
16032
|
userId: string;
|
|
16033
|
+
key?: string | undefined;
|
|
15833
16034
|
isTest?: boolean | undefined;
|
|
15834
16035
|
connected?: boolean | undefined;
|
|
15835
16036
|
disconnected?: boolean | undefined;
|
|
@@ -15914,6 +16115,8 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
15914
16115
|
parameters?: Record<string, any> | undefined;
|
|
15915
16116
|
}> | undefined;
|
|
15916
16117
|
} | undefined;
|
|
16118
|
+
connectorParameters?: unknown;
|
|
16119
|
+
input?: unknown;
|
|
15917
16120
|
} | null>;
|
|
15918
16121
|
createConnection({ parameters, name, }: {
|
|
15919
16122
|
parameters?: any;
|
|
@@ -15935,6 +16138,7 @@ declare const FindPackagesQuery: z.ZodObject<{
|
|
|
15935
16138
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
15936
16139
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
15937
16140
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16141
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
15938
16142
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
15939
16143
|
search: z.ZodOptional<z.ZodString>;
|
|
15940
16144
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -16461,6 +16665,7 @@ declare const ListExternalEventSubscriptionsQuery: z.ZodObject<{
|
|
|
16461
16665
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
16462
16666
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
16463
16667
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
16668
|
+
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventSubscriptionStatus>>;
|
|
16464
16669
|
}, z.core.$strip>;
|
|
16465
16670
|
type ListExternalEventSubscriptionsQuery = z.infer<typeof ListExternalEventSubscriptionsQuery>;
|
|
16466
16671
|
declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
@@ -16519,6 +16724,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16519
16724
|
connection: z.ZodOptional<z.ZodObject<{
|
|
16520
16725
|
id: z.ZodString;
|
|
16521
16726
|
name: z.ZodString;
|
|
16727
|
+
key: z.ZodOptional<z.ZodString>;
|
|
16522
16728
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
16523
16729
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
16524
16730
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17005,6 +17211,7 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
17005
17211
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
17006
17212
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17007
17213
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17214
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
17008
17215
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17009
17216
|
search: z.ZodOptional<z.ZodString>;
|
|
17010
17217
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -17380,6 +17587,7 @@ declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
|
17380
17587
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
17381
17588
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17382
17589
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17590
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
17383
17591
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17384
17592
|
search: z.ZodOptional<z.ZodString>;
|
|
17385
17593
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -17403,6 +17611,7 @@ declare const FindActionInstancesQuery: z.ZodObject<{
|
|
|
17403
17611
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
17404
17612
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17405
17613
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
17614
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
17406
17615
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
17407
17616
|
search: z.ZodOptional<z.ZodString>;
|
|
17408
17617
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -17575,6 +17784,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17575
17784
|
connection: z.ZodOptional<z.ZodObject<{
|
|
17576
17785
|
id: z.ZodString;
|
|
17577
17786
|
name: z.ZodString;
|
|
17787
|
+
key: z.ZodOptional<z.ZodString>;
|
|
17578
17788
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17579
17789
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17580
17790
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17797,6 +18007,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17797
18007
|
connection: z.ZodOptional<z.ZodObject<{
|
|
17798
18008
|
id: z.ZodString;
|
|
17799
18009
|
name: z.ZodString;
|
|
18010
|
+
key: z.ZodOptional<z.ZodString>;
|
|
17800
18011
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17801
18012
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
17802
18013
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18060,6 +18271,7 @@ declare const FindDataLinkTableInstanceLinksQuery: z.ZodObject<{
|
|
|
18060
18271
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
18061
18272
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18062
18273
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18274
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
18063
18275
|
id: z.ZodOptional<z.ZodString>;
|
|
18064
18276
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
18065
18277
|
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
@@ -18120,6 +18332,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18120
18332
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18121
18333
|
id: z.ZodString;
|
|
18122
18334
|
name: z.ZodString;
|
|
18335
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18123
18336
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18124
18337
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18125
18338
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18562,6 +18775,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18562
18775
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18563
18776
|
id: z.ZodString;
|
|
18564
18777
|
name: z.ZodString;
|
|
18778
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18565
18779
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18566
18780
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18567
18781
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18746,6 +18960,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
18746
18960
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18747
18961
|
id: z.ZodString;
|
|
18748
18962
|
name: z.ZodString;
|
|
18963
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18749
18964
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18750
18965
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18751
18966
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18934,6 +19149,7 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
18934
19149
|
connection: z.ZodOptional<z.ZodObject<{
|
|
18935
19150
|
id: z.ZodString;
|
|
18936
19151
|
name: z.ZodString;
|
|
19152
|
+
key: z.ZodOptional<z.ZodString>;
|
|
18937
19153
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
18938
19154
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
18939
19155
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19064,6 +19280,7 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
19064
19280
|
connection: z.ZodOptional<z.ZodObject<{
|
|
19065
19281
|
id: z.ZodString;
|
|
19066
19282
|
name: z.ZodString;
|
|
19283
|
+
key: z.ZodOptional<z.ZodString>;
|
|
19067
19284
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
19068
19285
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
19069
19286
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19424,7 +19641,16 @@ declare const CreateAgentSession: z.ZodObject<{
|
|
|
19424
19641
|
prompt: z.ZodString;
|
|
19425
19642
|
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
19426
19643
|
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
19427
|
-
modelId: z.ZodOptional<z.
|
|
19644
|
+
modelId: z.ZodOptional<z.ZodEnum<{
|
|
19645
|
+
"anthropic/claude-sonnet-4.6": "anthropic/claude-sonnet-4.6";
|
|
19646
|
+
"anthropic/claude-opus-4.6": "anthropic/claude-opus-4.6";
|
|
19647
|
+
"anthropic/claude-sonnet-4.5": "anthropic/claude-sonnet-4.5";
|
|
19648
|
+
"anthropic/claude-opus-4.5": "anthropic/claude-opus-4.5";
|
|
19649
|
+
"openai/gpt-5.2": "openai/gpt-5.2";
|
|
19650
|
+
"openai/gpt-5-nano": "openai/gpt-5-nano";
|
|
19651
|
+
"google/gemini-3-pro-preview": "google/gemini-3-pro-preview";
|
|
19652
|
+
"moonshotai/kimi-k2.5": "moonshotai/kimi-k2.5";
|
|
19653
|
+
}>>;
|
|
19428
19654
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
19429
19655
|
promptAttachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19430
19656
|
title: z.ZodString;
|
|
@@ -19536,6 +19762,7 @@ declare enum AlertType {
|
|
|
19536
19762
|
parallelApiRequestsPerCustomer = "parallelApiRequestsPerCustomer",
|
|
19537
19763
|
engineCreditsExhaustionProjected = "engineCreditsExhaustionProjected",
|
|
19538
19764
|
engineCreditsExhaustionActual = "engineCreditsExhaustionActual",
|
|
19765
|
+
aiCreditsDebtAccumulated = "aiCreditsDebtAccumulated",
|
|
19539
19766
|
totalNumberOfDatabaseEntitiesPerCustomer = "totalNumberOfDatabaseEntitiesPerCustomer",
|
|
19540
19767
|
totalNumberOfCustomers = "totalNumberOfCustomers",
|
|
19541
19768
|
totalNumberOfConnections = "totalNumberOfConnections",
|
|
@@ -19572,6 +19799,7 @@ declare const ALERT_TYPE_CATEGORIES: {
|
|
|
19572
19799
|
readonly parallelApiRequestsPerCustomer: AlertCategory.CUSTOMER_RATE_LIMIT;
|
|
19573
19800
|
readonly engineCreditsExhaustionProjected: AlertCategory.USAGE;
|
|
19574
19801
|
readonly engineCreditsExhaustionActual: AlertCategory.USAGE;
|
|
19802
|
+
readonly aiCreditsDebtAccumulated: AlertCategory.USAGE;
|
|
19575
19803
|
readonly totalNumberOfDatabaseEntitiesPerCustomer: AlertCategory.WORKSPACE_SIZE;
|
|
19576
19804
|
readonly testAlert: AlertCategory.TEST;
|
|
19577
19805
|
readonly totalNumberOfCustomers: AlertCategory.WORKSPACE_SIZE;
|
|
@@ -19617,6 +19845,7 @@ declare const Alert: z.ZodObject<{
|
|
|
19617
19845
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19618
19846
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19619
19847
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
19848
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19620
19849
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19621
19850
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19622
19851
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19667,6 +19896,7 @@ declare const AlertSchema: z.ZodObject<{
|
|
|
19667
19896
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19668
19897
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19669
19898
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
19899
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19670
19900
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19671
19901
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19672
19902
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19726,6 +19956,7 @@ declare const AlertDeliverySettingsSchema: z.ZodObject<{
|
|
|
19726
19956
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19727
19957
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19728
19958
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
19959
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19729
19960
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19730
19961
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19731
19962
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19777,6 +20008,7 @@ declare const FindAlertsQuery: z.ZodObject<{
|
|
|
19777
20008
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19778
20009
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19779
20010
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20011
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19780
20012
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19781
20013
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19782
20014
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -19813,6 +20045,7 @@ declare const CreateAlert: z.ZodObject<{
|
|
|
19813
20045
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
19814
20046
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
19815
20047
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20048
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
19816
20049
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
19817
20050
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
19818
20051
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20067,6 +20300,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
20067
20300
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20068
20301
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20069
20302
|
}, z$1.core.$strip>>;
|
|
20303
|
+
flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
20304
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20305
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20306
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20307
|
+
}, z$1.core.$strip>>;
|
|
20070
20308
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
20071
20309
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20072
20310
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20146,6 +20384,9 @@ declare const WorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20146
20384
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20147
20385
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20148
20386
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20387
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20388
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20389
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20149
20390
|
}, z$1.core.$strip>;
|
|
20150
20391
|
declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
20151
20392
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -20154,6 +20395,9 @@ declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
|
|
|
20154
20395
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20155
20396
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20156
20397
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20398
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20399
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20400
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20157
20401
|
}, z$1.core.$strip>;
|
|
20158
20402
|
declare const WorkspacePublicKey: z$1.ZodObject<{
|
|
20159
20403
|
name: z$1.ZodString;
|
|
@@ -20322,6 +20566,11 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20322
20566
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20323
20567
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20324
20568
|
}, z$1.core.$strip>>;
|
|
20569
|
+
flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
20570
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20571
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20572
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20573
|
+
}, z$1.core.$strip>>;
|
|
20325
20574
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
20326
20575
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20327
20576
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20390,6 +20639,9 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20390
20639
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20391
20640
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20392
20641
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20642
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20643
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20644
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20393
20645
|
}, z$1.core.$strip>>;
|
|
20394
20646
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
20395
20647
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -20409,6 +20661,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20409
20661
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
20410
20662
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
20411
20663
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20664
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
20412
20665
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
20413
20666
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20414
20667
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20602,6 +20855,11 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
20602
20855
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20603
20856
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20604
20857
|
}, z$1.core.$strip>>;
|
|
20858
|
+
flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
20859
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20860
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20861
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20862
|
+
}, z$1.core.$strip>>;
|
|
20605
20863
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
20606
20864
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20607
20865
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20670,6 +20928,9 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
20670
20928
|
disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20671
20929
|
useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20672
20930
|
useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20931
|
+
autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20932
|
+
autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20933
|
+
autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
20673
20934
|
}, z$1.core.$strip>>;
|
|
20674
20935
|
alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
20675
20936
|
alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
|
|
@@ -20689,6 +20950,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
20689
20950
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
20690
20951
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
20691
20952
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
20953
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
20692
20954
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
20693
20955
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20694
20956
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20756,6 +21018,9 @@ declare const CreateWorkspaceRequest: z.ZodObject<{
|
|
|
20756
21018
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
20757
21019
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
20758
21020
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21021
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
21022
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
21023
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
20759
21024
|
}, z.core.$strip>>;
|
|
20760
21025
|
}, z.core.$strip>;
|
|
20761
21026
|
type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
|
|
@@ -20784,6 +21049,9 @@ declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
20784
21049
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
20785
21050
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
20786
21051
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21052
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
21053
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
21054
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
20787
21055
|
}, z.core.$strip>>;
|
|
20788
21056
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
20789
21057
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -20803,6 +21071,7 @@ declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
20803
21071
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
20804
21072
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
20805
21073
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
21074
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
20806
21075
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
20807
21076
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20808
21077
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -20971,6 +21240,11 @@ declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
|
20971
21240
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
20972
21241
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
20973
21242
|
}, z.core.$strip>>>;
|
|
21243
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
21244
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21245
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21246
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21247
|
+
}, z.core.$strip>>>;
|
|
20974
21248
|
instantTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
20975
21249
|
value: z.ZodOptional<z.ZodNumber>;
|
|
20976
21250
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21056,6 +21330,14 @@ declare const GetWorkspaceQuery: z.ZodObject<{
|
|
|
21056
21330
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
21057
21331
|
}, z.core.$strip>;
|
|
21058
21332
|
type GetWorkspaceQuery = z.infer<typeof GetWorkspaceQuery>;
|
|
21333
|
+
declare const MembraneCredentials: z.ZodObject<{
|
|
21334
|
+
apiUri: z.ZodString;
|
|
21335
|
+
workspaceKey: z.ZodString;
|
|
21336
|
+
workspaceSecret: z.ZodOptional<z.ZodString>;
|
|
21337
|
+
tenantKey: z.ZodOptional<z.ZodString>;
|
|
21338
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
21339
|
+
}, z.core.$strip>;
|
|
21340
|
+
type MembraneCredentials = z.infer<typeof MembraneCredentials>;
|
|
21059
21341
|
|
|
21060
21342
|
declare const PARALLEL_EXECUTION_LIMITS: string[];
|
|
21061
21343
|
declare const RATE_LIMITS: string[];
|
|
@@ -21083,6 +21365,7 @@ interface WorkspaceElementChangeInfo {
|
|
|
21083
21365
|
interface WorkspaceExportComparisonResult {
|
|
21084
21366
|
comparison: WorkspaceExportComparison;
|
|
21085
21367
|
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
21368
|
+
baseUuidByTargetUuid: Map<string, string>;
|
|
21086
21369
|
diff?: string;
|
|
21087
21370
|
}
|
|
21088
21371
|
interface WorkspaceExportComparisonOptions {
|
|
@@ -21090,6 +21373,7 @@ interface WorkspaceExportComparisonOptions {
|
|
|
21090
21373
|
includeDiff?: boolean;
|
|
21091
21374
|
}
|
|
21092
21375
|
declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
21376
|
+
declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
|
21093
21377
|
|
|
21094
21378
|
declare const IneligibilityReasonSchema: z.ZodEnum<{
|
|
21095
21379
|
disposable: "disposable";
|
|
@@ -21383,6 +21667,11 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21383
21667
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21384
21668
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21385
21669
|
}, z.core.$strip>>;
|
|
21670
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
21671
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21672
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21673
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21674
|
+
}, z.core.$strip>>;
|
|
21386
21675
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
21387
21676
|
value: z.ZodOptional<z.ZodNumber>;
|
|
21388
21677
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21451,6 +21740,9 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21451
21740
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21452
21741
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21453
21742
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21743
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
21744
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
21745
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21454
21746
|
}, z.core.$strip>>;
|
|
21455
21747
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21456
21748
|
name: z.ZodString;
|
|
@@ -21477,6 +21769,7 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
21477
21769
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
21478
21770
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
21479
21771
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
21772
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
21480
21773
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
21481
21774
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21482
21775
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -21658,6 +21951,11 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21658
21951
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21659
21952
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21660
21953
|
}, z.core.$strip>>;
|
|
21954
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
21955
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21956
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21957
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21958
|
+
}, z.core.$strip>>;
|
|
21661
21959
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
21662
21960
|
value: z.ZodOptional<z.ZodNumber>;
|
|
21663
21961
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21726,6 +22024,9 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21726
22024
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21727
22025
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21728
22026
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22027
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
22028
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
22029
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21729
22030
|
}, z.core.$strip>>;
|
|
21730
22031
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21731
22032
|
name: z.ZodString;
|
|
@@ -21752,6 +22053,7 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
21752
22053
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
21753
22054
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
21754
22055
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22056
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
21755
22057
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
21756
22058
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21757
22059
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -21922,6 +22224,11 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
21922
22224
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21923
22225
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21924
22226
|
}, z.core.$strip>>;
|
|
22227
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
22228
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22229
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22230
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22231
|
+
}, z.core.$strip>>;
|
|
21925
22232
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
21926
22233
|
value: z.ZodOptional<z.ZodNumber>;
|
|
21927
22234
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21990,6 +22297,9 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
21990
22297
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21991
22298
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21992
22299
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22300
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
22301
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
22302
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
21993
22303
|
}, z.core.$strip>>;
|
|
21994
22304
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21995
22305
|
name: z.ZodString;
|
|
@@ -22016,6 +22326,7 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
|
22016
22326
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22017
22327
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22018
22328
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22329
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
22019
22330
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22020
22331
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22021
22332
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -22135,17 +22446,7 @@ declare const CreateOrgRequest: z.ZodObject<{
|
|
|
22135
22446
|
team: "team";
|
|
22136
22447
|
}>>>;
|
|
22137
22448
|
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
|
-
}>>;
|
|
22449
|
+
signupSource: z.ZodOptional<z.ZodString>;
|
|
22149
22450
|
}, z.core.$strip>;
|
|
22150
22451
|
type CreateOrgRequest = z.infer<typeof CreateOrgRequest>;
|
|
22151
22452
|
declare const UpdateOrgRequest: z.ZodObject<{
|
|
@@ -22470,6 +22771,11 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22470
22771
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22471
22772
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22472
22773
|
}, z.core.$strip>>;
|
|
22774
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
22775
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22776
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22777
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22778
|
+
}, z.core.$strip>>;
|
|
22473
22779
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22474
22780
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22475
22781
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22538,6 +22844,9 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22538
22844
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22539
22845
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22540
22846
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22847
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
22848
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
22849
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
22541
22850
|
}, z.core.$strip>>;
|
|
22542
22851
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22543
22852
|
name: z.ZodString;
|
|
@@ -22564,6 +22873,7 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
|
22564
22873
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22565
22874
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22566
22875
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22876
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
22567
22877
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22568
22878
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22569
22879
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -22777,6 +23087,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22777
23087
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22778
23088
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22779
23089
|
}, z.core.$strip>>;
|
|
23090
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
23091
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23092
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23093
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23094
|
+
}, z.core.$strip>>;
|
|
22780
23095
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22781
23096
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22782
23097
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22845,6 +23160,9 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22845
23160
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22846
23161
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22847
23162
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
23163
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
23164
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
23165
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
22848
23166
|
}, z.core.$strip>>;
|
|
22849
23167
|
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22850
23168
|
name: z.ZodString;
|
|
@@ -22871,6 +23189,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22871
23189
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22872
23190
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22873
23191
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
23192
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
22874
23193
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22875
23194
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22876
23195
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -23120,6 +23439,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23120
23439
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23121
23440
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23122
23441
|
}, z.core.$strip>>;
|
|
23442
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
23443
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23444
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23445
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23446
|
+
}, z.core.$strip>>;
|
|
23123
23447
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23124
23448
|
value: z.ZodOptional<z.ZodNumber>;
|
|
23125
23449
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23188,6 +23512,9 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23188
23512
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
23189
23513
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
23190
23514
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
23515
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
23516
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
23517
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
23191
23518
|
}, z.core.$strip>>;
|
|
23192
23519
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
23193
23520
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -23207,6 +23534,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23207
23534
|
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
23208
23535
|
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
23209
23536
|
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
23537
|
+
aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
|
|
23210
23538
|
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
23211
23539
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
23212
23540
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
@@ -24000,6 +24328,49 @@ declare function parseDate(value: any): Date | undefined;
|
|
|
24000
24328
|
declare function isBusinessDay(date: Date): boolean;
|
|
24001
24329
|
declare function getBusinessDaysBetween(startDate: Date, endDate: Date): Set<string>;
|
|
24002
24330
|
|
|
24331
|
+
declare const AI_GATEWAY_SUPPORTED_MODELS: readonly [{
|
|
24332
|
+
readonly id: "anthropic/claude-sonnet-4.6";
|
|
24333
|
+
readonly name: "Claude Sonnet 4.6";
|
|
24334
|
+
}, {
|
|
24335
|
+
readonly id: "anthropic/claude-opus-4.6";
|
|
24336
|
+
readonly name: "Claude Opus 4.6";
|
|
24337
|
+
}, {
|
|
24338
|
+
readonly id: "anthropic/claude-sonnet-4.5";
|
|
24339
|
+
readonly name: "Claude Sonnet 4.5";
|
|
24340
|
+
}, {
|
|
24341
|
+
readonly id: "anthropic/claude-opus-4.5";
|
|
24342
|
+
readonly name: "Claude Opus 4.5";
|
|
24343
|
+
}, {
|
|
24344
|
+
readonly id: "openai/gpt-5.2";
|
|
24345
|
+
readonly name: "GPT-5.2";
|
|
24346
|
+
}, {
|
|
24347
|
+
readonly id: "openai/gpt-5-nano";
|
|
24348
|
+
readonly name: "GPT-5 Nano";
|
|
24349
|
+
}, {
|
|
24350
|
+
readonly id: "google/gemini-3-pro-preview";
|
|
24351
|
+
readonly name: "Gemini 3 Pro";
|
|
24352
|
+
}, {
|
|
24353
|
+
readonly id: "moonshotai/kimi-k2.5";
|
|
24354
|
+
readonly name: "Kimi K2.5";
|
|
24355
|
+
}];
|
|
24356
|
+
declare const AI_GATEWAY_SUPPORTED_MODEL_IDS: [(typeof AI_GATEWAY_SUPPORTED_MODELS)[number]["id"], ...(typeof AI_GATEWAY_SUPPORTED_MODELS)[number]["id"][]];
|
|
24357
|
+
declare const AIGatewaySupportedModelIdSchema: z.ZodEnum<{
|
|
24358
|
+
"anthropic/claude-sonnet-4.6": "anthropic/claude-sonnet-4.6";
|
|
24359
|
+
"anthropic/claude-opus-4.6": "anthropic/claude-opus-4.6";
|
|
24360
|
+
"anthropic/claude-sonnet-4.5": "anthropic/claude-sonnet-4.5";
|
|
24361
|
+
"anthropic/claude-opus-4.5": "anthropic/claude-opus-4.5";
|
|
24362
|
+
"openai/gpt-5.2": "openai/gpt-5.2";
|
|
24363
|
+
"openai/gpt-5-nano": "openai/gpt-5-nano";
|
|
24364
|
+
"google/gemini-3-pro-preview": "google/gemini-3-pro-preview";
|
|
24365
|
+
"moonshotai/kimi-k2.5": "moonshotai/kimi-k2.5";
|
|
24366
|
+
}>;
|
|
24367
|
+
type AIGatewaySupportedModelId = z.infer<typeof AIGatewaySupportedModelIdSchema>;
|
|
24368
|
+
declare const DEFAULT_AI_GATEWAY_MODEL_ID: AIGatewaySupportedModelId;
|
|
24369
|
+
declare const AI_GATEWAY_PROVIDER_MODELS: Readonly<Record<AIGatewaySupportedModelId, {
|
|
24370
|
+
name: string;
|
|
24371
|
+
}>>;
|
|
24372
|
+
declare function isAIGatewaySupportedModelId(modelId: string): modelId is AIGatewaySupportedModelId;
|
|
24373
|
+
|
|
24003
24374
|
declare const StatsFilterQuery: z.ZodObject<{
|
|
24004
24375
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
24005
24376
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
@@ -24164,9 +24535,10 @@ declare enum WebhookTypeEnum {
|
|
|
24164
24535
|
AGENT_SESSION_FINISHED = "agent-session-finished",
|
|
24165
24536
|
SEND_ALERT_EMAIL = "send-alert-email",
|
|
24166
24537
|
PUBLIC_PACKAGE_ACTION_RUN_FAILED = "public-package-action-run-failed",
|
|
24167
|
-
BETTER_AUTH_SIGNUP_VERIFY = "better-auth-signup-verify"
|
|
24538
|
+
BETTER_AUTH_SIGNUP_VERIFY = "better-auth-signup-verify",
|
|
24539
|
+
BETTER_AUTH_RESET_PASSWORD = "better-auth-reset-password"
|
|
24168
24540
|
}
|
|
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;
|
|
24541
|
+
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
24542
|
interface Webhook {
|
|
24171
24543
|
type: WebhookType;
|
|
24172
24544
|
url: string;
|
|
@@ -24896,6 +25268,24 @@ declare const MembraneInstance: z.ZodObject<{
|
|
|
24896
25268
|
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24897
25269
|
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24898
25270
|
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
25271
|
+
}, z.core.$strip>;
|
|
25272
|
+
type MembraneInstanceDto = z.infer<typeof MembraneInstance>;
|
|
25273
|
+
declare const MembraneInstanceAdmin: z.ZodObject<{
|
|
25274
|
+
id: z.ZodString;
|
|
25275
|
+
name: z.ZodString;
|
|
25276
|
+
apiBaseUri: z.ZodString;
|
|
25277
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
25278
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
25279
|
+
type: z.ZodOptional<z.ZodString>;
|
|
25280
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
25281
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
25282
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
25283
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
25284
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
25285
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
25286
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
25287
|
+
orgName: z.ZodOptional<z.ZodString>;
|
|
25288
|
+
workspaceCount: z.ZodOptional<z.ZodNumber>;
|
|
24899
25289
|
clusterName: z.ZodOptional<z.ZodString>;
|
|
24900
25290
|
argoCdUrl: z.ZodOptional<z.ZodURL>;
|
|
24901
25291
|
grafanaUrl: z.ZodOptional<z.ZodURL>;
|
|
@@ -24904,8 +25294,10 @@ declare const MembraneInstance: z.ZodObject<{
|
|
|
24904
25294
|
helmValuesPath: z.ZodOptional<z.ZodURL>;
|
|
24905
25295
|
awsAccountName: z.ZodOptional<z.ZodString>;
|
|
24906
25296
|
awsSsoUrl: z.ZodOptional<z.ZodURL>;
|
|
25297
|
+
sentryConsoleProjectId: z.ZodOptional<z.ZodString>;
|
|
25298
|
+
sentryApiProjectId: z.ZodOptional<z.ZodString>;
|
|
24907
25299
|
}, z.core.$strip>;
|
|
24908
|
-
type
|
|
25300
|
+
type MembraneInstanceAdmin = z.infer<typeof MembraneInstanceAdmin>;
|
|
24909
25301
|
declare const CreateMembraneInstanceRequest: z.ZodObject<{
|
|
24910
25302
|
name: z.ZodString;
|
|
24911
25303
|
apiBaseUri: z.ZodString;
|
|
@@ -24926,6 +25318,8 @@ declare const UpdateMembraneInstanceRequest: z.ZodObject<{
|
|
|
24926
25318
|
helmValuesPath: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
24927
25319
|
awsAccountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24928
25320
|
awsSsoUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
25321
|
+
sentryConsoleProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25322
|
+
sentryApiProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24929
25323
|
}, z.core.$strict>;
|
|
24930
25324
|
type UpdateMembraneInstanceRequest = z.infer<typeof UpdateMembraneInstanceRequest>;
|
|
24931
25325
|
declare const ListMembraneInstancesQuery: z.ZodObject<{
|
|
@@ -24949,44 +25343,10 @@ declare const ListMembraneInstancesResponse: z.ZodObject<{
|
|
|
24949
25343
|
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24950
25344
|
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24951
25345
|
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
25346
|
}, z.core.$strip>>;
|
|
24961
25347
|
cursor: z.ZodOptional<z.ZodString>;
|
|
24962
25348
|
}, z.core.$strip>;
|
|
24963
25349
|
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
25350
|
|
|
24991
25351
|
declare const OrgInstanceType: z.ZodEnum<{
|
|
24992
25352
|
"membrane-hosted": "membrane-hosted";
|
|
@@ -25095,5 +25455,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
25095
25455
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
25096
25456
|
}
|
|
25097
25457
|
|
|
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 };
|
|
25458
|
+
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 };
|
|
25459
|
+
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 };
|