@inkeep/agents-core 0.67.4 → 0.68.1
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 +1369 -1
- package/dist/auth/auth-schema.js +139 -6
- package/dist/auth/auth-validation-schemas.d.ts +137 -137
- package/dist/auth/auth.d.ts +2231 -0
- package/dist/auth/auth.js +23 -1
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agents.d.ts +41 -41
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +16 -16
- package/dist/data-access/manage/skills.d.ts +11 -11
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +30 -30
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +30 -30
- package/dist/data-access/manage/triggers.d.ts +4 -4
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +11 -11
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/feedback.d.ts +6 -6
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +457 -457
- package/dist/db/runtime/runtime-schema.d.ts +418 -418
- package/dist/db/runtime/runtime-schema.js +7 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/validation/schemas/skills.d.ts +38 -38
- package/dist/validation/schemas.d.ts +1907 -1907
- package/drizzle/runtime/0036_swift_hammerhead.sql +90 -0
- package/drizzle/runtime/meta/0036_snapshot.json +5915 -0
- package/drizzle/runtime/meta/_journal.json +8 -1
- package/package.json +2 -1
package/dist/auth/auth.js
CHANGED
|
@@ -9,9 +9,10 @@ import { extractCookieDomain, getInitialOrganization, getTrustedOrigins, hasCred
|
|
|
9
9
|
import { ac, adminRole, memberRole, ownerRole } from "./permissions.js";
|
|
10
10
|
import { betterAuth } from "better-auth";
|
|
11
11
|
import { dash } from "@better-auth/infra";
|
|
12
|
+
import { oauthProvider } from "@better-auth/oauth-provider";
|
|
12
13
|
import { sso } from "@better-auth/sso";
|
|
13
14
|
import { drizzleAdapter } from "better-auth/adapters/drizzle";
|
|
14
|
-
import { bearer, deviceAuthorization, lastLoginMethod, oAuthProxy, organization } from "better-auth/plugins";
|
|
15
|
+
import { bearer, deviceAuthorization, jwt, lastLoginMethod, oAuthProxy, organization } from "better-auth/plugins";
|
|
15
16
|
|
|
16
17
|
//#region src/auth/auth.ts
|
|
17
18
|
function createAuth(config) {
|
|
@@ -21,6 +22,7 @@ function createAuth(config) {
|
|
|
21
22
|
appName: "Inkeep Agents",
|
|
22
23
|
baseURL: config.baseURL,
|
|
23
24
|
secret: config.secret,
|
|
25
|
+
disabledPaths: ["/token"],
|
|
24
26
|
database: drizzleAdapter(config.dbClient, { provider: "pg" }),
|
|
25
27
|
emailAndPassword: {
|
|
26
28
|
enabled: true,
|
|
@@ -70,6 +72,7 @@ function createAuth(config) {
|
|
|
70
72
|
...env.OAUTH_PROXY_PRODUCTION_URL && { redirectURI: `${env.OAUTH_PROXY_PRODUCTION_URL}/api/auth/callback/google` }
|
|
71
73
|
} },
|
|
72
74
|
session: {
|
|
75
|
+
storeSessionInDatabase: true,
|
|
73
76
|
expiresIn: 3600 * 24 * 7,
|
|
74
77
|
updateAge: 3600 * 24,
|
|
75
78
|
cookieCache: {
|
|
@@ -100,6 +103,25 @@ function createAuth(config) {
|
|
|
100
103
|
plugins: [
|
|
101
104
|
bearer(),
|
|
102
105
|
dash(),
|
|
106
|
+
jwt(),
|
|
107
|
+
oauthProvider({
|
|
108
|
+
loginPage: `${env.INKEEP_AGENTS_MANAGE_UI_URL || "http://localhost:3000"}/login`,
|
|
109
|
+
consentPage: `${env.INKEEP_AGENTS_MANAGE_UI_URL || "http://localhost:3000"}/consent`,
|
|
110
|
+
scopes: [
|
|
111
|
+
"openid",
|
|
112
|
+
"profile",
|
|
113
|
+
"email",
|
|
114
|
+
"offline_access"
|
|
115
|
+
],
|
|
116
|
+
customAccessTokenClaims: async ({ user }) => {
|
|
117
|
+
if (!user) return {};
|
|
118
|
+
const org = await getInitialOrganization(config.dbClient, user.id);
|
|
119
|
+
return {
|
|
120
|
+
"https://inkeep.com/tenantId": org?.id ?? void 0,
|
|
121
|
+
"https://inkeep.com/email": user.email
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
}),
|
|
103
125
|
lastLoginMethod({ customResolveMethod(ctx) {
|
|
104
126
|
const path = ctx.path;
|
|
105
127
|
if (path === "/sign-in/email" || path === "/sign-up/email") return "email";
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as better_auth_plugins7 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 "
|
|
9
|
-
actions:
|
|
8
|
+
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
|
|
9
|
+
actions: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>[key];
|
|
10
10
|
connector: "OR" | "AND";
|
|
11
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
12
|
-
statements:
|
|
11
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins7.AuthorizeResponse;
|
|
12
|
+
statements: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>;
|
|
13
13
|
};
|
|
14
14
|
declare const adminRole: {
|
|
15
|
-
authorize<K_1 extends "
|
|
16
|
-
actions:
|
|
15
|
+
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
|
|
16
|
+
actions: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>[key];
|
|
17
17
|
connector: "OR" | "AND";
|
|
18
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
19
|
-
statements:
|
|
18
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins7.AuthorizeResponse;
|
|
19
|
+
statements: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>;
|
|
20
20
|
};
|
|
21
21
|
declare const ownerRole: {
|
|
22
|
-
authorize<K_1 extends "
|
|
23
|
-
actions:
|
|
22
|
+
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
|
|
23
|
+
actions: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>[key];
|
|
24
24
|
connector: "OR" | "AND";
|
|
25
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
26
|
-
statements:
|
|
25
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins7.AuthorizeResponse;
|
|
26
|
+
statements: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.Statements>;
|
|
27
27
|
};
|
|
28
28
|
//#endregion
|
|
29
29
|
export { ac, adminRole, memberRole, organizationClient, ownerRole };
|
|
@@ -10,15 +10,12 @@ import { PgColumn } from "drizzle-orm/pg-core";
|
|
|
10
10
|
declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
11
11
|
scopes: AgentScopeConfig;
|
|
12
12
|
}) => Promise<{
|
|
13
|
-
description: string | null;
|
|
14
|
-
tenantId: string;
|
|
15
|
-
projectId: string;
|
|
16
13
|
id: string;
|
|
17
14
|
name: string;
|
|
18
15
|
createdAt: string;
|
|
19
16
|
updatedAt: string;
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
description: string | null;
|
|
18
|
+
prompt: string | null;
|
|
22
19
|
models: {
|
|
23
20
|
base?: {
|
|
24
21
|
model?: string | undefined;
|
|
@@ -39,7 +36,12 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
39
36
|
allowedProviders?: string[] | undefined;
|
|
40
37
|
} | undefined;
|
|
41
38
|
} | null;
|
|
42
|
-
|
|
39
|
+
stopWhen: {
|
|
40
|
+
transferCountIs?: number | undefined;
|
|
41
|
+
} | null;
|
|
42
|
+
tenantId: string;
|
|
43
|
+
defaultSubAgentId: string | null;
|
|
44
|
+
contextConfigId: string | null;
|
|
43
45
|
statusUpdates: {
|
|
44
46
|
enabled?: boolean | undefined;
|
|
45
47
|
numEvents?: number | undefined;
|
|
@@ -55,23 +57,18 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
55
57
|
} | undefined;
|
|
56
58
|
}[] | undefined;
|
|
57
59
|
} | null;
|
|
58
|
-
stopWhen: {
|
|
59
|
-
transferCountIs?: number | undefined;
|
|
60
|
-
} | null;
|
|
61
60
|
executionMode: "classic" | "durable";
|
|
61
|
+
projectId: string;
|
|
62
62
|
} | null>;
|
|
63
63
|
declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
64
64
|
scopes: AgentScopeConfig;
|
|
65
65
|
}) => Promise<{
|
|
66
|
-
description: string | null;
|
|
67
|
-
tenantId: string;
|
|
68
|
-
projectId: string;
|
|
69
66
|
id: string;
|
|
70
67
|
name: string;
|
|
71
68
|
createdAt: string;
|
|
72
69
|
updatedAt: string;
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
description: string | null;
|
|
71
|
+
prompt: string | null;
|
|
75
72
|
models: {
|
|
76
73
|
base?: {
|
|
77
74
|
model?: string | undefined;
|
|
@@ -92,7 +89,12 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
92
89
|
allowedProviders?: string[] | undefined;
|
|
93
90
|
} | undefined;
|
|
94
91
|
} | null;
|
|
95
|
-
|
|
92
|
+
stopWhen: {
|
|
93
|
+
transferCountIs?: number | undefined;
|
|
94
|
+
} | null;
|
|
95
|
+
tenantId: string;
|
|
96
|
+
defaultSubAgentId: string | null;
|
|
97
|
+
contextConfigId: string | null;
|
|
96
98
|
statusUpdates: {
|
|
97
99
|
enabled?: boolean | undefined;
|
|
98
100
|
numEvents?: number | undefined;
|
|
@@ -108,19 +110,15 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
108
110
|
} | undefined;
|
|
109
111
|
}[] | undefined;
|
|
110
112
|
} | null;
|
|
111
|
-
stopWhen: {
|
|
112
|
-
transferCountIs?: number | undefined;
|
|
113
|
-
} | null;
|
|
114
113
|
executionMode: "classic" | "durable";
|
|
114
|
+
projectId: string;
|
|
115
115
|
defaultSubAgent: {
|
|
116
|
-
description: string | null;
|
|
117
|
-
tenantId: string;
|
|
118
|
-
projectId: string;
|
|
119
|
-
agentId: string;
|
|
120
116
|
id: string;
|
|
121
117
|
name: string;
|
|
122
118
|
createdAt: string;
|
|
123
119
|
updatedAt: string;
|
|
120
|
+
description: string | null;
|
|
121
|
+
prompt: string | null;
|
|
124
122
|
models: {
|
|
125
123
|
base?: {
|
|
126
124
|
model?: string | undefined;
|
|
@@ -141,25 +139,24 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
141
139
|
allowedProviders?: string[] | undefined;
|
|
142
140
|
} | undefined;
|
|
143
141
|
} | null;
|
|
144
|
-
prompt: string | null;
|
|
145
142
|
stopWhen: {
|
|
146
143
|
stepCountIs?: number | undefined;
|
|
147
144
|
} | null;
|
|
145
|
+
tenantId: string;
|
|
146
|
+
projectId: string;
|
|
147
|
+
agentId: string;
|
|
148
148
|
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
149
149
|
} | null;
|
|
150
150
|
} | null>;
|
|
151
151
|
declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
152
152
|
scopes: ProjectScopeConfig;
|
|
153
153
|
}) => Promise<{
|
|
154
|
-
description: string | null;
|
|
155
|
-
tenantId: string;
|
|
156
|
-
projectId: string;
|
|
157
154
|
id: string;
|
|
158
155
|
name: string;
|
|
159
156
|
createdAt: string;
|
|
160
157
|
updatedAt: string;
|
|
161
|
-
|
|
162
|
-
|
|
158
|
+
description: string | null;
|
|
159
|
+
prompt: string | null;
|
|
163
160
|
models: {
|
|
164
161
|
base?: {
|
|
165
162
|
model?: string | undefined;
|
|
@@ -180,7 +177,12 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
180
177
|
allowedProviders?: string[] | undefined;
|
|
181
178
|
} | undefined;
|
|
182
179
|
} | null;
|
|
183
|
-
|
|
180
|
+
stopWhen: {
|
|
181
|
+
transferCountIs?: number | undefined;
|
|
182
|
+
} | null;
|
|
183
|
+
tenantId: string;
|
|
184
|
+
defaultSubAgentId: string | null;
|
|
185
|
+
contextConfigId: string | null;
|
|
184
186
|
statusUpdates: {
|
|
185
187
|
enabled?: boolean | undefined;
|
|
186
188
|
numEvents?: number | undefined;
|
|
@@ -196,10 +198,8 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
196
198
|
} | undefined;
|
|
197
199
|
}[] | undefined;
|
|
198
200
|
} | null;
|
|
199
|
-
stopWhen: {
|
|
200
|
-
transferCountIs?: number | undefined;
|
|
201
|
-
} | null;
|
|
202
201
|
executionMode: "classic" | "durable";
|
|
202
|
+
projectId: string;
|
|
203
203
|
}[]>;
|
|
204
204
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
205
205
|
scopes: ProjectScopeConfig;
|
|
@@ -281,15 +281,12 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
|
|
|
281
281
|
projectIds: string[];
|
|
282
282
|
}): Promise<AvailableAgentInfo[]>;
|
|
283
283
|
declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
|
|
284
|
-
description: string | null;
|
|
285
|
-
tenantId: string;
|
|
286
|
-
projectId: string;
|
|
287
284
|
id: string;
|
|
288
285
|
name: string;
|
|
289
286
|
createdAt: string;
|
|
290
287
|
updatedAt: string;
|
|
291
|
-
|
|
292
|
-
|
|
288
|
+
description: string | null;
|
|
289
|
+
prompt: string | null;
|
|
293
290
|
models: {
|
|
294
291
|
base?: {
|
|
295
292
|
model?: string | undefined;
|
|
@@ -310,7 +307,12 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
310
307
|
allowedProviders?: string[] | undefined;
|
|
311
308
|
} | undefined;
|
|
312
309
|
} | null;
|
|
313
|
-
|
|
310
|
+
stopWhen: {
|
|
311
|
+
transferCountIs?: number | undefined;
|
|
312
|
+
} | null;
|
|
313
|
+
tenantId: string;
|
|
314
|
+
defaultSubAgentId: string | null;
|
|
315
|
+
contextConfigId: string | null;
|
|
314
316
|
statusUpdates: {
|
|
315
317
|
enabled?: boolean | undefined;
|
|
316
318
|
numEvents?: number | undefined;
|
|
@@ -326,10 +328,8 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
326
328
|
} | undefined;
|
|
327
329
|
}[] | undefined;
|
|
328
330
|
} | null;
|
|
329
|
-
stopWhen: {
|
|
330
|
-
transferCountIs?: number | undefined;
|
|
331
|
-
} | null;
|
|
332
331
|
executionMode: "classic" | "durable";
|
|
332
|
+
projectId: string;
|
|
333
333
|
}>;
|
|
334
334
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
335
335
|
scopes: AgentScopeConfig;
|
|
@@ -9,13 +9,13 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
9
9
|
scopes: ProjectScopeConfig;
|
|
10
10
|
id: string;
|
|
11
11
|
}) => Promise<{
|
|
12
|
-
description: string | null;
|
|
13
|
-
tenantId: string;
|
|
14
|
-
projectId: string;
|
|
15
12
|
id: string;
|
|
16
13
|
name: string;
|
|
17
14
|
createdAt: string;
|
|
18
15
|
updatedAt: string;
|
|
16
|
+
description: string | null;
|
|
17
|
+
tenantId: string;
|
|
18
|
+
projectId: string;
|
|
19
19
|
props: {
|
|
20
20
|
[x: string]: unknown;
|
|
21
21
|
type: "object";
|
|
@@ -65,13 +65,13 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
|
|
|
65
65
|
};
|
|
66
66
|
}>;
|
|
67
67
|
declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
|
|
68
|
-
description: string | null;
|
|
69
|
-
tenantId: string;
|
|
70
|
-
projectId: string;
|
|
71
68
|
id: string;
|
|
72
69
|
name: string;
|
|
73
70
|
createdAt: string;
|
|
74
71
|
updatedAt: string;
|
|
72
|
+
description: string | null;
|
|
73
|
+
tenantId: string;
|
|
74
|
+
projectId: string;
|
|
75
75
|
props: {
|
|
76
76
|
[x: string]: unknown;
|
|
77
77
|
type: "object";
|
|
@@ -141,12 +141,12 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
141
141
|
scopes: SubAgentScopeConfig;
|
|
142
142
|
artifactComponentId: string;
|
|
143
143
|
}) => Promise<{
|
|
144
|
+
id: string;
|
|
145
|
+
createdAt: string;
|
|
144
146
|
tenantId: string;
|
|
145
147
|
projectId: string;
|
|
146
148
|
agentId: string;
|
|
147
149
|
subAgentId: string;
|
|
148
|
-
id: string;
|
|
149
|
-
createdAt: string;
|
|
150
150
|
artifactComponentId: string;
|
|
151
151
|
}>;
|
|
152
152
|
declare const removeArtifactComponentFromAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -184,12 +184,12 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
|
|
|
184
184
|
scopes: SubAgentScopeConfig;
|
|
185
185
|
artifactComponentId: string;
|
|
186
186
|
}) => Promise<{
|
|
187
|
+
id: string;
|
|
188
|
+
createdAt: string;
|
|
187
189
|
tenantId: string;
|
|
188
190
|
projectId: string;
|
|
189
191
|
agentId: string;
|
|
190
192
|
subAgentId: string;
|
|
191
|
-
id: string;
|
|
192
|
-
createdAt: string;
|
|
193
193
|
artifactComponentId: string;
|
|
194
194
|
} | null>;
|
|
195
195
|
/**
|
|
@@ -9,26 +9,26 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
9
9
|
scopes: AgentScopeConfig;
|
|
10
10
|
id: string;
|
|
11
11
|
}) => Promise<{
|
|
12
|
-
tenantId: string;
|
|
13
|
-
projectId: string;
|
|
14
|
-
agentId: string;
|
|
15
12
|
id: string;
|
|
16
13
|
createdAt: string;
|
|
17
14
|
updatedAt: string;
|
|
15
|
+
tenantId: string;
|
|
16
|
+
projectId: string;
|
|
18
17
|
headersSchema: unknown;
|
|
19
18
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
19
|
+
agentId: string;
|
|
20
20
|
} | undefined>;
|
|
21
21
|
declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
22
22
|
scopes: AgentScopeConfig;
|
|
23
23
|
}) => Promise<{
|
|
24
|
-
tenantId: string;
|
|
25
|
-
projectId: string;
|
|
26
|
-
agentId: string;
|
|
27
24
|
id: string;
|
|
28
25
|
createdAt: string;
|
|
29
26
|
updatedAt: string;
|
|
27
|
+
tenantId: string;
|
|
28
|
+
projectId: string;
|
|
30
29
|
headersSchema: unknown;
|
|
31
30
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
31
|
+
agentId: string;
|
|
32
32
|
}[]>;
|
|
33
33
|
declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
34
34
|
scopes: AgentScopeConfig;
|
|
@@ -43,14 +43,14 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
|
|
|
43
43
|
};
|
|
44
44
|
}>;
|
|
45
45
|
declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
|
|
46
|
-
tenantId: string;
|
|
47
|
-
projectId: string;
|
|
48
|
-
agentId: string;
|
|
49
46
|
id: string;
|
|
50
47
|
createdAt: string;
|
|
51
48
|
updatedAt: string;
|
|
49
|
+
tenantId: string;
|
|
50
|
+
projectId: string;
|
|
52
51
|
headersSchema: unknown;
|
|
53
52
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
53
|
+
agentId: string;
|
|
54
54
|
}>;
|
|
55
55
|
declare const updateContextConfig: (db: AgentsManageDatabaseClient) => (params: {
|
|
56
56
|
scopes: AgentScopeConfig;
|
|
@@ -83,14 +83,14 @@ declare const countContextConfigs: (db: AgentsManageDatabaseClient) => (params:
|
|
|
83
83
|
declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params: {
|
|
84
84
|
data: ContextConfigInsert;
|
|
85
85
|
}) => Promise<{
|
|
86
|
-
tenantId: string;
|
|
87
|
-
projectId: string;
|
|
88
|
-
agentId: string;
|
|
89
86
|
id: string;
|
|
90
87
|
createdAt: string;
|
|
91
88
|
updatedAt: string;
|
|
89
|
+
tenantId: string;
|
|
90
|
+
projectId: string;
|
|
92
91
|
headersSchema: unknown;
|
|
93
92
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
93
|
+
agentId: string;
|
|
94
94
|
}>;
|
|
95
95
|
//#endregion
|
|
96
96
|
export { countContextConfigs, createContextConfig, deleteContextConfig, getContextConfigById, hasContextConfig, listContextConfigs, listContextConfigsPaginated, updateContextConfig, upsertContextConfig };
|
|
@@ -65,12 +65,12 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
65
65
|
scopes: SubAgentScopeConfig;
|
|
66
66
|
dataComponentId: string;
|
|
67
67
|
}) => Promise<{
|
|
68
|
+
id: string;
|
|
69
|
+
createdAt: string;
|
|
68
70
|
tenantId: string;
|
|
69
71
|
projectId: string;
|
|
70
72
|
agentId: string;
|
|
71
73
|
subAgentId: string;
|
|
72
|
-
id: string;
|
|
73
|
-
createdAt: string;
|
|
74
74
|
dataComponentId: string;
|
|
75
75
|
}>;
|
|
76
76
|
/**
|
|
@@ -107,12 +107,12 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
|
|
|
107
107
|
scopes: SubAgentScopeConfig;
|
|
108
108
|
dataComponentId: string;
|
|
109
109
|
}) => Promise<{
|
|
110
|
+
id: string;
|
|
111
|
+
createdAt: string;
|
|
110
112
|
tenantId: string;
|
|
111
113
|
projectId: string;
|
|
112
114
|
agentId: string;
|
|
113
115
|
subAgentId: string;
|
|
114
|
-
id: string;
|
|
115
|
-
createdAt: string;
|
|
116
116
|
dataComponentId: string;
|
|
117
117
|
} | null>;
|
|
118
118
|
/**
|
|
@@ -53,14 +53,14 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
53
53
|
data: FunctionToolApiInsert;
|
|
54
54
|
scopes: AgentScopeConfig;
|
|
55
55
|
}) => Promise<{
|
|
56
|
-
description: string | null;
|
|
57
|
-
tenantId: string;
|
|
58
|
-
projectId: string;
|
|
59
|
-
agentId: string;
|
|
60
56
|
id: string;
|
|
61
57
|
name: string;
|
|
62
58
|
createdAt: string;
|
|
63
59
|
updatedAt: string;
|
|
60
|
+
description: string | null;
|
|
61
|
+
tenantId: string;
|
|
62
|
+
projectId: string;
|
|
63
|
+
agentId: string;
|
|
64
64
|
functionId: string;
|
|
65
65
|
}>;
|
|
66
66
|
/**
|
|
@@ -95,14 +95,14 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
95
95
|
data: FunctionToolApiInsert;
|
|
96
96
|
scopes: AgentScopeConfig;
|
|
97
97
|
}) => Promise<{
|
|
98
|
-
description: string | null;
|
|
99
|
-
tenantId: string;
|
|
100
|
-
projectId: string;
|
|
101
|
-
agentId: string;
|
|
102
98
|
id: string;
|
|
103
99
|
name: string;
|
|
104
100
|
createdAt: string;
|
|
105
101
|
updatedAt: string;
|
|
102
|
+
description: string | null;
|
|
103
|
+
tenantId: string;
|
|
104
|
+
projectId: string;
|
|
105
|
+
agentId: string;
|
|
106
106
|
functionId: string;
|
|
107
107
|
}>;
|
|
108
108
|
declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -157,17 +157,17 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
|
|
|
157
157
|
needsApproval?: boolean;
|
|
158
158
|
}> | null;
|
|
159
159
|
}) => Promise<{
|
|
160
|
+
id: string;
|
|
161
|
+
createdAt: string;
|
|
162
|
+
updatedAt: string;
|
|
160
163
|
tenantId: string;
|
|
161
164
|
projectId: string;
|
|
162
165
|
agentId: string;
|
|
163
166
|
subAgentId: string;
|
|
164
|
-
id: string;
|
|
165
|
-
createdAt: string;
|
|
166
|
-
updatedAt: string;
|
|
167
|
-
functionToolId: string;
|
|
168
167
|
toolPolicies: Record<string, {
|
|
169
168
|
needsApproval?: boolean;
|
|
170
169
|
}> | null;
|
|
170
|
+
functionToolId: string;
|
|
171
171
|
}>;
|
|
172
172
|
/**
|
|
173
173
|
* Update an agent-function tool relation
|
|
@@ -222,17 +222,17 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
|
|
|
222
222
|
needsApproval?: boolean;
|
|
223
223
|
}> | null;
|
|
224
224
|
}) => Promise<{
|
|
225
|
+
id: string;
|
|
226
|
+
createdAt: string;
|
|
227
|
+
updatedAt: string;
|
|
225
228
|
tenantId: string;
|
|
226
229
|
projectId: string;
|
|
227
230
|
agentId: string;
|
|
228
231
|
subAgentId: string;
|
|
229
|
-
id: string;
|
|
230
|
-
createdAt: string;
|
|
231
|
-
updatedAt: string;
|
|
232
|
-
functionToolId: string;
|
|
233
232
|
toolPolicies: Record<string, {
|
|
234
233
|
needsApproval?: boolean;
|
|
235
234
|
}> | null;
|
|
235
|
+
functionToolId: string;
|
|
236
236
|
}>;
|
|
237
237
|
//#endregion
|
|
238
238
|
export { addFunctionToolToSubAgent, associateFunctionToolWithSubAgent, createFunctionTool, deleteFunctionTool, getFunctionToolById, getFunctionToolsForSubAgent, getSubAgentsUsingFunctionTool, isFunctionToolAssociatedWithSubAgent, listFunctionTools, removeFunctionToolFromSubAgent, updateFunctionTool, updateSubAgentFunctionToolRelation, upsertFunctionTool, upsertSubAgentFunctionToolRelation };
|
|
@@ -15,14 +15,14 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
15
15
|
scopes: ProjectScopeConfig;
|
|
16
16
|
skillId: string;
|
|
17
17
|
}) => Promise<{
|
|
18
|
-
description: string;
|
|
19
|
-
tenantId: string;
|
|
20
|
-
projectId: string;
|
|
21
18
|
id: string;
|
|
22
19
|
name: string;
|
|
23
20
|
createdAt: string;
|
|
24
21
|
updatedAt: string;
|
|
25
22
|
metadata: Record<string, string> | null;
|
|
23
|
+
description: string;
|
|
24
|
+
tenantId: string;
|
|
25
|
+
projectId: string;
|
|
26
26
|
content: string;
|
|
27
27
|
} | null>;
|
|
28
28
|
declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -110,14 +110,14 @@ interface WithTenantIdProjectId {
|
|
|
110
110
|
}
|
|
111
111
|
declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<SkillRecordWithFiles>;
|
|
112
112
|
declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<{
|
|
113
|
-
description: string;
|
|
114
|
-
tenantId: string;
|
|
115
|
-
projectId: string;
|
|
116
113
|
id: string;
|
|
117
114
|
name: string;
|
|
118
115
|
createdAt: string;
|
|
119
116
|
updatedAt: string;
|
|
120
117
|
metadata: Record<string, string> | null;
|
|
118
|
+
description: string;
|
|
119
|
+
tenantId: string;
|
|
120
|
+
projectId: string;
|
|
121
121
|
content: string;
|
|
122
122
|
}>;
|
|
123
123
|
declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -139,16 +139,16 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
|
|
|
139
139
|
index: number;
|
|
140
140
|
alwaysLoaded?: boolean;
|
|
141
141
|
}) => Promise<{
|
|
142
|
-
tenantId: string;
|
|
143
|
-
projectId: string;
|
|
144
|
-
agentId: string;
|
|
145
|
-
subAgentId: string;
|
|
146
142
|
id: string;
|
|
147
143
|
createdAt: string;
|
|
148
144
|
updatedAt: string;
|
|
145
|
+
tenantId: string;
|
|
146
|
+
projectId: string;
|
|
147
|
+
agentId: string;
|
|
148
|
+
skillId: string;
|
|
149
149
|
index: number;
|
|
150
150
|
alwaysLoaded: boolean;
|
|
151
|
-
|
|
151
|
+
subAgentId: string;
|
|
152
152
|
}>;
|
|
153
153
|
declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
154
154
|
scopes: AgentScopeConfig;
|