@inkeep/agents-core 0.67.4 → 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 (38) hide show
  1. package/dist/auth/auth-schema.d.ts +1369 -1
  2. package/dist/auth/auth-schema.js +139 -6
  3. package/dist/auth/auth-validation-schemas.d.ts +137 -137
  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 +21 -21
  8. package/dist/data-access/manage/artifactComponents.d.ts +12 -12
  9. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  10. package/dist/data-access/manage/dataComponents.d.ts +6 -6
  11. package/dist/data-access/manage/functionTools.d.ts +18 -18
  12. package/dist/data-access/manage/skills.d.ts +10 -10
  13. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  14. package/dist/data-access/manage/subAgentRelations.d.ts +28 -28
  15. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
  16. package/dist/data-access/manage/subAgents.d.ts +15 -15
  17. package/dist/data-access/manage/tools.d.ts +24 -24
  18. package/dist/data-access/manage/triggers.d.ts +5 -5
  19. package/dist/data-access/runtime/apiKeys.d.ts +16 -16
  20. package/dist/data-access/runtime/apps.d.ts +15 -15
  21. package/dist/data-access/runtime/conversations.d.ts +16 -16
  22. package/dist/data-access/runtime/feedback.d.ts +6 -6
  23. package/dist/data-access/runtime/messages.d.ts +15 -15
  24. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
  25. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  26. package/dist/data-access/runtime/tasks.d.ts +4 -4
  27. package/dist/db/manage/manage-schema.d.ts +457 -457
  28. package/dist/db/runtime/runtime-schema.d.ts +418 -418
  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 +36 -36
  34. package/dist/validation/schemas.d.ts +2132 -2132
  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
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" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
9
- actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "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" | "organization" | "member" | "invitation" | "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" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
16
- actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "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" | "organization" | "member" | "invitation" | "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" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
23
- actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "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" | "organization" | "member" | "invitation" | "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 };
@@ -10,13 +10,14 @@ 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;
17
+ description: string | null;
18
+ prompt: string | null;
19
+ tenantId: string;
20
+ projectId: string;
20
21
  defaultSubAgentId: string | null;
21
22
  contextConfigId: string | null;
22
23
  models: {
@@ -39,7 +40,6 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
39
40
  allowedProviders?: string[] | undefined;
40
41
  } | undefined;
41
42
  } | null;
42
- prompt: string | null;
43
43
  statusUpdates: {
44
44
  enabled?: boolean | undefined;
45
45
  numEvents?: number | undefined;
@@ -63,13 +63,14 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
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;
70
+ description: string | null;
71
+ prompt: string | null;
72
+ tenantId: string;
73
+ projectId: string;
73
74
  defaultSubAgentId: string | null;
74
75
  contextConfigId: string | null;
75
76
  models: {
@@ -92,7 +93,6 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
92
93
  allowedProviders?: string[] | undefined;
93
94
  } | undefined;
94
95
  } | null;
95
- prompt: string | null;
96
96
  statusUpdates: {
97
97
  enabled?: boolean | undefined;
98
98
  numEvents?: number | undefined;
@@ -113,14 +113,15 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
113
113
  } | null;
114
114
  executionMode: "classic" | "durable";
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;
122
+ tenantId: string;
123
+ agentId: string;
124
+ projectId: string;
124
125
  models: {
125
126
  base?: {
126
127
  model?: string | undefined;
@@ -141,7 +142,6 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
141
142
  allowedProviders?: string[] | undefined;
142
143
  } | undefined;
143
144
  } | null;
144
- prompt: string | null;
145
145
  stopWhen: {
146
146
  stepCountIs?: number | undefined;
147
147
  } | null;
@@ -151,13 +151,14 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
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;
158
+ description: string | null;
159
+ prompt: string | null;
160
+ tenantId: string;
161
+ projectId: string;
161
162
  defaultSubAgentId: string | null;
162
163
  contextConfigId: string | null;
163
164
  models: {
@@ -180,7 +181,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
180
181
  allowedProviders?: string[] | undefined;
181
182
  } | undefined;
182
183
  } | null;
183
- prompt: string | null;
184
184
  statusUpdates: {
185
185
  enabled?: boolean | undefined;
186
186
  numEvents?: number | undefined;
@@ -281,13 +281,14 @@ 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;
288
+ description: string | null;
289
+ prompt: string | null;
290
+ tenantId: string;
291
+ projectId: string;
291
292
  defaultSubAgentId: string | null;
292
293
  contextConfigId: string | null;
293
294
  models: {
@@ -310,7 +311,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
310
311
  allowedProviders?: string[] | undefined;
311
312
  } | undefined;
312
313
  } | null;
313
- prompt: string | null;
314
314
  statusUpdates: {
315
315
  enabled?: boolean | undefined;
316
316
  numEvents?: number | undefined;
@@ -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
- projectId: string;
146
147
  agentId: string;
148
+ projectId: 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
- projectId: string;
189
190
  agentId: string;
191
+ projectId: string;
190
192
  subAgentId: string;
191
- id: string;
192
- createdAt: string;
193
193
  artifactComponentId: string;
194
194
  } | null>;
195
195
  /**
@@ -9,24 +9,24 @@ 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
+ agentId: string;
17
+ projectId: string;
18
18
  headersSchema: unknown;
19
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
- tenantId: string;
25
- projectId: string;
26
- agentId: string;
27
24
  id: string;
28
25
  createdAt: string;
29
26
  updatedAt: string;
27
+ tenantId: string;
28
+ agentId: string;
29
+ projectId: string;
30
30
  headersSchema: unknown;
31
31
  contextVariables: Record<string, ContextFetchDefinition> | null;
32
32
  }[]>;
@@ -43,12 +43,12 @@ 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
+ agentId: string;
51
+ projectId: string;
52
52
  headersSchema: unknown;
53
53
  contextVariables: Record<string, ContextFetchDefinition> | null;
54
54
  }>;
@@ -83,12 +83,12 @@ 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
+ agentId: string;
91
+ projectId: string;
92
92
  headersSchema: unknown;
93
93
  contextVariables: Record<string, ContextFetchDefinition> | null;
94
94
  }>;
@@ -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
- projectId: string;
70
71
  agentId: string;
72
+ projectId: 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
- projectId: string;
112
113
  agentId: string;
114
+ projectId: 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
+ agentId: string;
63
+ projectId: 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
+ agentId: string;
105
+ projectId: 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
- tenantId: string;
161
- projectId: string;
162
- agentId: string;
163
- subAgentId: string;
164
160
  id: string;
165
161
  createdAt: string;
166
162
  updatedAt: string;
167
- functionToolId: string;
163
+ tenantId: string;
164
+ agentId: string;
165
+ projectId: string;
166
+ subAgentId: 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
- tenantId: string;
226
- projectId: string;
227
- agentId: string;
228
- subAgentId: string;
229
225
  id: string;
230
226
  createdAt: string;
231
227
  updatedAt: string;
232
- functionToolId: string;
228
+ tenantId: string;
229
+ agentId: string;
230
+ projectId: string;
231
+ subAgentId: 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,15 +15,15 @@ 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;
26
25
  content: string;
26
+ projectId: string;
27
27
  } | null>;
28
28
  declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
29
29
  scopes: ProjectScopeConfig;
@@ -110,15 +110,15 @@ 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;
121
120
  content: string;
121
+ projectId: string;
122
122
  }>;
123
123
  declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
124
124
  scopes: ProjectScopeConfig;
@@ -139,13 +139,13 @@ 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
+ agentId: string;
147
+ projectId: string;
148
+ subAgentId: string;
149
149
  index: number;
150
150
  alwaysLoaded: boolean;
151
151
  skillId: string;
@@ -9,14 +9,14 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- tenantId: string;
13
- projectId: string;
14
- agentId: string;
15
- subAgentId: string;
16
12
  id: string;
17
13
  createdAt: string;
18
14
  updatedAt: string;
19
15
  headers: Record<string, string> | null;
16
+ tenantId: string;
17
+ agentId: string;
18
+ projectId: string;
19
+ subAgentId: string;
20
20
  externalAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -44,27 +44,27 @@ declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClien
44
44
  declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- tenantId: string;
48
- projectId: string;
49
- agentId: string;
50
- subAgentId: string;
51
47
  id: string;
52
48
  createdAt: string;
53
49
  updatedAt: string;
54
50
  headers: Record<string, string> | null;
51
+ tenantId: string;
52
+ agentId: string;
53
+ projectId: string;
54
+ subAgentId: string;
55
55
  externalAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
- tenantId: string;
61
- projectId: string;
62
- agentId: string;
63
- subAgentId: string;
64
60
  id: string;
65
61
  createdAt: string;
66
62
  updatedAt: string;
67
63
  headers: Record<string, string> | null;
64
+ tenantId: string;
65
+ agentId: string;
66
+ projectId: string;
67
+ subAgentId: string;
68
68
  externalAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -186,14 +186,14 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
186
186
  headers?: Record<string, string> | null;
187
187
  };
188
188
  }) => Promise<{
189
- tenantId: string;
190
- projectId: string;
191
- agentId: string;
192
- subAgentId: string;
193
189
  id: string;
194
190
  createdAt: string;
195
191
  updatedAt: string;
196
192
  headers: Record<string, string> | null;
193
+ tenantId: string;
194
+ agentId: string;
195
+ projectId: string;
196
+ subAgentId: string;
197
197
  externalAgentId: string;
198
198
  }>;
199
199
  /**
@@ -203,14 +203,14 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
203
203
  scopes: SubAgentScopeConfig;
204
204
  externalAgentId: string;
205
205
  }) => Promise<{
206
- tenantId: string;
207
- projectId: string;
208
- agentId: string;
209
- subAgentId: string;
210
206
  id: string;
211
207
  createdAt: string;
212
208
  updatedAt: string;
213
209
  headers: Record<string, string> | null;
210
+ tenantId: string;
211
+ agentId: string;
212
+ projectId: string;
213
+ subAgentId: string;
214
214
  externalAgentId: string;
215
215
  } | undefined>;
216
216
  /**
@@ -224,14 +224,14 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
224
224
  headers?: Record<string, string> | null;
225
225
  };
226
226
  }) => Promise<{
227
- tenantId: string;
228
- projectId: string;
229
- agentId: string;
230
- subAgentId: string;
231
227
  id: string;
232
228
  createdAt: string;
233
229
  updatedAt: string;
234
230
  headers: Record<string, string> | null;
231
+ tenantId: string;
232
+ agentId: string;
233
+ projectId: string;
234
+ subAgentId: string;
235
235
  externalAgentId: string;
236
236
  }>;
237
237
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {