@inkeep/agents-core 0.0.0-dev-20260410161635 → 0.0.0-dev-20260410213051
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/auth/auth-schema.d.ts +108 -108
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agents.d.ts +32 -32
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +8 -8
- package/dist/data-access/manage/skills.d.ts +9 -9
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +10 -10
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +12 -12
- package/dist/data-access/manage/tools.d.ts +12 -12
- package/dist/data-access/manage/triggers.d.ts +1 -1
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/apps.d.ts +6 -6
- package/dist/data-access/runtime/conversations.d.ts +28 -28
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/tasks.d.ts +7 -7
- package/dist/db/manage/manage-schema.d.ts +491 -491
- package/dist/db/manage/manage-schema.js +39 -40
- package/dist/db/runtime/runtime-schema.d.ts +405 -405
- package/dist/validation/schemas/skills.d.ts +43 -43
- package/dist/validation/schemas.d.ts +705 -705
- package/package.json +1 -1
- package/dist/db/manage/dolt-safe-jsonb.d.ts +0 -12
- package/dist/db/manage/dolt-safe-jsonb.js +0 -61
package/dist/auth/auth.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { BetterAuthConfig, EmailServiceConfig, OIDCProviderConfig, SAMLProviderC
|
|
|
2
2
|
import { extractCookieDomain, hasCredentialAccount } from "./auth-config-utils.js";
|
|
3
3
|
import * as zod0 from "zod";
|
|
4
4
|
import * as better_auth0 from "better-auth";
|
|
5
|
-
import * as
|
|
5
|
+
import * as better_auth_plugins20 from "better-auth/plugins";
|
|
6
6
|
|
|
7
7
|
//#region src/auth/auth.d.ts
|
|
8
8
|
|
|
@@ -38,10 +38,10 @@ declare function _inferAuthType(): better_auth0.Auth<{
|
|
|
38
38
|
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
39
39
|
}[];
|
|
40
40
|
};
|
|
41
|
-
options:
|
|
41
|
+
options: better_auth_plugins20.BearerOptions | undefined;
|
|
42
42
|
}, {
|
|
43
43
|
id: "oauth-proxy";
|
|
44
|
-
options: NoInfer<
|
|
44
|
+
options: NoInfer<better_auth_plugins20.OAuthProxyOptions>;
|
|
45
45
|
endpoints: {
|
|
46
46
|
oAuthProxy: better_auth0.StrictEndpoint<"/oauth-proxy-callback", {
|
|
47
47
|
method: "GET";
|
|
@@ -93,7 +93,7 @@ declare function _inferAuthType(): better_auth0.Auth<{
|
|
|
93
93
|
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
94
94
|
}[];
|
|
95
95
|
};
|
|
96
|
-
},
|
|
96
|
+
}, better_auth_plugins20.DefaultOrganizationPlugin<{
|
|
97
97
|
schema: {
|
|
98
98
|
invitation: {
|
|
99
99
|
additionalFields: {
|
|
@@ -456,8 +456,8 @@ declare function _inferAuthType(): better_auth0.Auth<{
|
|
|
456
456
|
AUTHENTICATION_REQUIRED: better_auth0.RawError<"AUTHENTICATION_REQUIRED">;
|
|
457
457
|
};
|
|
458
458
|
options: Partial<{
|
|
459
|
-
expiresIn:
|
|
460
|
-
interval:
|
|
459
|
+
expiresIn: better_auth_plugins20.TimeString;
|
|
460
|
+
interval: better_auth_plugins20.TimeString;
|
|
461
461
|
deviceCodeLength: number;
|
|
462
462
|
userCodeLength: number;
|
|
463
463
|
schema: {
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as better_auth_plugins0 from "better-auth/plugins";
|
|
2
2
|
import { AccessControl } from "better-auth/plugins/access";
|
|
3
3
|
import { organizationClient } from "better-auth/client/plugins";
|
|
4
4
|
|
|
5
5
|
//#region src/auth/permissions.d.ts
|
|
6
6
|
declare const ac: AccessControl;
|
|
7
7
|
declare const memberRole: {
|
|
8
|
-
authorize<K_1 extends "project" | "organization" | "member" | "
|
|
9
|
-
actions:
|
|
8
|
+
authorize<K_1 extends "project" | "organization" | "member" | "team" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
9
|
+
actions: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>[key];
|
|
10
10
|
connector: "OR" | "AND";
|
|
11
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
12
|
-
statements:
|
|
11
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
12
|
+
statements: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>;
|
|
13
13
|
};
|
|
14
14
|
declare const adminRole: {
|
|
15
|
-
authorize<K_1 extends "project" | "organization" | "member" | "
|
|
16
|
-
actions:
|
|
15
|
+
authorize<K_1 extends "project" | "organization" | "member" | "team" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
16
|
+
actions: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>[key];
|
|
17
17
|
connector: "OR" | "AND";
|
|
18
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
19
|
-
statements:
|
|
18
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
19
|
+
statements: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>;
|
|
20
20
|
};
|
|
21
21
|
declare const ownerRole: {
|
|
22
|
-
authorize<K_1 extends "project" | "organization" | "member" | "
|
|
23
|
-
actions:
|
|
22
|
+
authorize<K_1 extends "project" | "organization" | "member" | "team" | "ac" | "invitation">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>[key] | {
|
|
23
|
+
actions: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>[key];
|
|
24
24
|
connector: "OR" | "AND";
|
|
25
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
26
|
-
statements:
|
|
25
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
26
|
+
statements: better_auth_plugins0.Subset<"project" | "organization" | "member" | "team" | "ac" | "invitation", better_auth_plugins0.Statements>;
|
|
27
27
|
};
|
|
28
28
|
//#endregion
|
|
29
29
|
export { ac, adminRole, memberRole, organizationClient, ownerRole };
|
|
@@ -11,12 +11,14 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
11
11
|
scopes: AgentScopeConfig;
|
|
12
12
|
}) => Promise<{
|
|
13
13
|
id: string;
|
|
14
|
-
name: string;
|
|
15
|
-
description: string | null;
|
|
16
14
|
createdAt: string;
|
|
15
|
+
name: string;
|
|
17
16
|
updatedAt: string;
|
|
18
17
|
projectId: string;
|
|
19
18
|
tenantId: string;
|
|
19
|
+
description: string | null;
|
|
20
|
+
defaultSubAgentId: string | null;
|
|
21
|
+
contextConfigId: string | null;
|
|
20
22
|
models: {
|
|
21
23
|
base?: {
|
|
22
24
|
model?: string | undefined;
|
|
@@ -37,12 +39,7 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
37
39
|
allowedProviders?: string[] | undefined;
|
|
38
40
|
} | undefined;
|
|
39
41
|
} | null;
|
|
40
|
-
stopWhen: {
|
|
41
|
-
transferCountIs?: number | undefined;
|
|
42
|
-
} | null;
|
|
43
42
|
prompt: string | null;
|
|
44
|
-
defaultSubAgentId: string | null;
|
|
45
|
-
contextConfigId: string | null;
|
|
46
43
|
statusUpdates: {
|
|
47
44
|
enabled?: boolean | undefined;
|
|
48
45
|
numEvents?: number | undefined;
|
|
@@ -58,18 +55,23 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
58
55
|
} | undefined;
|
|
59
56
|
}[] | undefined;
|
|
60
57
|
} | null;
|
|
58
|
+
stopWhen: {
|
|
59
|
+
transferCountIs?: number | undefined;
|
|
60
|
+
} | null;
|
|
61
61
|
executionMode: "classic" | "durable";
|
|
62
62
|
} | null>;
|
|
63
63
|
declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
64
64
|
scopes: AgentScopeConfig;
|
|
65
65
|
}) => Promise<{
|
|
66
66
|
id: string;
|
|
67
|
-
name: string;
|
|
68
|
-
description: string | null;
|
|
69
67
|
createdAt: string;
|
|
68
|
+
name: string;
|
|
70
69
|
updatedAt: string;
|
|
71
70
|
projectId: string;
|
|
72
71
|
tenantId: string;
|
|
72
|
+
description: string | null;
|
|
73
|
+
defaultSubAgentId: string | null;
|
|
74
|
+
contextConfigId: string | null;
|
|
73
75
|
models: {
|
|
74
76
|
base?: {
|
|
75
77
|
model?: string | undefined;
|
|
@@ -90,12 +92,7 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
90
92
|
allowedProviders?: string[] | undefined;
|
|
91
93
|
} | undefined;
|
|
92
94
|
} | null;
|
|
93
|
-
stopWhen: {
|
|
94
|
-
transferCountIs?: number | undefined;
|
|
95
|
-
} | null;
|
|
96
95
|
prompt: string | null;
|
|
97
|
-
defaultSubAgentId: string | null;
|
|
98
|
-
contextConfigId: string | null;
|
|
99
96
|
statusUpdates: {
|
|
100
97
|
enabled?: boolean | undefined;
|
|
101
98
|
numEvents?: number | undefined;
|
|
@@ -111,15 +108,19 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
111
108
|
} | undefined;
|
|
112
109
|
}[] | undefined;
|
|
113
110
|
} | null;
|
|
111
|
+
stopWhen: {
|
|
112
|
+
transferCountIs?: number | undefined;
|
|
113
|
+
} | null;
|
|
114
114
|
executionMode: "classic" | "durable";
|
|
115
115
|
defaultSubAgent: {
|
|
116
116
|
id: string;
|
|
117
|
-
name: string;
|
|
118
|
-
description: string | null;
|
|
119
117
|
createdAt: string;
|
|
118
|
+
name: string;
|
|
120
119
|
updatedAt: string;
|
|
120
|
+
agentId: string;
|
|
121
121
|
projectId: string;
|
|
122
122
|
tenantId: string;
|
|
123
|
+
description: string | null;
|
|
123
124
|
models: {
|
|
124
125
|
base?: {
|
|
125
126
|
model?: string | undefined;
|
|
@@ -140,11 +141,10 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
140
141
|
allowedProviders?: string[] | undefined;
|
|
141
142
|
} | undefined;
|
|
142
143
|
} | null;
|
|
144
|
+
prompt: string | null;
|
|
143
145
|
stopWhen: {
|
|
144
146
|
stepCountIs?: number | undefined;
|
|
145
147
|
} | null;
|
|
146
|
-
agentId: string;
|
|
147
|
-
prompt: string | null;
|
|
148
148
|
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
149
149
|
} | null;
|
|
150
150
|
} | null>;
|
|
@@ -152,12 +152,14 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
152
152
|
scopes: ProjectScopeConfig;
|
|
153
153
|
}) => Promise<{
|
|
154
154
|
id: string;
|
|
155
|
-
name: string;
|
|
156
|
-
description: string | null;
|
|
157
155
|
createdAt: string;
|
|
156
|
+
name: string;
|
|
158
157
|
updatedAt: string;
|
|
159
158
|
projectId: string;
|
|
160
159
|
tenantId: string;
|
|
160
|
+
description: string | null;
|
|
161
|
+
defaultSubAgentId: string | null;
|
|
162
|
+
contextConfigId: string | null;
|
|
161
163
|
models: {
|
|
162
164
|
base?: {
|
|
163
165
|
model?: string | undefined;
|
|
@@ -178,12 +180,7 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
178
180
|
allowedProviders?: string[] | undefined;
|
|
179
181
|
} | undefined;
|
|
180
182
|
} | null;
|
|
181
|
-
stopWhen: {
|
|
182
|
-
transferCountIs?: number | undefined;
|
|
183
|
-
} | null;
|
|
184
183
|
prompt: string | null;
|
|
185
|
-
defaultSubAgentId: string | null;
|
|
186
|
-
contextConfigId: string | null;
|
|
187
184
|
statusUpdates: {
|
|
188
185
|
enabled?: boolean | undefined;
|
|
189
186
|
numEvents?: number | undefined;
|
|
@@ -199,6 +196,9 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
199
196
|
} | undefined;
|
|
200
197
|
}[] | undefined;
|
|
201
198
|
} | null;
|
|
199
|
+
stopWhen: {
|
|
200
|
+
transferCountIs?: number | undefined;
|
|
201
|
+
} | null;
|
|
202
202
|
executionMode: "classic" | "durable";
|
|
203
203
|
}[]>;
|
|
204
204
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -282,12 +282,14 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
|
|
|
282
282
|
}): Promise<AvailableAgentInfo[]>;
|
|
283
283
|
declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
|
|
284
284
|
id: string;
|
|
285
|
-
name: string;
|
|
286
|
-
description: string | null;
|
|
287
285
|
createdAt: string;
|
|
286
|
+
name: string;
|
|
288
287
|
updatedAt: string;
|
|
289
288
|
projectId: string;
|
|
290
289
|
tenantId: string;
|
|
290
|
+
description: string | null;
|
|
291
|
+
defaultSubAgentId: string | null;
|
|
292
|
+
contextConfigId: string | null;
|
|
291
293
|
models: {
|
|
292
294
|
base?: {
|
|
293
295
|
model?: string | undefined;
|
|
@@ -308,12 +310,7 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
308
310
|
allowedProviders?: string[] | undefined;
|
|
309
311
|
} | undefined;
|
|
310
312
|
} | null;
|
|
311
|
-
stopWhen: {
|
|
312
|
-
transferCountIs?: number | undefined;
|
|
313
|
-
} | null;
|
|
314
313
|
prompt: string | null;
|
|
315
|
-
defaultSubAgentId: string | null;
|
|
316
|
-
contextConfigId: string | null;
|
|
317
314
|
statusUpdates: {
|
|
318
315
|
enabled?: boolean | undefined;
|
|
319
316
|
numEvents?: number | undefined;
|
|
@@ -329,6 +326,9 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
329
326
|
} | undefined;
|
|
330
327
|
}[] | undefined;
|
|
331
328
|
} | null;
|
|
329
|
+
stopWhen: {
|
|
330
|
+
transferCountIs?: number | undefined;
|
|
331
|
+
} | null;
|
|
332
332
|
executionMode: "classic" | "durable";
|
|
333
333
|
}>;
|
|
334
334
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -10,12 +10,12 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
10
10
|
id: string;
|
|
11
11
|
}) => Promise<{
|
|
12
12
|
id: string;
|
|
13
|
-
name: string;
|
|
14
|
-
description: string | null;
|
|
15
13
|
createdAt: string;
|
|
14
|
+
name: string;
|
|
16
15
|
updatedAt: string;
|
|
17
16
|
projectId: string;
|
|
18
17
|
tenantId: string;
|
|
18
|
+
description: string | null;
|
|
19
19
|
props: {
|
|
20
20
|
[x: string]: unknown;
|
|
21
21
|
type: "object";
|
|
@@ -66,12 +66,12 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
|
|
|
66
66
|
}>;
|
|
67
67
|
declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
|
|
68
68
|
id: string;
|
|
69
|
-
name: string;
|
|
70
|
-
description: string | null;
|
|
71
69
|
createdAt: string;
|
|
70
|
+
name: string;
|
|
72
71
|
updatedAt: string;
|
|
73
72
|
projectId: string;
|
|
74
73
|
tenantId: string;
|
|
74
|
+
description: string | null;
|
|
75
75
|
props: {
|
|
76
76
|
[x: string]: unknown;
|
|
77
77
|
type: "object";
|
|
@@ -143,9 +143,9 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
143
143
|
}) => Promise<{
|
|
144
144
|
id: string;
|
|
145
145
|
createdAt: string;
|
|
146
|
+
agentId: string;
|
|
146
147
|
projectId: string;
|
|
147
148
|
tenantId: string;
|
|
148
|
-
agentId: string;
|
|
149
149
|
subAgentId: string;
|
|
150
150
|
artifactComponentId: string;
|
|
151
151
|
}>;
|
|
@@ -186,9 +186,9 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
|
|
|
186
186
|
}) => Promise<{
|
|
187
187
|
id: string;
|
|
188
188
|
createdAt: string;
|
|
189
|
+
agentId: string;
|
|
189
190
|
projectId: string;
|
|
190
191
|
tenantId: string;
|
|
191
|
-
agentId: string;
|
|
192
192
|
subAgentId: string;
|
|
193
193
|
artifactComponentId: string;
|
|
194
194
|
} | null>;
|
|
@@ -10,25 +10,25 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
10
10
|
id: string;
|
|
11
11
|
}) => Promise<{
|
|
12
12
|
id: string;
|
|
13
|
+
headersSchema: unknown;
|
|
14
|
+
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
13
15
|
createdAt: string;
|
|
14
16
|
updatedAt: string;
|
|
17
|
+
agentId: string;
|
|
15
18
|
projectId: string;
|
|
16
19
|
tenantId: string;
|
|
17
|
-
agentId: string;
|
|
18
|
-
headersSchema: unknown;
|
|
19
|
-
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
20
20
|
} | undefined>;
|
|
21
21
|
declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
22
22
|
scopes: AgentScopeConfig;
|
|
23
23
|
}) => Promise<{
|
|
24
24
|
id: string;
|
|
25
|
+
headersSchema: unknown;
|
|
26
|
+
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
25
27
|
createdAt: string;
|
|
26
28
|
updatedAt: string;
|
|
29
|
+
agentId: string;
|
|
27
30
|
projectId: string;
|
|
28
31
|
tenantId: string;
|
|
29
|
-
agentId: string;
|
|
30
|
-
headersSchema: unknown;
|
|
31
|
-
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
32
32
|
}[]>;
|
|
33
33
|
declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
34
34
|
scopes: AgentScopeConfig;
|
|
@@ -44,13 +44,13 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
|
|
|
44
44
|
}>;
|
|
45
45
|
declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
|
|
46
46
|
id: string;
|
|
47
|
+
headersSchema: unknown;
|
|
48
|
+
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
47
49
|
createdAt: string;
|
|
48
50
|
updatedAt: string;
|
|
51
|
+
agentId: string;
|
|
49
52
|
projectId: string;
|
|
50
53
|
tenantId: string;
|
|
51
|
-
agentId: string;
|
|
52
|
-
headersSchema: unknown;
|
|
53
|
-
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
54
54
|
}>;
|
|
55
55
|
declare const updateContextConfig: (db: AgentsManageDatabaseClient) => (params: {
|
|
56
56
|
scopes: AgentScopeConfig;
|
|
@@ -84,13 +84,13 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
84
84
|
data: ContextConfigInsert;
|
|
85
85
|
}) => Promise<{
|
|
86
86
|
id: string;
|
|
87
|
+
headersSchema: unknown;
|
|
88
|
+
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
87
89
|
createdAt: string;
|
|
88
90
|
updatedAt: string;
|
|
91
|
+
agentId: string;
|
|
89
92
|
projectId: string;
|
|
90
93
|
tenantId: string;
|
|
91
|
-
agentId: string;
|
|
92
|
-
headersSchema: unknown;
|
|
93
|
-
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
94
94
|
}>;
|
|
95
95
|
//#endregion
|
|
96
96
|
export { countContextConfigs, createContextConfig, deleteContextConfig, getContextConfigById, hasContextConfig, listContextConfigs, listContextConfigsPaginated, updateContextConfig, upsertContextConfig };
|
|
@@ -67,9 +67,9 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
67
67
|
}) => Promise<{
|
|
68
68
|
id: string;
|
|
69
69
|
createdAt: string;
|
|
70
|
+
agentId: string;
|
|
70
71
|
projectId: string;
|
|
71
72
|
tenantId: string;
|
|
72
|
-
agentId: string;
|
|
73
73
|
subAgentId: string;
|
|
74
74
|
dataComponentId: string;
|
|
75
75
|
}>;
|
|
@@ -109,9 +109,9 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
|
|
|
109
109
|
}) => Promise<{
|
|
110
110
|
id: string;
|
|
111
111
|
createdAt: string;
|
|
112
|
+
agentId: string;
|
|
112
113
|
projectId: string;
|
|
113
114
|
tenantId: string;
|
|
114
|
-
agentId: string;
|
|
115
115
|
subAgentId: string;
|
|
116
116
|
dataComponentId: string;
|
|
117
117
|
} | null>;
|
|
@@ -54,13 +54,13 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
54
54
|
scopes: AgentScopeConfig;
|
|
55
55
|
}) => Promise<{
|
|
56
56
|
id: string;
|
|
57
|
-
name: string;
|
|
58
|
-
description: string | null;
|
|
59
57
|
createdAt: string;
|
|
58
|
+
name: string;
|
|
60
59
|
updatedAt: string;
|
|
60
|
+
agentId: string;
|
|
61
61
|
projectId: string;
|
|
62
62
|
tenantId: string;
|
|
63
|
-
|
|
63
|
+
description: string | null;
|
|
64
64
|
functionId: string;
|
|
65
65
|
}>;
|
|
66
66
|
/**
|
|
@@ -96,13 +96,13 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
96
96
|
scopes: AgentScopeConfig;
|
|
97
97
|
}) => Promise<{
|
|
98
98
|
id: string;
|
|
99
|
-
name: string;
|
|
100
|
-
description: string | null;
|
|
101
99
|
createdAt: string;
|
|
100
|
+
name: string;
|
|
102
101
|
updatedAt: string;
|
|
102
|
+
agentId: string;
|
|
103
103
|
projectId: string;
|
|
104
104
|
tenantId: string;
|
|
105
|
-
|
|
105
|
+
description: string | null;
|
|
106
106
|
functionId: string;
|
|
107
107
|
}>;
|
|
108
108
|
declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -160,9 +160,9 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
|
|
|
160
160
|
id: string;
|
|
161
161
|
createdAt: string;
|
|
162
162
|
updatedAt: string;
|
|
163
|
+
agentId: string;
|
|
163
164
|
projectId: string;
|
|
164
165
|
tenantId: string;
|
|
165
|
-
agentId: string;
|
|
166
166
|
subAgentId: string;
|
|
167
167
|
functionToolId: string;
|
|
168
168
|
toolPolicies: Record<string, {
|
|
@@ -225,9 +225,9 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
|
|
|
225
225
|
id: string;
|
|
226
226
|
createdAt: string;
|
|
227
227
|
updatedAt: string;
|
|
228
|
+
agentId: string;
|
|
228
229
|
projectId: string;
|
|
229
230
|
tenantId: string;
|
|
230
|
-
agentId: string;
|
|
231
231
|
subAgentId: string;
|
|
232
232
|
functionToolId: string;
|
|
233
233
|
toolPolicies: Record<string, {
|
|
@@ -16,14 +16,14 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
16
16
|
skillId: string;
|
|
17
17
|
}) => Promise<{
|
|
18
18
|
id: string;
|
|
19
|
-
name: string;
|
|
20
|
-
description: string;
|
|
21
|
-
content: string;
|
|
22
|
-
metadata: Record<string, string> | null;
|
|
23
19
|
createdAt: string;
|
|
20
|
+
name: string;
|
|
24
21
|
updatedAt: string;
|
|
25
22
|
projectId: string;
|
|
26
23
|
tenantId: string;
|
|
24
|
+
description: string;
|
|
25
|
+
metadata: Record<string, string> | null;
|
|
26
|
+
content: string;
|
|
27
27
|
} | null>;
|
|
28
28
|
declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
|
|
29
29
|
scopes: ProjectScopeConfig;
|
|
@@ -111,14 +111,14 @@ interface WithTenantIdProjectId {
|
|
|
111
111
|
declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<SkillRecordWithFiles>;
|
|
112
112
|
declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<{
|
|
113
113
|
id: string;
|
|
114
|
-
name: string;
|
|
115
|
-
description: string;
|
|
116
|
-
content: string;
|
|
117
|
-
metadata: Record<string, string> | null;
|
|
118
114
|
createdAt: string;
|
|
115
|
+
name: string;
|
|
119
116
|
updatedAt: string;
|
|
120
117
|
projectId: string;
|
|
121
118
|
tenantId: string;
|
|
119
|
+
description: string;
|
|
120
|
+
metadata: Record<string, string> | null;
|
|
121
|
+
content: string;
|
|
122
122
|
}>;
|
|
123
123
|
declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
124
124
|
scopes: ProjectScopeConfig;
|
|
@@ -142,9 +142,9 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
|
|
|
142
142
|
id: string;
|
|
143
143
|
createdAt: string;
|
|
144
144
|
updatedAt: string;
|
|
145
|
+
agentId: string;
|
|
145
146
|
projectId: string;
|
|
146
147
|
tenantId: string;
|
|
147
|
-
agentId: string;
|
|
148
148
|
subAgentId: string;
|
|
149
149
|
index: number;
|
|
150
150
|
alwaysLoaded: boolean;
|
|
@@ -12,9 +12,9 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
+
agentId: string;
|
|
15
16
|
projectId: string;
|
|
16
17
|
tenantId: string;
|
|
17
|
-
agentId: string;
|
|
18
18
|
subAgentId: string;
|
|
19
19
|
headers: Record<string, string> | null;
|
|
20
20
|
externalAgentId: string;
|
|
@@ -47,9 +47,9 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
|
|
|
47
47
|
id: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
|
+
agentId: string;
|
|
50
51
|
projectId: string;
|
|
51
52
|
tenantId: string;
|
|
52
|
-
agentId: string;
|
|
53
53
|
subAgentId: string;
|
|
54
54
|
headers: Record<string, string> | null;
|
|
55
55
|
externalAgentId: string;
|
|
@@ -60,9 +60,9 @@ declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabas
|
|
|
60
60
|
id: string;
|
|
61
61
|
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
|
+
agentId: string;
|
|
63
64
|
projectId: string;
|
|
64
65
|
tenantId: string;
|
|
65
|
-
agentId: string;
|
|
66
66
|
subAgentId: string;
|
|
67
67
|
headers: Record<string, string> | null;
|
|
68
68
|
externalAgentId: string;
|
|
@@ -189,9 +189,9 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
189
189
|
id: string;
|
|
190
190
|
createdAt: string;
|
|
191
191
|
updatedAt: string;
|
|
192
|
+
agentId: string;
|
|
192
193
|
projectId: string;
|
|
193
194
|
tenantId: string;
|
|
194
|
-
agentId: string;
|
|
195
195
|
subAgentId: string;
|
|
196
196
|
headers: Record<string, string> | null;
|
|
197
197
|
externalAgentId: string;
|
|
@@ -206,9 +206,9 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
|
|
|
206
206
|
id: string;
|
|
207
207
|
createdAt: string;
|
|
208
208
|
updatedAt: string;
|
|
209
|
+
agentId: string;
|
|
209
210
|
projectId: string;
|
|
210
211
|
tenantId: string;
|
|
211
|
-
agentId: string;
|
|
212
212
|
subAgentId: string;
|
|
213
213
|
headers: Record<string, string> | null;
|
|
214
214
|
externalAgentId: string;
|
|
@@ -227,9 +227,9 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
227
227
|
id: string;
|
|
228
228
|
createdAt: string;
|
|
229
229
|
updatedAt: string;
|
|
230
|
+
agentId: string;
|
|
230
231
|
projectId: string;
|
|
231
232
|
tenantId: string;
|
|
232
|
-
agentId: string;
|
|
233
233
|
subAgentId: string;
|
|
234
234
|
headers: Record<string, string> | null;
|
|
235
235
|
externalAgentId: string;
|
|
@@ -12,9 +12,9 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
+
agentId: string;
|
|
15
16
|
projectId: string;
|
|
16
17
|
tenantId: string;
|
|
17
|
-
agentId: string;
|
|
18
18
|
sourceSubAgentId: string;
|
|
19
19
|
targetSubAgentId: string | null;
|
|
20
20
|
relationType: string | null;
|
|
@@ -47,9 +47,9 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
47
47
|
id: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
|
+
agentId: string;
|
|
50
51
|
projectId: string;
|
|
51
52
|
tenantId: string;
|
|
52
|
-
agentId: string;
|
|
53
53
|
sourceSubAgentId: string;
|
|
54
54
|
targetSubAgentId: string | null;
|
|
55
55
|
relationType: string | null;
|
|
@@ -60,9 +60,9 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
|
|
|
60
60
|
id: string;
|
|
61
61
|
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
|
+
agentId: string;
|
|
63
64
|
projectId: string;
|
|
64
65
|
tenantId: string;
|
|
65
|
-
agentId: string;
|
|
66
66
|
sourceSubAgentId: string;
|
|
67
67
|
targetSubAgentId: string | null;
|
|
68
68
|
relationType: string | null;
|
|
@@ -129,9 +129,9 @@ declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
129
129
|
id: string;
|
|
130
130
|
createdAt: string;
|
|
131
131
|
updatedAt: string;
|
|
132
|
+
agentId: string;
|
|
132
133
|
projectId: string;
|
|
133
134
|
tenantId: string;
|
|
134
|
-
agentId: string;
|
|
135
135
|
sourceSubAgentId: string;
|
|
136
136
|
targetSubAgentId: string | null;
|
|
137
137
|
relationType: string | null;
|
|
@@ -148,9 +148,9 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
|
|
|
148
148
|
id: string;
|
|
149
149
|
createdAt: string;
|
|
150
150
|
updatedAt: string;
|
|
151
|
+
agentId: string;
|
|
151
152
|
projectId: string;
|
|
152
153
|
tenantId: string;
|
|
153
|
-
agentId: string;
|
|
154
154
|
sourceSubAgentId: string;
|
|
155
155
|
targetSubAgentId: string | null;
|
|
156
156
|
relationType: string | null;
|
|
@@ -162,9 +162,9 @@ declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
162
162
|
id: string;
|
|
163
163
|
createdAt: string;
|
|
164
164
|
updatedAt: string;
|
|
165
|
+
agentId: string;
|
|
165
166
|
projectId: string;
|
|
166
167
|
tenantId: string;
|
|
167
|
-
agentId: string;
|
|
168
168
|
sourceSubAgentId: string;
|
|
169
169
|
targetSubAgentId: string | null;
|
|
170
170
|
relationType: string | null;
|
|
@@ -207,12 +207,12 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
|
|
|
207
207
|
id: string;
|
|
208
208
|
createdAt: string;
|
|
209
209
|
updatedAt: string;
|
|
210
|
+
agentId: string;
|
|
210
211
|
projectId: string;
|
|
211
212
|
tenantId: string;
|
|
212
|
-
agentId: string;
|
|
213
213
|
subAgentId: string;
|
|
214
|
-
headers: Record<string, string> | null;
|
|
215
214
|
toolId: string;
|
|
215
|
+
headers: Record<string, string> | null;
|
|
216
216
|
toolPolicies: Record<string, {
|
|
217
217
|
needsApproval?: boolean;
|
|
218
218
|
}> | null;
|
|
@@ -251,12 +251,12 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
|
|
|
251
251
|
id: string;
|
|
252
252
|
createdAt: string;
|
|
253
253
|
updatedAt: string;
|
|
254
|
+
agentId: string;
|
|
254
255
|
projectId: string;
|
|
255
256
|
tenantId: string;
|
|
256
|
-
agentId: string;
|
|
257
257
|
subAgentId: string;
|
|
258
|
-
headers: Record<string, string> | null;
|
|
259
258
|
toolId: string;
|
|
259
|
+
headers: Record<string, string> | null;
|
|
260
260
|
toolPolicies: Record<string, {
|
|
261
261
|
needsApproval?: boolean;
|
|
262
262
|
}> | null;
|