@membranehq/sdk 0.18.1 → 0.19.0
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 +198 -9
- package/dist/bundle.js +1066 -765
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +8 -1
- package/dist/dts/accessors/integrations-accessors.d.ts +7 -0
- package/dist/dts/agent/session.d.ts +3 -2
- package/dist/dts/agent/worker-contracts.d.ts +4 -0
- package/dist/dts/auth/auth-context-permissions.d.ts +2 -0
- package/dist/dts/client-tokens/types.d.ts +1 -1
- package/dist/dts/oauth/types.d.ts +1 -0
- package/dist/dts/oauth/types.test.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +4 -1
- package/dist/dts/validation/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +32 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +34 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +52 -6
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +44 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +50 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +26 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +44 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +12 -4
- package/dist/dts/workspace-elements/base/action-instances/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/connections/index.d.ts +27 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +13 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +10 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/packages/index.d.ts +7 -2
- package/dist/dts/workspace-elements/types.d.ts +13 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
- package/dist/dts/workspaces/types.d.ts +4 -0
- package/dist/index.browser.d.mts +567 -91
- package/dist/index.browser.d.ts +567 -91
- package/dist/index.browser.js +184 -103
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +180 -104
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +567 -91
- package/dist/index.node.d.ts +567 -91
- package/dist/index.node.js +184 -103
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +180 -104
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -65,6 +65,13 @@ export declare class ConnectionAccessor {
|
|
|
65
65
|
archivedAt?: string | undefined;
|
|
66
66
|
isDeactivated?: boolean | undefined;
|
|
67
67
|
meta?: Record<string, any> | undefined;
|
|
68
|
+
agentSessionId?: string | undefined;
|
|
69
|
+
clientAction?: {
|
|
70
|
+
type: "connect" | "provide-input";
|
|
71
|
+
description: string;
|
|
72
|
+
uiUrl?: string | undefined;
|
|
73
|
+
agentInstructions?: string | undefined;
|
|
74
|
+
} | undefined;
|
|
68
75
|
tenantId?: string | undefined;
|
|
69
76
|
user?: {
|
|
70
77
|
id: string;
|
|
@@ -120,7 +127,7 @@ export declare class ConnectionAccessor {
|
|
|
120
127
|
}> | undefined;
|
|
121
128
|
} | undefined;
|
|
122
129
|
} | null>;
|
|
123
|
-
openReconnectUI(
|
|
130
|
+
openReconnectUI(_options?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
124
131
|
refreshCredentials(): Promise<void>;
|
|
125
132
|
getPath(subpath?: string, query?: Record<string, any>): string;
|
|
126
133
|
}
|
|
@@ -72,6 +72,13 @@ export declare class IntegrationAccessor extends ElementAccessor<IntegrationApiR
|
|
|
72
72
|
archivedAt?: string | undefined;
|
|
73
73
|
isDeactivated?: boolean | undefined;
|
|
74
74
|
meta?: Record<string, any> | undefined;
|
|
75
|
+
agentSessionId?: string | undefined;
|
|
76
|
+
clientAction?: {
|
|
77
|
+
type: "connect" | "provide-input";
|
|
78
|
+
description: string;
|
|
79
|
+
uiUrl?: string | undefined;
|
|
80
|
+
agentInstructions?: string | undefined;
|
|
81
|
+
} | undefined;
|
|
75
82
|
tenantId?: string | undefined;
|
|
76
83
|
user?: {
|
|
77
84
|
id: string;
|
|
@@ -25,7 +25,6 @@ export declare const AgentSession: z.ZodObject<{
|
|
|
25
25
|
id: z.ZodString;
|
|
26
26
|
workspaceId: z.ZodString;
|
|
27
27
|
orgWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
28
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
29
28
|
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
30
29
|
workspaceElementId: z.ZodString;
|
|
31
30
|
type: z.ZodString;
|
|
@@ -44,6 +43,8 @@ export declare const AgentSession: z.ZodObject<{
|
|
|
44
43
|
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
45
44
|
createdAt: z.ZodISODateTime;
|
|
46
45
|
updatedAt: z.ZodISODateTime;
|
|
46
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
47
|
+
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
47
48
|
}, z.core.$strip>;
|
|
48
49
|
export type AgentSession = z.infer<typeof AgentSession>;
|
|
49
50
|
export declare const CreateAgentSession: z.ZodObject<{
|
|
@@ -63,7 +64,7 @@ export declare const AgentSessionInputSchema: z.ZodObject<{
|
|
|
63
64
|
export type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
64
65
|
export declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
65
66
|
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
66
|
-
lastActivityAt: z.ZodOptional<z.
|
|
67
|
+
lastActivityAt: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>>;
|
|
67
68
|
title: z.ZodOptional<z.ZodString>;
|
|
68
69
|
summary: z.ZodOptional<z.ZodString>;
|
|
69
70
|
cost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23,6 +23,10 @@ export declare const SessionParameters: z.ZodObject<{
|
|
|
23
23
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
24
24
|
modelId: z.ZodOptional<z.ZodString>;
|
|
25
25
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
26
|
+
engine: z.ZodOptional<z.ZodEnum<{
|
|
27
|
+
opencode: "opencode";
|
|
28
|
+
inline: "inline";
|
|
29
|
+
}>>;
|
|
26
30
|
}, z.core.$strip>;
|
|
27
31
|
export type SessionParameters = z.infer<typeof SessionParameters>;
|
|
28
32
|
export interface SessionStatus {
|
|
@@ -16,6 +16,7 @@ declare const OrgPermissionsSchema: z.ZodObject<{
|
|
|
16
16
|
declare const WorkspacePermissionsSchema: z.ZodObject<{
|
|
17
17
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
18
18
|
isWorkspaceManager: z.ZodBoolean;
|
|
19
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
19
20
|
scopes: z.ZodArray<z.ZodString>;
|
|
20
21
|
}, z.core.$strip>;
|
|
21
22
|
declare const TenantPermissionsSchema: z.ZodObject<{
|
|
@@ -42,6 +43,7 @@ export declare const AuthContextPermissionsSchema: z.ZodObject<{
|
|
|
42
43
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
43
44
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
44
45
|
isWorkspaceManager: z.ZodBoolean;
|
|
46
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
45
47
|
scopes: z.ZodArray<z.ZodString>;
|
|
46
48
|
}, z.core.$strip>>;
|
|
47
49
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -52,7 +52,7 @@ export declare const CreateClientTokenRequest: z.ZodObject<{
|
|
|
52
52
|
grantId: z.ZodString;
|
|
53
53
|
grantName: z.ZodString;
|
|
54
54
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
55
|
-
|
|
55
|
+
clientKey: z.ZodOptional<z.ZodString>;
|
|
56
56
|
}, z.core.$strip>;
|
|
57
57
|
export type CreateClientTokenRequest = z.infer<typeof CreateClientTokenRequest>;
|
|
58
58
|
export declare const ClientTokenListResponse: z.ZodObject<{
|
|
@@ -4,6 +4,7 @@ export declare const OAUTH_SCOPE_PLATFORM_USER: "platform-user";
|
|
|
4
4
|
export declare const OAUTH_SCOPE_TENANT: "tenant";
|
|
5
5
|
export declare const OAUTH_SCOPES: readonly ["platform-user", "tenant"];
|
|
6
6
|
export type OAuthScope = (typeof OAUTH_SCOPES)[number];
|
|
7
|
+
export declare function selectHighestPriorityScope(scopes: string[]): string | undefined;
|
|
7
8
|
export declare const OAuthTokenResponse: z.ZodObject<{
|
|
8
9
|
access_token: z.ZodString;
|
|
9
10
|
token_type: z.ZodString;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ export declare enum OrgPlan {
|
|
|
20
20
|
}
|
|
21
21
|
export declare enum OrgUserRole {
|
|
22
22
|
Admin = "admin",
|
|
23
|
-
Member = "member"
|
|
23
|
+
Member = "member",
|
|
24
|
+
ReadOnly = "read-only"
|
|
24
25
|
}
|
|
25
26
|
export declare enum OrgUserStatus {
|
|
26
27
|
Invited = "invited",
|
|
@@ -603,6 +604,7 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
603
604
|
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
604
605
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
605
606
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
607
|
+
useInlineAgent: z.ZodOptional<z.ZodBoolean>;
|
|
606
608
|
}, z.core.$strip>>;
|
|
607
609
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
608
610
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -707,6 +709,7 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
707
709
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
708
710
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
709
711
|
isWorkspaceManager: z.ZodBoolean;
|
|
712
|
+
isReadOnly: z.ZodDefault<z.ZodBoolean>;
|
|
710
713
|
scopes: z.ZodArray<z.ZodString>;
|
|
711
714
|
}, z.core.$strip>>;
|
|
712
715
|
tenant: z.ZodOptional<z.ZodObject<{
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const zodDateCoercion: () => z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
2
3
|
export declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
|
|
@@ -34,6 +34,8 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
34
34
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
35
35
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
36
36
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
37
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
38
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
37
39
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
38
40
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
39
41
|
inputSchema: z.ZodOptional<z.ZodType<import("../../data-schema").DataSchema, unknown, z.core.$ZodTypeInternals<import("../../data-schema").DataSchema, unknown>>>;
|
|
@@ -51,6 +53,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
51
53
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
52
54
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
53
55
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
56
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
54
57
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
55
58
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
56
59
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -71,6 +74,8 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
71
74
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
72
75
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
73
76
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
77
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
78
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
74
79
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
75
80
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
76
81
|
inputSchema: z.ZodOptional<z.ZodType<import("../../data-schema").DataSchema, unknown, z.core.$ZodTypeInternals<import("../../data-schema").DataSchema, unknown>>>;
|
|
@@ -88,6 +93,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
88
93
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
89
94
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
90
95
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
96
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
91
97
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
92
98
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
93
99
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -165,6 +171,16 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
165
171
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
166
172
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
167
173
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
174
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
175
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
176
|
+
type: z.ZodEnum<{
|
|
177
|
+
connect: "connect";
|
|
178
|
+
"provide-input": "provide-input";
|
|
179
|
+
}>;
|
|
180
|
+
description: z.ZodString;
|
|
181
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
182
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
183
|
+
}, z.core.$strip>>;
|
|
168
184
|
userId: z.ZodString;
|
|
169
185
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
170
186
|
}, z.core.$strip>>;
|
|
@@ -236,6 +252,8 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
236
252
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
237
253
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
238
254
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
255
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
256
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
239
257
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
240
258
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
241
259
|
inputSchema: z.ZodOptional<z.ZodType<import("../../data-schema").DataSchema, unknown, z.core.$ZodTypeInternals<import("../../data-schema").DataSchema, unknown>>>;
|
|
@@ -253,6 +271,7 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
253
271
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
254
272
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
255
273
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
274
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
256
275
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
257
276
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
258
277
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -273,6 +292,8 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
273
292
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
274
293
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
275
294
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
295
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
296
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
276
297
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
277
298
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
278
299
|
inputSchema: z.ZodOptional<z.ZodType<import("../../data-schema").DataSchema, unknown, z.core.$ZodTypeInternals<import("../../data-schema").DataSchema, unknown>>>;
|
|
@@ -290,6 +311,7 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
290
311
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
291
312
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
292
313
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
314
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
293
315
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
294
316
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
295
317
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -367,6 +389,16 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
367
389
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
368
390
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
369
391
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
392
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
393
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
394
|
+
type: z.ZodEnum<{
|
|
395
|
+
connect: "connect";
|
|
396
|
+
"provide-input": "provide-input";
|
|
397
|
+
}>;
|
|
398
|
+
description: z.ZodString;
|
|
399
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
400
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
401
|
+
}, z.core.$strip>>;
|
|
370
402
|
userId: z.ZodString;
|
|
371
403
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
372
404
|
}, z.core.$strip>>;
|
|
@@ -15,6 +15,8 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
15
15
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
16
16
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
17
17
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
18
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
19
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
18
20
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
19
21
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
20
22
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -32,6 +34,7 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
32
34
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
33
35
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
34
36
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
37
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
35
38
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
36
39
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
37
40
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -110,6 +113,8 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
110
113
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
111
114
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
112
115
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
116
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
117
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
113
118
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
114
119
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
115
120
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -127,6 +132,7 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
127
132
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
128
133
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
129
134
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
135
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
130
136
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
131
137
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
132
138
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -148,6 +154,8 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
148
154
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
149
155
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
150
156
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
157
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
158
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
151
159
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
152
160
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
153
161
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -165,6 +173,7 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
165
173
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
166
174
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
167
175
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
176
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
168
177
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
169
178
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
170
179
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -262,6 +271,9 @@ export declare const CreateActionRequest: z.ZodObject<{
|
|
|
262
271
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
263
272
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
264
273
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
274
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
275
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
276
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
265
277
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
266
278
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
267
279
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -269,6 +281,7 @@ export declare const CreateActionRequest: z.ZodObject<{
|
|
|
269
281
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
270
282
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
271
283
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
284
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
272
285
|
}, z.core.$strip>;
|
|
273
286
|
export type CreateActionRequest = z.infer<typeof CreateActionRequest>;
|
|
274
287
|
export declare const UpdateActionRequest: z.ZodObject<{
|
|
@@ -284,6 +297,9 @@ export declare const UpdateActionRequest: z.ZodObject<{
|
|
|
284
297
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
285
298
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
286
299
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
300
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
301
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
302
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
287
303
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
288
304
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
289
305
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -291,6 +307,7 @@ export declare const UpdateActionRequest: z.ZodObject<{
|
|
|
291
307
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
292
308
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
293
309
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
310
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
294
311
|
}, z.core.$strip>;
|
|
295
312
|
export type UpdateActionRequest = z.infer<typeof UpdateActionRequest>;
|
|
296
313
|
export declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
@@ -306,6 +323,9 @@ export declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
306
323
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
307
324
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
308
325
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
326
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
327
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
328
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
309
329
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
310
330
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
311
331
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -313,6 +333,7 @@ export declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
313
333
|
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
314
334
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
315
335
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
336
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
316
337
|
}, z.core.$strip>;
|
|
317
338
|
export type CreateActionInstanceRequest = CreateActionRequest;
|
|
318
339
|
export declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
@@ -328,6 +349,9 @@ export declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
328
349
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
329
350
|
parentKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
330
351
|
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
352
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
353
|
+
externalAppUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
354
|
+
externalAppKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
331
355
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
332
356
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
333
357
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -335,6 +359,7 @@ export declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
335
359
|
config: z.ZodOptional<z.ZodOptional<z.ZodObject<{}, z.core.$loose>>>;
|
|
336
360
|
outputMapping: z.ZodOptional<z.ZodOptional<z.ZodAny>>;
|
|
337
361
|
customOutputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
362
|
+
intent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
338
363
|
}, z.core.$strip>;
|
|
339
364
|
export type UpdateActionInstanceRequest = UpdateActionRequest;
|
|
340
365
|
export declare const RunActionRequest: z.ZodObject<{
|
|
@@ -362,6 +387,8 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
362
387
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
363
388
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
364
389
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
390
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
391
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
365
392
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
366
393
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
367
394
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -379,6 +406,7 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
379
406
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
380
407
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
381
408
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
409
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
382
410
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
383
411
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
384
412
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -457,6 +485,8 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
457
485
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
458
486
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
459
487
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
488
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
489
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
460
490
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
461
491
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
462
492
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -474,6 +504,7 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
474
504
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
475
505
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
476
506
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
507
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
477
508
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
478
509
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
479
510
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -495,6 +526,8 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
495
526
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
496
527
|
parentKey: z.ZodOptional<z.ZodString>;
|
|
497
528
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
529
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
530
|
+
externalAppKey: z.ZodOptional<z.ZodString>;
|
|
498
531
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
499
532
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
500
533
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -512,6 +545,7 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
512
545
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
513
546
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
514
547
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
548
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
515
549
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
516
550
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
517
551
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7,6 +7,7 @@ export declare const FindAppDataSchemaInstancesQuery: z.ZodObject<{
|
|
|
7
7
|
userId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
appDataSchemaId: z.ZodOptional<z.ZodString>;
|
|
9
9
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10
11
|
}, z.core.$strip>;
|
|
11
12
|
export type FindAppDataSchemaInstancesQuery = z.infer<typeof FindAppDataSchemaInstancesQuery>;
|
|
12
13
|
export interface AppDataSchemaInstanceSelector {
|
|
@@ -19,15 +19,15 @@ export declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
19
19
|
includeSecrets: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
export type FindConnectionsQuery = z.infer<typeof FindConnectionsQuery>;
|
|
22
|
+
export declare const EnsureConnectionRequest: z.ZodObject<{
|
|
23
|
+
intent: z.ZodString;
|
|
24
|
+
name: z.ZodOptional<z.ZodString>;
|
|
25
|
+
}, z.core.$strip>;
|
|
26
|
+
export type EnsureConnectionRequest = z.infer<typeof EnsureConnectionRequest>;
|
|
22
27
|
export declare const CreateConnectionRequest: z.ZodObject<{
|
|
23
28
|
name: z.ZodOptional<z.ZodString>;
|
|
24
29
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25
30
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
26
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
27
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
28
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
29
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
30
|
-
input: z.ZodOptional<z.ZodUnknown>;
|
|
31
31
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
32
32
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
33
33
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -35,24 +35,40 @@ export declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
35
35
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
36
36
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
37
37
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
38
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
39
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
40
|
+
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
41
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
42
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
43
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
38
44
|
}, z.core.$strip>;
|
|
39
45
|
export type CreateConnectionRequest = z.infer<typeof CreateConnectionRequest>;
|
|
40
46
|
export declare const UpdateConnectionRequest: z.ZodObject<{
|
|
41
47
|
name: z.ZodOptional<z.ZodString>;
|
|
42
48
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
43
49
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
50
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
51
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
52
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
53
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
54
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
55
|
+
connectorKey: z.ZodOptional<z.ZodString>;
|
|
56
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
44
57
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
45
58
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
46
59
|
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
47
60
|
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
48
61
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
62
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
49
63
|
}, z.core.$strip>;
|
|
50
64
|
export type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
51
65
|
export declare const ConnectionExportProperties: z.ZodObject<{
|
|
52
66
|
name: z.ZodOptional<z.ZodString>;
|
|
53
67
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
54
|
-
|
|
68
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
55
69
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
70
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
71
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
56
72
|
}, z.core.$strip>;
|
|
57
73
|
export type ConnectionExportProperties = z.infer<typeof ConnectionExportProperties>;
|
|
58
74
|
export declare const ConnectionTestResponse: z.ZodObject<{
|
|
@@ -110,6 +126,16 @@ export declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
110
126
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
111
127
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
112
128
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
129
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
130
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
131
|
+
type: z.ZodEnum<{
|
|
132
|
+
connect: "connect";
|
|
133
|
+
"provide-input": "provide-input";
|
|
134
|
+
}>;
|
|
135
|
+
description: z.ZodString;
|
|
136
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
137
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
138
|
+
}, z.core.$strip>>;
|
|
113
139
|
userId: z.ZodString;
|
|
114
140
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
115
141
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -198,6 +224,16 @@ export declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
198
224
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
199
225
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
200
226
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
227
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
228
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
229
|
+
type: z.ZodEnum<{
|
|
230
|
+
connect: "connect";
|
|
231
|
+
"provide-input": "provide-input";
|
|
232
|
+
}>;
|
|
233
|
+
description: z.ZodString;
|
|
234
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
235
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
236
|
+
}, z.core.$strip>>;
|
|
201
237
|
userId: z.ZodString;
|
|
202
238
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
203
239
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -294,6 +330,16 @@ export declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
294
330
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
295
331
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
296
332
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
333
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
334
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
335
|
+
type: z.ZodEnum<{
|
|
336
|
+
connect: "connect";
|
|
337
|
+
"provide-input": "provide-input";
|
|
338
|
+
}>;
|
|
339
|
+
description: z.ZodString;
|
|
340
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
341
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
342
|
+
}, z.core.$strip>>;
|
|
297
343
|
userId: z.ZodString;
|
|
298
344
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
299
345
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -13,6 +13,7 @@ export declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
|
|
|
13
13
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14
14
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
15
15
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
16
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
16
17
|
}, z.core.$strip>;
|
|
17
18
|
export type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
|
|
18
19
|
export interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
@@ -161,6 +162,16 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
161
162
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
162
163
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
163
164
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
165
|
+
agentSessionId: z.ZodOptional<z.ZodString>;
|
|
166
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
167
|
+
type: z.ZodEnum<{
|
|
168
|
+
connect: "connect";
|
|
169
|
+
"provide-input": "provide-input";
|
|
170
|
+
}>;
|
|
171
|
+
description: z.ZodString;
|
|
172
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
173
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
174
|
+
}, z.core.$strip>>;
|
|
164
175
|
userId: z.ZodString;
|
|
165
176
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
166
177
|
}, z.core.$strip>>;
|