@inkeep/agents-core 0.67.3 → 0.68.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.
Files changed (40) hide show
  1. package/dist/auth/auth-schema.d.ts +1477 -109
  2. package/dist/auth/auth-schema.js +139 -6
  3. package/dist/auth/auth-validation-schemas.d.ts +154 -154
  4. package/dist/auth/auth.d.ts +2231 -0
  5. package/dist/auth/auth.js +23 -1
  6. package/dist/auth/permissions.d.ts +13 -13
  7. package/dist/data-access/manage/agents.d.ts +46 -46
  8. package/dist/data-access/manage/artifactComponents.d.ts +4 -4
  9. package/dist/data-access/manage/contextConfigs.d.ts +4 -4
  10. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  11. package/dist/data-access/manage/functionTools.d.ts +6 -6
  12. package/dist/data-access/manage/skills.d.ts +6 -6
  13. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
  14. package/dist/data-access/manage/subAgentRelations.d.ts +12 -12
  15. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
  16. package/dist/data-access/manage/subAgents.d.ts +18 -18
  17. package/dist/data-access/manage/tools.d.ts +18 -18
  18. package/dist/data-access/manage/triggers.d.ts +4 -4
  19. package/dist/data-access/runtime/apiKeys.d.ts +12 -12
  20. package/dist/data-access/runtime/apps.d.ts +15 -15
  21. package/dist/data-access/runtime/conversations.d.ts +24 -24
  22. package/dist/data-access/runtime/feedback.d.ts +2 -2
  23. package/dist/data-access/runtime/messages.d.ts +6 -6
  24. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  25. package/dist/data-access/runtime/tasks.d.ts +5 -5
  26. package/dist/db/manage/manage-schema.d.ts +495 -495
  27. package/dist/db/manage/manage-schema.js +39 -40
  28. package/dist/db/runtime/runtime-schema.d.ts +416 -416
  29. package/dist/db/runtime/runtime-schema.js +7 -2
  30. package/dist/index.d.ts +2 -2
  31. package/dist/index.js +2 -2
  32. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  33. package/dist/validation/schemas/skills.d.ts +31 -31
  34. package/dist/validation/schemas.d.ts +2325 -2325
  35. package/drizzle/runtime/0036_swift_hammerhead.sql +90 -0
  36. package/drizzle/runtime/meta/0036_snapshot.json +5915 -0
  37. package/drizzle/runtime/meta/_journal.json +8 -1
  38. package/package.json +2 -1
  39. package/dist/db/manage/dolt-safe-jsonb.d.ts +0 -12
  40. package/dist/db/manage/dolt-safe-jsonb.js +0 -61
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 better_auth_plugins4 from "better-auth/plugins";
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 "project" | "invitation" | "member" | "organization" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
9
- actions: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.Statements>[key];
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"): better_auth_plugins4.AuthorizeResponse;
12
- statements: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.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 "project" | "invitation" | "member" | "organization" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
16
- actions: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.Statements>[key];
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"): better_auth_plugins4.AuthorizeResponse;
19
- statements: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.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 "project" | "invitation" | "member" | "organization" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
23
- actions: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.Statements>[key];
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"): better_auth_plugins4.AuthorizeResponse;
26
- statements: better_auth_plugins4.Subset<"project" | "invitation" | "member" | "organization" | "team" | "ac", better_auth_plugins4.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 };
@@ -12,7 +12,14 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
12
12
  }) => Promise<{
13
13
  id: string;
14
14
  name: string;
15
+ createdAt: string;
16
+ updatedAt: string;
15
17
  description: string | null;
18
+ prompt: string | null;
19
+ tenantId: string;
20
+ projectId: string;
21
+ defaultSubAgentId: string | null;
22
+ contextConfigId: string | null;
16
23
  models: {
17
24
  base?: {
18
25
  model?: string | undefined;
@@ -33,16 +40,6 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
33
40
  allowedProviders?: string[] | undefined;
34
41
  } | undefined;
35
42
  } | null;
36
- stopWhen: {
37
- transferCountIs?: number | undefined;
38
- } | null;
39
- createdAt: string;
40
- updatedAt: string;
41
- tenantId: string;
42
- projectId: string;
43
- defaultSubAgentId: string | null;
44
- contextConfigId: string | null;
45
- prompt: string | null;
46
43
  statusUpdates: {
47
44
  enabled?: boolean | undefined;
48
45
  numEvents?: number | undefined;
@@ -58,6 +55,9 @@ 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: {
@@ -65,7 +65,14 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
65
65
  }) => Promise<{
66
66
  id: string;
67
67
  name: string;
68
+ createdAt: string;
69
+ updatedAt: string;
68
70
  description: string | null;
71
+ prompt: string | null;
72
+ tenantId: string;
73
+ projectId: string;
74
+ defaultSubAgentId: string | null;
75
+ contextConfigId: string | null;
69
76
  models: {
70
77
  base?: {
71
78
  model?: string | undefined;
@@ -86,16 +93,6 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
86
93
  allowedProviders?: string[] | undefined;
87
94
  } | undefined;
88
95
  } | null;
89
- stopWhen: {
90
- transferCountIs?: number | undefined;
91
- } | null;
92
- createdAt: string;
93
- updatedAt: string;
94
- tenantId: string;
95
- projectId: string;
96
- defaultSubAgentId: string | null;
97
- contextConfigId: string | null;
98
- prompt: string | null;
99
96
  statusUpdates: {
100
97
  enabled?: boolean | undefined;
101
98
  numEvents?: number | undefined;
@@ -111,11 +108,20 @@ 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
117
  name: string;
118
+ createdAt: string;
119
+ updatedAt: string;
118
120
  description: string | null;
121
+ prompt: string | null;
122
+ tenantId: string;
123
+ agentId: string;
124
+ projectId: string;
119
125
  models: {
120
126
  base?: {
121
127
  model?: string | undefined;
@@ -139,12 +145,6 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
139
145
  stopWhen: {
140
146
  stepCountIs?: number | undefined;
141
147
  } | null;
142
- createdAt: string;
143
- updatedAt: string;
144
- tenantId: string;
145
- projectId: string;
146
- agentId: string;
147
- prompt: string | null;
148
148
  conversationHistoryConfig: ConversationHistoryConfig | null;
149
149
  } | null;
150
150
  } | null>;
@@ -153,7 +153,14 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
153
153
  }) => Promise<{
154
154
  id: string;
155
155
  name: string;
156
+ createdAt: string;
157
+ updatedAt: string;
156
158
  description: string | null;
159
+ prompt: string | null;
160
+ tenantId: string;
161
+ projectId: string;
162
+ defaultSubAgentId: string | null;
163
+ contextConfigId: string | null;
157
164
  models: {
158
165
  base?: {
159
166
  model?: string | undefined;
@@ -174,16 +181,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
174
181
  allowedProviders?: string[] | undefined;
175
182
  } | undefined;
176
183
  } | null;
177
- stopWhen: {
178
- transferCountIs?: number | undefined;
179
- } | null;
180
- createdAt: string;
181
- updatedAt: string;
182
- tenantId: string;
183
- projectId: string;
184
- defaultSubAgentId: string | null;
185
- contextConfigId: string | null;
186
- prompt: 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: {
@@ -283,7 +283,14 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
283
283
  declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
284
284
  id: string;
285
285
  name: string;
286
+ createdAt: string;
287
+ updatedAt: string;
286
288
  description: string | null;
289
+ prompt: string | null;
290
+ tenantId: string;
291
+ projectId: string;
292
+ defaultSubAgentId: string | null;
293
+ contextConfigId: string | null;
287
294
  models: {
288
295
  base?: {
289
296
  model?: string | undefined;
@@ -304,16 +311,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
304
311
  allowedProviders?: string[] | undefined;
305
312
  } | undefined;
306
313
  } | null;
307
- stopWhen: {
308
- transferCountIs?: number | undefined;
309
- } | null;
310
- createdAt: string;
311
- updatedAt: string;
312
- tenantId: string;
313
- projectId: string;
314
- defaultSubAgentId: string | null;
315
- contextConfigId: string | null;
316
- prompt: 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: {
@@ -11,9 +11,9 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
11
11
  }) => Promise<{
12
12
  id: string;
13
13
  name: string;
14
- description: string | null;
15
14
  createdAt: string;
16
15
  updatedAt: string;
16
+ description: string | null;
17
17
  tenantId: string;
18
18
  projectId: string;
19
19
  props: {
@@ -67,9 +67,9 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
67
67
  declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
68
68
  id: string;
69
69
  name: string;
70
- description: string | null;
71
70
  createdAt: string;
72
71
  updatedAt: string;
72
+ description: string | null;
73
73
  tenantId: string;
74
74
  projectId: string;
75
75
  props: {
@@ -144,8 +144,8 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
144
144
  id: string;
145
145
  createdAt: string;
146
146
  tenantId: string;
147
- projectId: string;
148
147
  agentId: string;
148
+ projectId: string;
149
149
  subAgentId: string;
150
150
  artifactComponentId: string;
151
151
  }>;
@@ -187,8 +187,8 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
187
187
  id: string;
188
188
  createdAt: string;
189
189
  tenantId: string;
190
- projectId: string;
191
190
  agentId: string;
191
+ projectId: string;
192
192
  subAgentId: string;
193
193
  artifactComponentId: string;
194
194
  } | null>;
@@ -13,8 +13,8 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
15
  tenantId: string;
16
- projectId: string;
17
16
  agentId: string;
17
+ projectId: string;
18
18
  headersSchema: unknown;
19
19
  contextVariables: Record<string, ContextFetchDefinition> | null;
20
20
  } | undefined>;
@@ -25,8 +25,8 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
25
25
  createdAt: string;
26
26
  updatedAt: string;
27
27
  tenantId: string;
28
- projectId: string;
29
28
  agentId: string;
29
+ projectId: string;
30
30
  headersSchema: unknown;
31
31
  contextVariables: Record<string, ContextFetchDefinition> | null;
32
32
  }[]>;
@@ -47,8 +47,8 @@ declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params:
47
47
  createdAt: string;
48
48
  updatedAt: string;
49
49
  tenantId: string;
50
- projectId: string;
51
50
  agentId: string;
51
+ projectId: string;
52
52
  headersSchema: unknown;
53
53
  contextVariables: Record<string, ContextFetchDefinition> | null;
54
54
  }>;
@@ -87,8 +87,8 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
87
87
  createdAt: string;
88
88
  updatedAt: string;
89
89
  tenantId: string;
90
- projectId: string;
91
90
  agentId: string;
91
+ projectId: string;
92
92
  headersSchema: unknown;
93
93
  contextVariables: Record<string, ContextFetchDefinition> | null;
94
94
  }>;
@@ -68,8 +68,8 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
68
68
  id: string;
69
69
  createdAt: string;
70
70
  tenantId: string;
71
- projectId: string;
72
71
  agentId: string;
72
+ projectId: string;
73
73
  subAgentId: string;
74
74
  dataComponentId: string;
75
75
  }>;
@@ -110,8 +110,8 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
110
110
  id: string;
111
111
  createdAt: string;
112
112
  tenantId: string;
113
- projectId: string;
114
113
  agentId: string;
114
+ projectId: string;
115
115
  subAgentId: string;
116
116
  dataComponentId: string;
117
117
  } | null>;
@@ -55,12 +55,12 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
55
55
  }) => Promise<{
56
56
  id: string;
57
57
  name: string;
58
- description: string | null;
59
58
  createdAt: string;
60
59
  updatedAt: string;
60
+ description: string | null;
61
61
  tenantId: string;
62
- projectId: string;
63
62
  agentId: string;
63
+ projectId: string;
64
64
  functionId: string;
65
65
  }>;
66
66
  /**
@@ -97,12 +97,12 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
97
97
  }) => Promise<{
98
98
  id: string;
99
99
  name: string;
100
- description: string | null;
101
100
  createdAt: string;
102
101
  updatedAt: string;
102
+ description: string | null;
103
103
  tenantId: string;
104
- projectId: string;
105
104
  agentId: string;
105
+ projectId: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -161,8 +161,8 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
161
161
  createdAt: string;
162
162
  updatedAt: string;
163
163
  tenantId: string;
164
- projectId: string;
165
164
  agentId: string;
165
+ projectId: string;
166
166
  subAgentId: string;
167
167
  toolPolicies: Record<string, {
168
168
  needsApproval?: boolean;
@@ -226,8 +226,8 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
226
226
  createdAt: string;
227
227
  updatedAt: string;
228
228
  tenantId: string;
229
- projectId: string;
230
229
  agentId: string;
230
+ projectId: string;
231
231
  subAgentId: string;
232
232
  toolPolicies: Record<string, {
233
233
  needsApproval?: boolean;
@@ -17,11 +17,11 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
17
17
  }) => Promise<{
18
18
  id: string;
19
19
  name: string;
20
- description: string;
21
20
  createdAt: string;
22
21
  updatedAt: string;
23
- tenantId: string;
24
22
  metadata: Record<string, string> | null;
23
+ description: string;
24
+ tenantId: string;
25
25
  content: string;
26
26
  projectId: string;
27
27
  } | null>;
@@ -112,11 +112,11 @@ declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiIn
112
112
  declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<{
113
113
  id: string;
114
114
  name: string;
115
- description: string;
116
115
  createdAt: string;
117
116
  updatedAt: string;
118
- tenantId: string;
119
117
  metadata: Record<string, string> | null;
118
+ description: string;
119
+ tenantId: string;
120
120
  content: string;
121
121
  projectId: string;
122
122
  }>;
@@ -143,12 +143,12 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
143
143
  createdAt: string;
144
144
  updatedAt: string;
145
145
  tenantId: string;
146
- projectId: string;
147
146
  agentId: string;
147
+ projectId: string;
148
148
  subAgentId: string;
149
- skillId: string;
150
149
  index: number;
151
150
  alwaysLoaded: boolean;
151
+ skillId: string;
152
152
  }>;
153
153
  declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
154
154
  scopes: AgentScopeConfig;
@@ -12,11 +12,11 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
12
12
  id: string;
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
+ headers: Record<string, string> | null;
15
16
  tenantId: string;
16
- projectId: string;
17
17
  agentId: string;
18
+ projectId: string;
18
19
  subAgentId: string;
19
- headers: Record<string, string> | null;
20
20
  externalAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -47,11 +47,11 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
47
47
  id: string;
48
48
  createdAt: string;
49
49
  updatedAt: string;
50
+ headers: Record<string, string> | null;
50
51
  tenantId: string;
51
- projectId: string;
52
52
  agentId: string;
53
+ projectId: string;
53
54
  subAgentId: string;
54
- headers: Record<string, string> | null;
55
55
  externalAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -60,11 +60,11 @@ declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabas
60
60
  id: string;
61
61
  createdAt: string;
62
62
  updatedAt: string;
63
+ headers: Record<string, string> | null;
63
64
  tenantId: string;
64
- projectId: string;
65
65
  agentId: string;
66
+ projectId: string;
66
67
  subAgentId: string;
67
- headers: Record<string, string> | null;
68
68
  externalAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -189,11 +189,11 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
189
189
  id: string;
190
190
  createdAt: string;
191
191
  updatedAt: string;
192
+ headers: Record<string, string> | null;
192
193
  tenantId: string;
193
- projectId: string;
194
194
  agentId: string;
195
+ projectId: string;
195
196
  subAgentId: string;
196
- headers: Record<string, string> | null;
197
197
  externalAgentId: string;
198
198
  }>;
199
199
  /**
@@ -206,11 +206,11 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
206
206
  id: string;
207
207
  createdAt: string;
208
208
  updatedAt: string;
209
+ headers: Record<string, string> | null;
209
210
  tenantId: string;
210
- projectId: string;
211
211
  agentId: string;
212
+ projectId: string;
212
213
  subAgentId: string;
213
- headers: Record<string, string> | null;
214
214
  externalAgentId: string;
215
215
  } | undefined>;
216
216
  /**
@@ -227,11 +227,11 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
227
227
  id: string;
228
228
  createdAt: string;
229
229
  updatedAt: string;
230
+ headers: Record<string, string> | null;
230
231
  tenantId: string;
231
- projectId: string;
232
232
  agentId: string;
233
+ projectId: string;
233
234
  subAgentId: string;
234
- headers: Record<string, string> | null;
235
235
  externalAgentId: string;
236
236
  }>;
237
237
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
@@ -13,8 +13,8 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
15
  tenantId: string;
16
- projectId: string;
17
16
  agentId: string;
17
+ projectId: string;
18
18
  sourceSubAgentId: string;
19
19
  targetSubAgentId: string | null;
20
20
  relationType: string | null;
@@ -48,8 +48,8 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
48
48
  createdAt: string;
49
49
  updatedAt: string;
50
50
  tenantId: string;
51
- projectId: string;
52
51
  agentId: string;
52
+ projectId: string;
53
53
  sourceSubAgentId: string;
54
54
  targetSubAgentId: string | null;
55
55
  relationType: string | null;
@@ -61,8 +61,8 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
61
61
  createdAt: string;
62
62
  updatedAt: string;
63
63
  tenantId: string;
64
- projectId: string;
65
64
  agentId: string;
65
+ projectId: string;
66
66
  sourceSubAgentId: string;
67
67
  targetSubAgentId: string | null;
68
68
  relationType: string | null;
@@ -130,8 +130,8 @@ declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
130
130
  createdAt: string;
131
131
  updatedAt: string;
132
132
  tenantId: string;
133
- projectId: string;
134
133
  agentId: string;
134
+ projectId: string;
135
135
  sourceSubAgentId: string;
136
136
  targetSubAgentId: string | null;
137
137
  relationType: string | null;
@@ -149,8 +149,8 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
149
149
  createdAt: string;
150
150
  updatedAt: string;
151
151
  tenantId: string;
152
- projectId: string;
153
152
  agentId: string;
153
+ projectId: string;
154
154
  sourceSubAgentId: string;
155
155
  targetSubAgentId: string | null;
156
156
  relationType: string | null;
@@ -163,8 +163,8 @@ declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
163
163
  createdAt: string;
164
164
  updatedAt: string;
165
165
  tenantId: string;
166
- projectId: string;
167
166
  agentId: string;
167
+ projectId: string;
168
168
  sourceSubAgentId: string;
169
169
  targetSubAgentId: string | null;
170
170
  relationType: string | null;
@@ -207,16 +207,16 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
207
207
  id: string;
208
208
  createdAt: string;
209
209
  updatedAt: string;
210
+ headers: Record<string, string> | null;
210
211
  tenantId: string;
211
- projectId: string;
212
212
  agentId: string;
213
+ projectId: string;
213
214
  subAgentId: string;
214
215
  toolId: string;
215
- headers: Record<string, string> | null;
216
- selectedTools: string[] | null;
217
216
  toolPolicies: Record<string, {
218
217
  needsApproval?: boolean;
219
218
  }> | null;
219
+ selectedTools: string[] | null;
220
220
  }>;
221
221
  declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
222
222
  scopes: AgentScopeConfig;
@@ -251,16 +251,16 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
251
251
  id: string;
252
252
  createdAt: string;
253
253
  updatedAt: string;
254
+ headers: Record<string, string> | null;
254
255
  tenantId: string;
255
- projectId: string;
256
256
  agentId: string;
257
+ projectId: string;
257
258
  subAgentId: string;
258
259
  toolId: string;
259
- headers: Record<string, string> | null;
260
- selectedTools: string[] | null;
261
260
  toolPolicies: Record<string, {
262
261
  needsApproval?: boolean;
263
262
  }> | null;
263
+ selectedTools: string[] | null;
264
264
  } | undefined>;
265
265
  declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
266
266
  scopes: SubAgentScopeConfig;