@membranehq/sdk 0.28.0 → 0.28.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +60 -4
- package/dist/bundle.js +233 -126
- 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 +3 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +2 -0
- package/dist/dts/agent/index.d.ts +1 -0
- package/dist/dts/agent/session-cost.d.ts +1 -0
- package/dist/dts/agent/session.d.ts +10 -2
- 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 +19 -35
- package/dist/dts/membrane-instances/types.test.d.ts +1 -0
- package/dist/dts/oauth/types.d.ts +11 -5
- package/dist/dts/orgs/types.d.ts +154 -281
- package/dist/dts/webhooks/types.d.ts +4 -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 +4 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/connected-products-api.d.ts +6 -21
- package/dist/dts/workspace-elements/api/connection-attempt-logs-api.d.ts +53 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +15 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +5 -1
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +5 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +113 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connected-products/index.d.ts +9 -14
- package/dist/dts/workspace-elements/base/connection-attempt-logs/index.d.ts +21 -0
- package/dist/dts/workspace-elements/base/connection-requests/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/connections/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/connectors/functions.d.ts +1 -1
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/connectors/rest-api.d.ts +1 -1
- package/dist/dts/workspace-elements/base/index.d.ts +1 -0
- package/dist/dts/workspace-elements/paths.d.ts +2 -2
- package/dist/dts/workspace-elements/types.d.ts +4 -1
- package/dist/dts/workspaces/api.d.ts +20 -0
- package/dist/dts/workspaces/compare.d.ts +1 -1
- package/dist/dts/workspaces/types.d.ts +29 -0
- package/dist/index.browser.d.mts +637 -373
- package/dist/index.browser.d.ts +637 -373
- package/dist/index.browser.js +307 -47
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +287 -44
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +637 -373
- package/dist/index.node.d.ts +637 -373
- package/dist/index.node.js +307 -47
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +287 -44
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -16,19 +16,19 @@ export declare const AiAgentAudience: z.ZodEnum<{
|
|
|
16
16
|
export type AiAgentAudience = ConnectedProductAudience;
|
|
17
17
|
export declare const AiAgentType: z.ZodEnum<{
|
|
18
18
|
custom: "custom";
|
|
19
|
+
cursor: "cursor";
|
|
20
|
+
"claude-code": "claude-code";
|
|
21
|
+
codex: "codex";
|
|
19
22
|
openclaw: "openclaw";
|
|
23
|
+
copilot: "copilot";
|
|
24
|
+
windsurf: "windsurf";
|
|
20
25
|
claude: "claude";
|
|
21
26
|
chatgpt: "chatgpt";
|
|
22
27
|
}>;
|
|
23
28
|
export type AiAgentType = z.infer<typeof AiAgentType>;
|
|
24
29
|
export declare const AiAgentParameters: z.ZodObject<{
|
|
25
|
-
agentType: z.ZodOptional<z.
|
|
26
|
-
|
|
27
|
-
openclaw: "openclaw";
|
|
28
|
-
claude: "claude";
|
|
29
|
-
chatgpt: "chatgpt";
|
|
30
|
-
}>>;
|
|
31
|
-
}, z.core.$strip>;
|
|
30
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
31
|
+
}, z.core.$loose>;
|
|
32
32
|
export type AiAgentParameters = z.infer<typeof AiAgentParameters>;
|
|
33
33
|
export declare const BaseConnectedProduct: z.ZodObject<{
|
|
34
34
|
id: z.ZodString;
|
|
@@ -43,13 +43,8 @@ export declare const BaseConnectedProduct: z.ZodObject<{
|
|
|
43
43
|
personal: "personal";
|
|
44
44
|
}>>;
|
|
45
45
|
parameters: z.ZodOptional<z.ZodObject<{
|
|
46
|
-
agentType: z.ZodOptional<z.
|
|
47
|
-
|
|
48
|
-
openclaw: "openclaw";
|
|
49
|
-
claude: "claude";
|
|
50
|
-
chatgpt: "chatgpt";
|
|
51
|
-
}>>;
|
|
52
|
-
}, z.core.$strip>>;
|
|
46
|
+
agentType: z.ZodOptional<z.ZodString>;
|
|
47
|
+
}, z.core.$loose>>;
|
|
53
48
|
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
54
49
|
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
55
50
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { ErrorDataSchema } from '../../../errors';
|
|
3
|
+
export declare const BaseConnectionAttemptLog: z.ZodObject<{
|
|
4
|
+
userId: z.ZodString;
|
|
5
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
6
|
+
id: z.ZodString;
|
|
7
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
9
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
11
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
12
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
13
|
+
connectionRequestId: z.ZodOptional<z.ZodString>;
|
|
14
|
+
status: z.ZodEnum<{
|
|
15
|
+
success: "success";
|
|
16
|
+
error: "error";
|
|
17
|
+
}>;
|
|
18
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
19
|
+
createdAt: z.ZodString;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
export type BaseConnectionAttemptLog = z.infer<typeof BaseConnectionAttemptLog>;
|
|
@@ -11,6 +11,7 @@ export declare const CreateConnectionRequestPayload: z.ZodObject<{
|
|
|
11
11
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
12
12
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
13
13
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
14
15
|
name: z.ZodOptional<z.ZodString>;
|
|
15
16
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
16
17
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -29,6 +30,7 @@ export declare const ConnectionRequest: z.ZodObject<{
|
|
|
29
30
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
30
31
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
31
32
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
33
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
32
34
|
name: z.ZodOptional<z.ZodString>;
|
|
33
35
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
34
36
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -6,6 +6,7 @@ export declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
6
6
|
name: z.ZodOptional<z.ZodString>;
|
|
7
7
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8
8
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
9
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9
10
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
10
11
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11
12
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -33,7 +34,9 @@ export type ConnectionClientAction = z.infer<typeof ConnectionClientAction>;
|
|
|
33
34
|
export declare const BaseConnection: z.ZodObject<{
|
|
34
35
|
id: z.ZodString;
|
|
35
36
|
name: z.ZodString;
|
|
37
|
+
key: z.ZodOptional<z.ZodString>;
|
|
36
38
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
39
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
37
40
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
38
41
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
39
42
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -3,7 +3,7 @@ import { ConnectorAuthWithFunctions, ConnectorOption } from '.';
|
|
|
3
3
|
import { DataSchema } from '../../../data-schema';
|
|
4
4
|
import { FunctionType } from '../../../functions/base';
|
|
5
5
|
import { ConnectorAuthType } from './auth';
|
|
6
|
-
export declare function getEffectiveConnectorOption(connector: ConnectorVersionData, optionKey: string): ConnectorOption;
|
|
6
|
+
export declare function getEffectiveConnectorOption(connector: ConnectorVersionData, optionKey: string): ConnectorOption | undefined;
|
|
7
7
|
export interface ConnectorFunctionSpec {
|
|
8
8
|
authTypes?: ConnectorAuthType[];
|
|
9
9
|
getInputSchema?: (authConfig: ConnectorAuthWithFunctions) => DataSchema | undefined;
|
|
@@ -3974,6 +3974,7 @@ export declare const BaseConnector: z.ZodObject<{
|
|
|
3974
3974
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
3975
3975
|
popularity: z.ZodOptional<z.ZodNumber>;
|
|
3976
3976
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
3977
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
3977
3978
|
}, z.core.$strip>;
|
|
3978
3979
|
export type BaseConnector = z.infer<typeof BaseConnector>;
|
|
3979
3980
|
export declare const Connector: z.ZodObject<{
|
|
@@ -3987,6 +3988,7 @@ export declare const Connector: z.ZodObject<{
|
|
|
3987
3988
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
3988
3989
|
popularity: z.ZodOptional<z.ZodNumber>;
|
|
3989
3990
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
3991
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
3990
3992
|
baseUri: z.ZodString;
|
|
3991
3993
|
revision: z.ZodOptional<z.ZodString>;
|
|
3992
3994
|
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -56,7 +56,7 @@ export interface RestApiClientOptions {
|
|
|
56
56
|
};
|
|
57
57
|
returnFullResponse?: boolean;
|
|
58
58
|
responseHandlers?: Array<RestApiClientResponseHandler>;
|
|
59
|
-
dynamicOptions?: (input: RestApiClientInput) => RestApiClientOptions
|
|
59
|
+
dynamicOptions?: (input: RestApiClientInput) => RestApiClientOptions | Promise<RestApiClientOptions>;
|
|
60
60
|
binary?: boolean;
|
|
61
61
|
stream?: boolean;
|
|
62
62
|
onError?: (error: any) => any;
|
|
@@ -6,5 +6,5 @@ export declare function parseMembraneElementPath(relativePath: string): {
|
|
|
6
6
|
key: string;
|
|
7
7
|
integrationKey?: string;
|
|
8
8
|
} | undefined;
|
|
9
|
-
export declare function getConnectorSpecPath(
|
|
10
|
-
export declare function getConnectorVersionPath(
|
|
9
|
+
export declare function getConnectorSpecPath(connectorUuid: string): string;
|
|
10
|
+
export declare function getConnectorVersionPath(connectorUuid: string, version: string): string;
|
|
@@ -58,7 +58,8 @@ export declare enum WorkspaceElementState {
|
|
|
58
58
|
CLIENT_ACTION_REQUIRED = "CLIENT_ACTION_REQUIRED",
|
|
59
59
|
CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
|
|
60
60
|
SETUP_FAILED = "SETUP_FAILED",
|
|
61
|
-
READY = "READY"
|
|
61
|
+
READY = "READY",
|
|
62
|
+
DISCONNECTING = "DISCONNECTING"
|
|
62
63
|
}
|
|
63
64
|
export declare enum WorkspaceElementDependencyType {
|
|
64
65
|
Configuration = "CONFIGURATION",
|
|
@@ -173,6 +174,7 @@ export declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject
|
|
|
173
174
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
174
175
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
175
176
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
177
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
176
178
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
177
179
|
}, z.core.$strip>;
|
|
178
180
|
export type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
|
|
@@ -180,6 +182,7 @@ export declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
|
180
182
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
181
183
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
182
184
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
185
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
183
186
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
184
187
|
search: z.ZodOptional<z.ZodString>;
|
|
185
188
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -11,6 +11,9 @@ export declare const CreateWorkspaceRequest: z.ZodObject<{
|
|
|
11
11
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
12
12
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
13
13
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
14
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
15
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
16
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
14
17
|
}, z.core.$strip>>;
|
|
15
18
|
}, z.core.$strip>;
|
|
16
19
|
export type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
|
|
@@ -39,6 +42,9 @@ export declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
39
42
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
40
43
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
41
44
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
45
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
47
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
42
48
|
}, z.core.$strip>>;
|
|
43
49
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
44
50
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -58,6 +64,7 @@ export declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
58
64
|
parallelApiRequestsPerCustomer: import("../alerts").AlertType.parallelApiRequestsPerCustomer;
|
|
59
65
|
engineCreditsExhaustionProjected: import("../alerts").AlertType.engineCreditsExhaustionProjected;
|
|
60
66
|
engineCreditsExhaustionActual: import("../alerts").AlertType.engineCreditsExhaustionActual;
|
|
67
|
+
aiCreditsDebtAccumulated: import("../alerts").AlertType.aiCreditsDebtAccumulated;
|
|
61
68
|
totalNumberOfDatabaseEntitiesPerCustomer: import("../alerts").AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
62
69
|
totalNumberOfCustomers: import("../alerts").AlertType.totalNumberOfCustomers;
|
|
63
70
|
totalNumberOfConnections: import("../alerts").AlertType.totalNumberOfConnections;
|
|
@@ -226,6 +233,11 @@ export declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
|
226
233
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
227
234
|
unit: z.ZodEnum<typeof import("./types").LimitUnits>;
|
|
228
235
|
}, z.core.$strip>>>;
|
|
236
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
237
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
238
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
239
|
+
unit: z.ZodEnum<typeof import("./types").LimitUnits>;
|
|
240
|
+
}, z.core.$strip>>>;
|
|
229
241
|
instantTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
230
242
|
value: z.ZodOptional<z.ZodNumber>;
|
|
231
243
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -311,3 +323,11 @@ export declare const GetWorkspaceQuery: z.ZodObject<{
|
|
|
311
323
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
312
324
|
}, z.core.$strip>;
|
|
313
325
|
export type GetWorkspaceQuery = z.infer<typeof GetWorkspaceQuery>;
|
|
326
|
+
export declare const MembraneCredentials: z.ZodObject<{
|
|
327
|
+
apiUri: z.ZodString;
|
|
328
|
+
workspaceKey: z.ZodString;
|
|
329
|
+
workspaceSecret: z.ZodOptional<z.ZodString>;
|
|
330
|
+
tenantKey: z.ZodOptional<z.ZodString>;
|
|
331
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
332
|
+
}, z.core.$strip>;
|
|
333
|
+
export type MembraneCredentials = z.infer<typeof MembraneCredentials>;
|
|
@@ -21,7 +21,7 @@ export interface WorkspaceElementChangeInfo {
|
|
|
21
21
|
export interface WorkspaceExportComparisonResult {
|
|
22
22
|
comparison: WorkspaceExportComparison;
|
|
23
23
|
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
24
|
-
|
|
24
|
+
baseUuidByTargetUuid: Map<string, string>;
|
|
25
25
|
diff?: string;
|
|
26
26
|
}
|
|
27
27
|
export interface WorkspaceExportComparisonOptions {
|
|
@@ -224,6 +224,11 @@ export declare const WorkspaceLimitsSchema: z.ZodObject<{
|
|
|
224
224
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
225
225
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
226
226
|
}, z.core.$strip>>;
|
|
227
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
228
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
229
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
231
|
+
}, z.core.$strip>>;
|
|
227
232
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
228
233
|
value: z.ZodOptional<z.ZodNumber>;
|
|
229
234
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -303,6 +308,9 @@ export declare const WorkspaceSettingsSchema: z.ZodObject<{
|
|
|
303
308
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
304
309
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
305
310
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
311
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
312
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
313
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
306
314
|
}, z.core.$strip>;
|
|
307
315
|
export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
308
316
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -311,6 +319,9 @@ export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
|
311
319
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
312
320
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
313
321
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
322
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
323
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
324
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
314
325
|
}, z.core.$strip>;
|
|
315
326
|
export declare const WorkspacePublicKey: z.ZodObject<{
|
|
316
327
|
name: z.ZodString;
|
|
@@ -479,6 +490,11 @@ export declare const Workspace: z.ZodObject<{
|
|
|
479
490
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
480
491
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
481
492
|
}, z.core.$strip>>;
|
|
493
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
494
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
495
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
496
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
497
|
+
}, z.core.$strip>>;
|
|
482
498
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
483
499
|
value: z.ZodOptional<z.ZodNumber>;
|
|
484
500
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -547,6 +563,9 @@ export declare const Workspace: z.ZodObject<{
|
|
|
547
563
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
548
564
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
549
565
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
566
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
567
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
568
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
550
569
|
}, z.core.$strip>>;
|
|
551
570
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
552
571
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -566,6 +585,7 @@ export declare const Workspace: z.ZodObject<{
|
|
|
566
585
|
parallelApiRequestsPerCustomer: import("../alerts").AlertType.parallelApiRequestsPerCustomer;
|
|
567
586
|
engineCreditsExhaustionProjected: import("../alerts").AlertType.engineCreditsExhaustionProjected;
|
|
568
587
|
engineCreditsExhaustionActual: import("../alerts").AlertType.engineCreditsExhaustionActual;
|
|
588
|
+
aiCreditsDebtAccumulated: import("../alerts").AlertType.aiCreditsDebtAccumulated;
|
|
569
589
|
totalNumberOfDatabaseEntitiesPerCustomer: import("../alerts").AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
570
590
|
totalNumberOfCustomers: import("../alerts").AlertType.totalNumberOfCustomers;
|
|
571
591
|
totalNumberOfConnections: import("../alerts").AlertType.totalNumberOfConnections;
|
|
@@ -759,6 +779,11 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
759
779
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
760
780
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
761
781
|
}, z.core.$strip>>;
|
|
782
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
784
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
785
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
786
|
+
}, z.core.$strip>>;
|
|
762
787
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
763
788
|
value: z.ZodOptional<z.ZodNumber>;
|
|
764
789
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -827,6 +852,9 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
827
852
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
828
853
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
829
854
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
855
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
856
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
857
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
830
858
|
}, z.core.$strip>>;
|
|
831
859
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
832
860
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -846,6 +874,7 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
846
874
|
parallelApiRequestsPerCustomer: import("../alerts").AlertType.parallelApiRequestsPerCustomer;
|
|
847
875
|
engineCreditsExhaustionProjected: import("../alerts").AlertType.engineCreditsExhaustionProjected;
|
|
848
876
|
engineCreditsExhaustionActual: import("../alerts").AlertType.engineCreditsExhaustionActual;
|
|
877
|
+
aiCreditsDebtAccumulated: import("../alerts").AlertType.aiCreditsDebtAccumulated;
|
|
849
878
|
totalNumberOfDatabaseEntitiesPerCustomer: import("../alerts").AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
850
879
|
totalNumberOfCustomers: import("../alerts").AlertType.totalNumberOfCustomers;
|
|
851
880
|
totalNumberOfConnections: import("../alerts").AlertType.totalNumberOfConnections;
|