@inkeep/agents-core 0.79.1 → 0.80.2

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 (43) hide show
  1. package/dist/auth/auth-schema.d.ts +163 -163
  2. package/dist/auth/auth-validation-schemas.d.ts +154 -154
  3. package/dist/auth/auth.d.ts +9 -9
  4. package/dist/auth/auth.js +1 -1
  5. package/dist/auth/permissions.d.ts +13 -13
  6. package/dist/constants/otel-attributes.d.ts +3 -0
  7. package/dist/constants/otel-attributes.js +4 -1
  8. package/dist/data-access/manage/agents.d.ts +46 -46
  9. package/dist/data-access/manage/artifactComponents.d.ts +8 -8
  10. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  11. package/dist/data-access/manage/dataComponents.d.ts +4 -4
  12. package/dist/data-access/manage/functionTools.d.ts +10 -10
  13. package/dist/data-access/manage/skills.d.ts +9 -9
  14. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
  15. package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
  16. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  17. package/dist/data-access/manage/subAgents.d.ts +18 -18
  18. package/dist/data-access/manage/tools.d.ts +24 -24
  19. package/dist/data-access/manage/tools.js +33 -8
  20. package/dist/data-access/manage/triggers.d.ts +7 -7
  21. package/dist/data-access/runtime/apiKeys.d.ts +12 -12
  22. package/dist/data-access/runtime/apps.d.ts +7 -7
  23. package/dist/data-access/runtime/conversations.d.ts +32 -32
  24. package/dist/data-access/runtime/evalRuns.d.ts +5 -0
  25. package/dist/data-access/runtime/evalRuns.js +3 -0
  26. package/dist/data-access/runtime/events.d.ts +5 -5
  27. package/dist/data-access/runtime/feedback.d.ts +4 -4
  28. package/dist/data-access/runtime/feedback.js +2 -2
  29. package/dist/data-access/runtime/messages.d.ts +24 -24
  30. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +5 -5
  31. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  32. package/dist/data-access/runtime/tasks.d.ts +6 -6
  33. package/dist/db/manage/manage-schema.d.ts +8 -8
  34. package/dist/db/runtime/runtime-schema.d.ts +14 -14
  35. package/dist/utils/error.d.ts +51 -51
  36. package/dist/utils/json-schema-walk.d.ts +50 -0
  37. package/dist/utils/json-schema-walk.js +202 -0
  38. package/dist/utils/mcp-client.js +14 -32
  39. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  40. package/dist/validation/schemas/skills.d.ts +17 -17
  41. package/dist/validation/schemas.d.ts +2389 -2384
  42. package/dist/validation/schemas.js +2 -0
  43. package/package.json +5 -1
@@ -4,7 +4,7 @@ import * as jose0 from "jose";
4
4
  import * as zod0 from "zod";
5
5
  import * as better_auth0 from "better-auth";
6
6
  import * as _better_auth_oauth_provider0 from "@better-auth/oauth-provider";
7
- import * as better_auth_plugins0 from "better-auth/plugins";
7
+ import * as better_auth_plugins20 from "better-auth/plugins";
8
8
  import * as zod_v4_core0 from "zod/v4/core";
9
9
 
10
10
  //#region src/auth/auth.d.ts
@@ -42,11 +42,11 @@ declare function _inferAuthType(): better_auth0.Auth<{
42
42
  handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
43
43
  }[];
44
44
  };
45
- options: better_auth_plugins0.BearerOptions | undefined;
45
+ options: better_auth_plugins20.BearerOptions | undefined;
46
46
  }, {
47
47
  id: "oauth-proxy";
48
48
  version: string;
49
- options: NoInfer<better_auth_plugins0.OAuthProxyOptions>;
49
+ options: NoInfer<better_auth_plugins20.OAuthProxyOptions>;
50
50
  endpoints: {
51
51
  oAuthProxy: better_auth0.StrictEndpoint<"/oauth-proxy-callback", {
52
52
  method: "GET";
@@ -101,7 +101,7 @@ declare function _inferAuthType(): better_auth0.Auth<{
101
101
  }, {
102
102
  id: "jwt";
103
103
  version: string;
104
- options: NoInfer<better_auth_plugins0.JwtOptions>;
104
+ options: NoInfer<better_auth_plugins20.JwtOptions>;
105
105
  endpoints: {
106
106
  getJwks: better_auth0.StrictEndpoint<string, {
107
107
  method: "GET";
@@ -238,7 +238,7 @@ declare function _inferAuthType(): better_auth0.Auth<{
238
238
  $Infer: {
239
239
  body: {
240
240
  payload: jose0.JWTPayload;
241
- overrideOptions?: better_auth_plugins0.JwtOptions | undefined;
241
+ overrideOptions?: better_auth_plugins20.JwtOptions | undefined;
242
242
  };
243
243
  };
244
244
  };
@@ -336,7 +336,7 @@ declare function _inferAuthType(): better_auth0.Auth<{
336
336
  SERVER_ONLY: true;
337
337
  };
338
338
  }, Omit<_better_auth_oauth_provider0.OIDCMetadata, "id_token_signing_alg_values_supported"> & {
339
- id_token_signing_alg_values_supported: better_auth_plugins0.JWSAlgorithms[] | ["HS256"];
339
+ id_token_signing_alg_values_supported: better_auth_plugins20.JWSAlgorithms[] | ["HS256"];
340
340
  }>;
341
341
  oauth2Authorize: better_auth0.StrictEndpoint<"/oauth2/authorize", {
342
342
  method: "GET";
@@ -2346,7 +2346,7 @@ declare function _inferAuthType(): better_auth0.Auth<{
2346
2346
  window: number;
2347
2347
  max: number;
2348
2348
  })[];
2349
- }, better_auth_plugins0.DefaultOrganizationPlugin<{
2349
+ }, better_auth_plugins20.DefaultOrganizationPlugin<{
2350
2350
  schema: {
2351
2351
  invitation: {
2352
2352
  additionalFields: {
@@ -2710,8 +2710,8 @@ declare function _inferAuthType(): better_auth0.Auth<{
2710
2710
  AUTHENTICATION_REQUIRED: better_auth0.RawError<"AUTHENTICATION_REQUIRED">;
2711
2711
  };
2712
2712
  options: Partial<{
2713
- expiresIn: better_auth_plugins0.TimeString;
2714
- interval: better_auth_plugins0.TimeString;
2713
+ expiresIn: better_auth_plugins20.TimeString;
2714
+ interval: better_auth_plugins20.TimeString;
2715
2715
  deviceCodeLength: number;
2716
2716
  userCodeLength: number;
2717
2717
  schema: {
package/dist/auth/auth.js CHANGED
@@ -193,7 +193,7 @@ function createAuth(config) {
193
193
  }),
194
194
  oAuthProxy({ productionURL: env.OAUTH_PROXY_PRODUCTION_URL || config.baseURL }),
195
195
  organization({
196
- allowUserToCreateOrganization: true,
196
+ allowUserToCreateOrganization: false,
197
197
  ac,
198
198
  roles: {
199
199
  member: memberRole,
@@ -1,29 +1,29 @@
1
- import * as better_auth_plugins7 from "better-auth/plugins";
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 "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];
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"): better_auth_plugins7.AuthorizeResponse;
12
- statements: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.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 "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];
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"): better_auth_plugins7.AuthorizeResponse;
19
- statements: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.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 "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];
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"): better_auth_plugins7.AuthorizeResponse;
26
- statements: better_auth_plugins7.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins7.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 };
@@ -168,6 +168,9 @@ declare const SPAN_KEYS: {
168
168
  readonly STREAM_BUFFER_SIZE_BYTES: "stream.buffer_size_bytes";
169
169
  readonly STREAM_SENT_ITEMS_COUNT: "stream.sent_items_count";
170
170
  readonly STREAM_COMPLETED_ITEMS_COUNT: "stream.completed_items_count";
171
+ readonly TTFT_MODEL_TOKEN: "inkeep.agent.time_to_first_model_token";
172
+ readonly TTFT_VISIBLE_TOKEN: "inkeep.agent.time_to_first_visible_token";
173
+ readonly TTFT_VISIBLE_PART: "inkeep.agent.time_to_first_visible_part";
171
174
  };
172
175
  declare const UNKNOWN_VALUE: "unknown";
173
176
  /** Activity Types */
@@ -167,7 +167,10 @@ const SPAN_KEYS = {
167
167
  STREAM_MAX_LIFETIME_MS: "stream.max_lifetime_ms",
168
168
  STREAM_BUFFER_SIZE_BYTES: "stream.buffer_size_bytes",
169
169
  STREAM_SENT_ITEMS_COUNT: "stream.sent_items_count",
170
- STREAM_COMPLETED_ITEMS_COUNT: "stream.completed_items_count"
170
+ STREAM_COMPLETED_ITEMS_COUNT: "stream.completed_items_count",
171
+ TTFT_MODEL_TOKEN: "inkeep.agent.time_to_first_model_token",
172
+ TTFT_VISIBLE_TOKEN: "inkeep.agent.time_to_first_visible_token",
173
+ TTFT_VISIBLE_PART: "inkeep.agent.time_to_first_visible_part"
171
174
  };
172
175
  const UNKNOWN_VALUE = "unknown";
173
176
  /** Activity Types */
@@ -12,14 +12,7 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
12
12
  }) => Promise<{
13
13
  id: string;
14
14
  name: string;
15
- createdAt: string;
16
- updatedAt: string;
17
15
  description: string | null;
18
- prompt: string | null;
19
- projectId: string;
20
- tenantId: string;
21
- defaultSubAgentId: string | null;
22
- contextConfigId: string | null;
23
16
  models: {
24
17
  base?: {
25
18
  model?: string | undefined;
@@ -40,6 +33,15 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
40
33
  allowedProviders?: string[] | undefined;
41
34
  } | undefined;
42
35
  } | null;
36
+ stopWhen: {
37
+ transferCountIs?: number | undefined;
38
+ } | null;
39
+ createdAt: string;
40
+ updatedAt: string;
41
+ tenantId: string;
42
+ defaultSubAgentId: string | null;
43
+ contextConfigId: string | null;
44
+ prompt: string | null;
43
45
  statusUpdates: {
44
46
  enabled?: boolean | undefined;
45
47
  numEvents?: number | undefined;
@@ -55,24 +57,15 @@ 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
66
  id: string;
67
67
  name: string;
68
- createdAt: string;
69
- updatedAt: string;
70
68
  description: string | null;
71
- prompt: string | null;
72
- projectId: string;
73
- tenantId: string;
74
- defaultSubAgentId: string | null;
75
- contextConfigId: string | null;
76
69
  models: {
77
70
  base?: {
78
71
  model?: string | undefined;
@@ -93,6 +86,15 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
93
86
  allowedProviders?: string[] | undefined;
94
87
  } | undefined;
95
88
  } | null;
89
+ stopWhen: {
90
+ transferCountIs?: number | undefined;
91
+ } | null;
92
+ createdAt: string;
93
+ updatedAt: string;
94
+ tenantId: string;
95
+ defaultSubAgentId: string | null;
96
+ contextConfigId: string | null;
97
+ prompt: string | null;
96
98
  statusUpdates: {
97
99
  enabled?: boolean | undefined;
98
100
  numEvents?: number | undefined;
@@ -108,20 +110,12 @@ 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
116
  id: string;
117
117
  name: string;
118
- createdAt: string;
119
- updatedAt: string;
120
118
  description: string | null;
121
- prompt: string | null;
122
- agentId: string;
123
- projectId: string;
124
- tenantId: string;
125
119
  models: {
126
120
  base?: {
127
121
  model?: string | undefined;
@@ -145,6 +139,12 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
145
139
  stopWhen: {
146
140
  stepCountIs?: number | undefined;
147
141
  } | null;
142
+ createdAt: string;
143
+ updatedAt: string;
144
+ tenantId: string;
145
+ prompt: string | null;
146
+ projectId: string;
147
+ agentId: string;
148
148
  conversationHistoryConfig: ConversationHistoryConfig | null;
149
149
  outputContract: {
150
150
  [x: string]: unknown;
@@ -162,14 +162,7 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
162
162
  }) => Promise<{
163
163
  id: string;
164
164
  name: string;
165
- createdAt: string;
166
- updatedAt: string;
167
165
  description: string | null;
168
- prompt: string | null;
169
- projectId: string;
170
- tenantId: string;
171
- defaultSubAgentId: string | null;
172
- contextConfigId: string | null;
173
166
  models: {
174
167
  base?: {
175
168
  model?: string | undefined;
@@ -190,6 +183,15 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
190
183
  allowedProviders?: string[] | undefined;
191
184
  } | undefined;
192
185
  } | null;
186
+ stopWhen: {
187
+ transferCountIs?: number | undefined;
188
+ } | null;
189
+ createdAt: string;
190
+ updatedAt: string;
191
+ tenantId: string;
192
+ defaultSubAgentId: string | null;
193
+ contextConfigId: string | null;
194
+ prompt: string | null;
193
195
  statusUpdates: {
194
196
  enabled?: boolean | undefined;
195
197
  numEvents?: number | undefined;
@@ -205,10 +207,8 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
205
207
  } | undefined;
206
208
  }[] | undefined;
207
209
  } | null;
208
- stopWhen: {
209
- transferCountIs?: number | undefined;
210
- } | null;
211
210
  executionMode: "classic" | "durable";
211
+ projectId: string;
212
212
  }[]>;
213
213
  declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
214
214
  scopes: ProjectScopeConfig;
@@ -292,14 +292,7 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
292
292
  declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
293
293
  id: string;
294
294
  name: string;
295
- createdAt: string;
296
- updatedAt: string;
297
295
  description: string | null;
298
- prompt: string | null;
299
- projectId: string;
300
- tenantId: string;
301
- defaultSubAgentId: string | null;
302
- contextConfigId: string | null;
303
296
  models: {
304
297
  base?: {
305
298
  model?: string | undefined;
@@ -320,6 +313,15 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
320
313
  allowedProviders?: string[] | undefined;
321
314
  } | undefined;
322
315
  } | null;
316
+ stopWhen: {
317
+ transferCountIs?: number | undefined;
318
+ } | null;
319
+ createdAt: string;
320
+ updatedAt: string;
321
+ tenantId: string;
322
+ defaultSubAgentId: string | null;
323
+ contextConfigId: string | null;
324
+ prompt: string | null;
323
325
  statusUpdates: {
324
326
  enabled?: boolean | undefined;
325
327
  numEvents?: number | undefined;
@@ -335,10 +337,8 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
335
337
  } | undefined;
336
338
  }[] | undefined;
337
339
  } | null;
338
- stopWhen: {
339
- transferCountIs?: number | undefined;
340
- } | null;
341
340
  executionMode: "classic" | "durable";
341
+ projectId: string;
342
342
  }>;
343
343
  declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
344
344
  scopes: AgentScopeConfig;
@@ -11,11 +11,11 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
11
11
  }) => Promise<{
12
12
  id: string;
13
13
  name: string;
14
+ description: string | null;
14
15
  createdAt: string;
15
16
  updatedAt: string;
16
- description: string | null;
17
- projectId: string;
18
17
  tenantId: string;
18
+ projectId: string;
19
19
  props: {
20
20
  [x: string]: unknown;
21
21
  type: "object";
@@ -67,11 +67,11 @@ 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;
70
71
  createdAt: string;
71
72
  updatedAt: string;
72
- description: string | null;
73
- projectId: string;
74
73
  tenantId: string;
74
+ projectId: string;
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;
147
- projectId: string;
148
146
  tenantId: string;
147
+ projectId: 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;
190
- projectId: string;
191
189
  tenantId: string;
190
+ projectId: string;
191
+ agentId: string;
192
192
  subAgentId: string;
193
193
  artifactComponentId: string;
194
194
  } | null>;
@@ -12,11 +12,11 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
12
12
  id: string;
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
+ tenantId: string;
16
+ projectId: string;
15
17
  headersSchema: unknown;
16
18
  contextVariables: Record<string, ContextFetchDefinition> | null;
17
19
  agentId: string;
18
- projectId: string;
19
- tenantId: string;
20
20
  } | undefined>;
21
21
  declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: AgentScopeConfig;
@@ -24,11 +24,11 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
24
24
  id: string;
25
25
  createdAt: string;
26
26
  updatedAt: string;
27
+ tenantId: string;
28
+ projectId: string;
27
29
  headersSchema: unknown;
28
30
  contextVariables: Record<string, ContextFetchDefinition> | null;
29
31
  agentId: string;
30
- projectId: string;
31
- tenantId: string;
32
32
  }[]>;
33
33
  declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (params: {
34
34
  scopes: AgentScopeConfig;
@@ -46,11 +46,11 @@ declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params:
46
46
  id: string;
47
47
  createdAt: string;
48
48
  updatedAt: string;
49
+ tenantId: string;
50
+ projectId: string;
49
51
  headersSchema: unknown;
50
52
  contextVariables: Record<string, ContextFetchDefinition> | null;
51
53
  agentId: string;
52
- projectId: string;
53
- tenantId: string;
54
54
  }>;
55
55
  declare const updateContextConfig: (db: AgentsManageDatabaseClient) => (params: {
56
56
  scopes: AgentScopeConfig;
@@ -86,11 +86,11 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
86
86
  id: string;
87
87
  createdAt: string;
88
88
  updatedAt: string;
89
+ tenantId: string;
90
+ projectId: string;
89
91
  headersSchema: unknown;
90
92
  contextVariables: Record<string, ContextFetchDefinition> | null;
91
93
  agentId: string;
92
- projectId: string;
93
- tenantId: string;
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;
71
- projectId: string;
72
70
  tenantId: string;
71
+ projectId: 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;
113
- projectId: string;
114
112
  tenantId: string;
113
+ projectId: string;
114
+ agentId: 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;
58
59
  createdAt: string;
59
60
  updatedAt: string;
60
- description: string | null;
61
- agentId: string;
62
- projectId: string;
63
61
  tenantId: string;
62
+ projectId: string;
63
+ agentId: 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;
100
101
  createdAt: string;
101
102
  updatedAt: string;
102
- description: string | null;
103
- agentId: string;
104
- projectId: string;
105
103
  tenantId: string;
104
+ projectId: string;
105
+ agentId: string;
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;
164
- projectId: string;
165
163
  tenantId: string;
164
+ projectId: string;
165
+ agentId: string;
166
166
  subAgentId: string;
167
167
  toolPolicies: Record<string, {
168
168
  needsApproval?: boolean;
@@ -225,9 +225,9 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
225
225
  id: string;
226
226
  createdAt: string;
227
227
  updatedAt: string;
228
- agentId: string;
229
- projectId: string;
230
228
  tenantId: string;
229
+ projectId: string;
230
+ agentId: string;
231
231
  subAgentId: string;
232
232
  toolPolicies: Record<string, {
233
233
  needsApproval?: boolean;
@@ -17,13 +17,13 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
17
17
  }) => Promise<{
18
18
  id: string;
19
19
  name: string;
20
+ description: string;
20
21
  createdAt: string;
21
22
  updatedAt: string;
22
- metadata: Record<string, string> | null;
23
- description: string;
24
- projectId: string;
25
23
  tenantId: string;
24
+ projectId: string;
26
25
  content: string;
26
+ metadata: Record<string, string> | null;
27
27
  } | null>;
28
28
  declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
29
29
  scopes: ProjectScopeConfig;
@@ -112,13 +112,13 @@ 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;
115
116
  createdAt: string;
116
117
  updatedAt: string;
117
- metadata: Record<string, string> | null;
118
- description: string;
119
- projectId: string;
120
118
  tenantId: string;
119
+ projectId: string;
121
120
  content: string;
121
+ metadata: Record<string, string> | null;
122
122
  }>;
123
123
  declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
124
124
  scopes: ProjectScopeConfig;
@@ -142,13 +142,13 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
142
142
  id: string;
143
143
  createdAt: string;
144
144
  updatedAt: string;
145
- agentId: string;
146
- projectId: string;
147
145
  tenantId: string;
148
- subAgentId: string;
146
+ projectId: string;
147
+ agentId: string;
149
148
  skillId: string;
150
149
  index: number;
151
150
  alwaysLoaded: boolean;
151
+ subAgentId: string;
152
152
  }>;
153
153
  declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
154
154
  scopes: AgentScopeConfig;
@@ -12,10 +12,10 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
12
12
  id: string;
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
- headers: Record<string, string> | null;
16
- agentId: string;
17
- projectId: string;
18
15
  tenantId: string;
16
+ projectId: string;
17
+ agentId: string;
18
+ headers: Record<string, string> | null;
19
19
  subAgentId: string;
20
20
  externalAgentId: string;
21
21
  } | undefined>;
@@ -47,10 +47,10 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
47
47
  id: string;
48
48
  createdAt: string;
49
49
  updatedAt: string;
50
- headers: Record<string, string> | null;
51
- agentId: string;
52
- projectId: string;
53
50
  tenantId: string;
51
+ projectId: string;
52
+ agentId: string;
53
+ headers: Record<string, string> | null;
54
54
  subAgentId: string;
55
55
  externalAgentId: string;
56
56
  }[]>;
@@ -60,10 +60,10 @@ declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabas
60
60
  id: string;
61
61
  createdAt: string;
62
62
  updatedAt: string;
63
- headers: Record<string, string> | null;
64
- agentId: string;
65
- projectId: string;
66
63
  tenantId: string;
64
+ projectId: string;
65
+ agentId: string;
66
+ headers: Record<string, string> | null;
67
67
  subAgentId: string;
68
68
  externalAgentId: string;
69
69
  }[]>;
@@ -189,10 +189,10 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
189
189
  id: string;
190
190
  createdAt: string;
191
191
  updatedAt: string;
192
- headers: Record<string, string> | null;
193
- agentId: string;
194
- projectId: string;
195
192
  tenantId: string;
193
+ projectId: string;
194
+ agentId: string;
195
+ headers: Record<string, string> | null;
196
196
  subAgentId: string;
197
197
  externalAgentId: string;
198
198
  }>;
@@ -206,10 +206,10 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
206
206
  id: string;
207
207
  createdAt: string;
208
208
  updatedAt: string;
209
- headers: Record<string, string> | null;
210
- agentId: string;
211
- projectId: string;
212
209
  tenantId: string;
210
+ projectId: string;
211
+ agentId: string;
212
+ headers: Record<string, string> | null;
213
213
  subAgentId: string;
214
214
  externalAgentId: string;
215
215
  } | undefined>;
@@ -227,10 +227,10 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
227
227
  id: string;
228
228
  createdAt: string;
229
229
  updatedAt: string;
230
- headers: Record<string, string> | null;
231
- agentId: string;
232
- projectId: string;
233
230
  tenantId: string;
231
+ projectId: string;
232
+ agentId: string;
233
+ headers: Record<string, string> | null;
234
234
  subAgentId: string;
235
235
  externalAgentId: string;
236
236
  }>;