@inkeep/agents-core 0.60.0 → 0.61.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 (63) hide show
  1. package/dist/auth/auth-schema.d.ts +86 -86
  2. package/dist/auth/auth-validation-schemas.d.ts +154 -154
  3. package/dist/auth/auth.d.ts +6 -6
  4. package/dist/auth/init.js +42 -0
  5. package/dist/auth/permissions.d.ts +13 -13
  6. package/dist/auth/wait-for-spicedb.d.ts +1 -0
  7. package/dist/auth/wait-for-spicedb.js +51 -0
  8. package/dist/client-exports.d.ts +3 -106
  9. package/dist/client-exports.js +2 -60
  10. package/dist/data-access/index.d.ts +4 -3
  11. package/dist/data-access/index.js +4 -3
  12. package/dist/data-access/manage/agentFull.js +10 -5
  13. package/dist/data-access/manage/agents.d.ts +69 -63
  14. package/dist/data-access/manage/agents.js +2 -0
  15. package/dist/data-access/manage/artifactComponents.d.ts +16 -16
  16. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  17. package/dist/data-access/manage/dataComponents.d.ts +6 -6
  18. package/dist/data-access/manage/functionTools.d.ts +14 -14
  19. package/dist/data-access/manage/projectFull.js +24 -3
  20. package/dist/data-access/manage/skills.d.ts +18 -18
  21. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +21 -21
  22. package/dist/data-access/manage/subAgentRelations.d.ts +23 -23
  23. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
  24. package/dist/data-access/manage/subAgents.d.ts +36 -36
  25. package/dist/data-access/manage/tools.d.ts +24 -24
  26. package/dist/data-access/runtime/apiKeys.d.ts +16 -16
  27. package/dist/data-access/runtime/apps.d.ts +56 -11
  28. package/dist/data-access/runtime/apps.js +15 -1
  29. package/dist/data-access/runtime/conversations.d.ts +25 -25
  30. package/dist/data-access/runtime/conversations.js +1 -0
  31. package/dist/data-access/runtime/ledgerArtifacts.d.ts +11 -2
  32. package/dist/data-access/runtime/ledgerArtifacts.js +12 -1
  33. package/dist/data-access/runtime/messages.d.ts +21 -21
  34. package/dist/data-access/runtime/tasks.d.ts +6 -6
  35. package/dist/data-access/runtime/workflowExecutions.d.ts +25 -0
  36. package/dist/data-access/runtime/workflowExecutions.js +32 -0
  37. package/dist/db/manage/manage-schema.d.ts +399 -379
  38. package/dist/db/manage/manage-schema.js +1 -0
  39. package/dist/db/runtime/runtime-schema.d.ts +516 -301
  40. package/dist/db/runtime/runtime-schema.js +16 -2
  41. package/dist/index.d.ts +10 -8
  42. package/dist/index.js +8 -6
  43. package/dist/types/entities.d.ts +5 -2
  44. package/dist/types/index.d.ts +3 -3
  45. package/dist/types/utility.d.ts +9 -3
  46. package/dist/utils/conversations.d.ts +4 -1
  47. package/dist/utils/conversations.js +10 -1
  48. package/dist/utils/index.d.ts +3 -2
  49. package/dist/utils/index.js +3 -2
  50. package/dist/utils/validate-public-key.d.ts +10 -0
  51. package/dist/utils/validate-public-key.js +89 -0
  52. package/dist/validation/agentFull.js +0 -1
  53. package/dist/validation/index.d.ts +2 -2
  54. package/dist/validation/index.js +2 -2
  55. package/dist/validation/schemas.d.ts +3264 -2504
  56. package/dist/validation/schemas.js +104 -36
  57. package/drizzle/manage/0013_gorgeous_umar.sql +1 -0
  58. package/drizzle/manage/meta/0013_snapshot.json +3704 -0
  59. package/drizzle/manage/meta/_journal.json +7 -0
  60. package/drizzle/runtime/0026_graceful_scorpion.sql +15 -0
  61. package/drizzle/runtime/meta/{0025_snapshot.json → 0026_snapshot.json} +114 -1
  62. package/drizzle/runtime/meta/_journal.json +7 -0
  63. package/package.json +1 -1
@@ -10,33 +10,30 @@ 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
- name: string;
15
- tenantId: string;
16
- projectId: string;
17
13
  id: string;
14
+ name: string;
18
15
  createdAt: string;
19
16
  updatedAt: string;
17
+ description: string | null;
18
+ projectId: string;
19
+ tenantId: string;
20
+ defaultSubAgentId: string | null;
21
+ contextConfigId: string | null;
20
22
  models: {
21
23
  base?: {
22
24
  model?: string | undefined;
23
- providerOptions?: Record<string, any> | undefined;
25
+ providerOptions?: Record<string, unknown> | undefined;
24
26
  } | undefined;
25
27
  structuredOutput?: {
26
28
  model?: string | undefined;
27
- providerOptions?: Record<string, any> | undefined;
29
+ providerOptions?: Record<string, unknown> | undefined;
28
30
  } | undefined;
29
31
  summarizer?: {
30
32
  model?: string | undefined;
31
- providerOptions?: Record<string, any> | undefined;
33
+ providerOptions?: Record<string, unknown> | undefined;
32
34
  } | undefined;
33
35
  } | null;
34
- stopWhen: {
35
- transferCountIs?: number | undefined;
36
- } | null;
37
36
  prompt: string | null;
38
- defaultSubAgentId: string | null;
39
- contextConfigId: string | null;
40
37
  statusUpdates: {
41
38
  enabled?: boolean | undefined;
42
39
  numEvents?: number | undefined;
@@ -52,37 +49,38 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
52
49
  } | undefined;
53
50
  }[] | undefined;
54
51
  } | null;
52
+ stopWhen: {
53
+ transferCountIs?: number | undefined;
54
+ } | null;
55
+ executionMode: "classic" | "durable";
55
56
  } | null>;
56
57
  declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
57
58
  scopes: AgentScopeConfig;
58
59
  }) => Promise<{
59
- description: string | null;
60
- name: string;
61
- tenantId: string;
62
- projectId: string;
63
60
  id: string;
61
+ name: string;
64
62
  createdAt: string;
65
63
  updatedAt: string;
64
+ description: string | null;
65
+ projectId: string;
66
+ tenantId: string;
67
+ defaultSubAgentId: string | null;
68
+ contextConfigId: string | null;
66
69
  models: {
67
70
  base?: {
68
71
  model?: string | undefined;
69
- providerOptions?: Record<string, any> | undefined;
72
+ providerOptions?: Record<string, unknown> | undefined;
70
73
  } | undefined;
71
74
  structuredOutput?: {
72
75
  model?: string | undefined;
73
- providerOptions?: Record<string, any> | undefined;
76
+ providerOptions?: Record<string, unknown> | undefined;
74
77
  } | undefined;
75
78
  summarizer?: {
76
79
  model?: string | undefined;
77
- providerOptions?: Record<string, any> | undefined;
80
+ providerOptions?: Record<string, unknown> | undefined;
78
81
  } | undefined;
79
82
  } | null;
80
- stopWhen: {
81
- transferCountIs?: number | undefined;
82
- } | null;
83
83
  prompt: string | null;
84
- defaultSubAgentId: string | null;
85
- contextConfigId: string | null;
86
84
  statusUpdates: {
87
85
  enabled?: boolean | undefined;
88
86
  numEvents?: number | undefined;
@@ -98,66 +96,67 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
98
96
  } | undefined;
99
97
  }[] | undefined;
100
98
  } | null;
99
+ stopWhen: {
100
+ transferCountIs?: number | undefined;
101
+ } | null;
102
+ executionMode: "classic" | "durable";
101
103
  defaultSubAgent: {
102
- description: string | null;
103
- name: string;
104
- tenantId: string;
105
- projectId: string;
106
104
  id: string;
105
+ name: string;
107
106
  createdAt: string;
108
107
  updatedAt: string;
108
+ description: string | null;
109
+ agentId: string;
110
+ projectId: string;
111
+ tenantId: string;
109
112
  models: {
110
113
  base?: {
111
114
  model?: string | undefined;
112
- providerOptions?: Record<string, any> | undefined;
115
+ providerOptions?: Record<string, unknown> | undefined;
113
116
  } | undefined;
114
117
  structuredOutput?: {
115
118
  model?: string | undefined;
116
- providerOptions?: Record<string, any> | undefined;
119
+ providerOptions?: Record<string, unknown> | undefined;
117
120
  } | undefined;
118
121
  summarizer?: {
119
122
  model?: string | undefined;
120
- providerOptions?: Record<string, any> | undefined;
123
+ providerOptions?: Record<string, unknown> | undefined;
121
124
  } | undefined;
122
125
  } | null;
126
+ prompt: string | null;
123
127
  stopWhen: {
124
128
  stepCountIs?: number | undefined;
125
129
  } | null;
126
- prompt: string | null;
127
130
  conversationHistoryConfig: ConversationHistoryConfig | null;
128
- agentId: string;
129
131
  } | null;
130
132
  } | null>;
131
133
  declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
132
134
  scopes: ProjectScopeConfig;
133
135
  }) => Promise<{
134
- description: string | null;
135
- name: string;
136
- tenantId: string;
137
- projectId: string;
138
136
  id: string;
137
+ name: string;
139
138
  createdAt: string;
140
139
  updatedAt: string;
140
+ description: string | null;
141
+ projectId: string;
142
+ tenantId: string;
143
+ defaultSubAgentId: string | null;
144
+ contextConfigId: string | null;
141
145
  models: {
142
146
  base?: {
143
147
  model?: string | undefined;
144
- providerOptions?: Record<string, any> | undefined;
148
+ providerOptions?: Record<string, unknown> | undefined;
145
149
  } | undefined;
146
150
  structuredOutput?: {
147
151
  model?: string | undefined;
148
- providerOptions?: Record<string, any> | undefined;
152
+ providerOptions?: Record<string, unknown> | undefined;
149
153
  } | undefined;
150
154
  summarizer?: {
151
155
  model?: string | undefined;
152
- providerOptions?: Record<string, any> | undefined;
156
+ providerOptions?: Record<string, unknown> | undefined;
153
157
  } | undefined;
154
158
  } | null;
155
- stopWhen: {
156
- transferCountIs?: number | undefined;
157
- } | null;
158
159
  prompt: string | null;
159
- defaultSubAgentId: string | null;
160
- contextConfigId: string | null;
161
160
  statusUpdates: {
162
161
  enabled?: boolean | undefined;
163
162
  numEvents?: number | undefined;
@@ -173,6 +172,10 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
173
172
  } | undefined;
174
173
  }[] | undefined;
175
174
  } | null;
175
+ stopWhen: {
176
+ transferCountIs?: number | undefined;
177
+ } | null;
178
+ executionMode: "classic" | "durable";
176
179
  }[]>;
177
180
  declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
178
181
  scopes: ProjectScopeConfig;
@@ -186,15 +189,15 @@ declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params:
186
189
  models: {
187
190
  base?: {
188
191
  model?: string | undefined;
189
- providerOptions?: Record<string, any> | undefined;
192
+ providerOptions?: Record<string, unknown> | undefined;
190
193
  } | undefined;
191
194
  structuredOutput?: {
192
195
  model?: string | undefined;
193
- providerOptions?: Record<string, any> | undefined;
196
+ providerOptions?: Record<string, unknown> | undefined;
194
197
  } | undefined;
195
198
  summarizer?: {
196
199
  model?: string | undefined;
197
- providerOptions?: Record<string, any> | undefined;
200
+ providerOptions?: Record<string, unknown> | undefined;
198
201
  } | undefined;
199
202
  } | null;
200
203
  statusUpdates: {
@@ -216,6 +219,7 @@ declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params:
216
219
  stopWhen: {
217
220
  transferCountIs?: number | undefined;
218
221
  } | null;
222
+ executionMode: "classic" | "durable";
219
223
  name: string;
220
224
  description: string | null;
221
225
  projectId: string;
@@ -247,33 +251,30 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
247
251
  projectIds: string[];
248
252
  }): Promise<AvailableAgentInfo[]>;
249
253
  declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
250
- description: string | null;
251
- name: string;
252
- tenantId: string;
253
- projectId: string;
254
254
  id: string;
255
+ name: string;
255
256
  createdAt: string;
256
257
  updatedAt: string;
258
+ description: string | null;
259
+ projectId: string;
260
+ tenantId: string;
261
+ defaultSubAgentId: string | null;
262
+ contextConfigId: string | null;
257
263
  models: {
258
264
  base?: {
259
265
  model?: string | undefined;
260
- providerOptions?: Record<string, any> | undefined;
266
+ providerOptions?: Record<string, unknown> | undefined;
261
267
  } | undefined;
262
268
  structuredOutput?: {
263
269
  model?: string | undefined;
264
- providerOptions?: Record<string, any> | undefined;
270
+ providerOptions?: Record<string, unknown> | undefined;
265
271
  } | undefined;
266
272
  summarizer?: {
267
273
  model?: string | undefined;
268
- providerOptions?: Record<string, any> | undefined;
274
+ providerOptions?: Record<string, unknown> | undefined;
269
275
  } | undefined;
270
276
  } | null;
271
- stopWhen: {
272
- transferCountIs?: number | undefined;
273
- } | null;
274
277
  prompt: string | null;
275
- defaultSubAgentId: string | null;
276
- contextConfigId: string | null;
277
278
  statusUpdates: {
278
279
  enabled?: boolean | undefined;
279
280
  numEvents?: number | undefined;
@@ -289,6 +290,10 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
289
290
  } | undefined;
290
291
  }[] | undefined;
291
292
  } | null;
293
+ stopWhen: {
294
+ transferCountIs?: number | undefined;
295
+ } | null;
296
+ executionMode: "classic" | "durable";
292
297
  }>;
293
298
  declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
294
299
  scopes: AgentScopeConfig;
@@ -301,15 +306,15 @@ declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
301
306
  models: {
302
307
  base?: {
303
308
  model?: string | undefined;
304
- providerOptions?: Record<string, any> | undefined;
309
+ providerOptions?: Record<string, unknown> | undefined;
305
310
  } | undefined;
306
311
  structuredOutput?: {
307
312
  model?: string | undefined;
308
- providerOptions?: Record<string, any> | undefined;
313
+ providerOptions?: Record<string, unknown> | undefined;
309
314
  } | undefined;
310
315
  summarizer?: {
311
316
  model?: string | undefined;
312
- providerOptions?: Record<string, any> | undefined;
317
+ providerOptions?: Record<string, unknown> | undefined;
313
318
  } | undefined;
314
319
  } | null;
315
320
  statusUpdates: {
@@ -331,6 +336,7 @@ declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
331
336
  stopWhen: {
332
337
  transferCountIs?: number | undefined;
333
338
  } | null;
339
+ executionMode: "classic" | "durable";
334
340
  name: string;
335
341
  description: string | null;
336
342
  projectId: string;
@@ -86,6 +86,7 @@ const createAgent = (db) => async (data) => {
86
86
  ...data,
87
87
  createdAt: now,
88
88
  updatedAt: now,
89
+ executionMode: data.executionMode ?? "classic",
89
90
  ...data.description !== void 0 && { description: data.description },
90
91
  ...data.contextConfigId !== void 0 && { contextConfigId: data.contextConfigId },
91
92
  ...data.models !== void 0 && { models: data.models },
@@ -423,6 +424,7 @@ const getFullAgentDefinitionInternal = (db) => async ({ scopes: { tenantId, proj
423
424
  if (agent.statusUpdates) result.statusUpdates = agent.statusUpdates;
424
425
  if (agent.prompt) result.prompt = agent.prompt;
425
426
  if (agent.stopWhen) result.stopWhen = agent.stopWhen;
427
+ if (agent.executionMode) result.executionMode = agent.executionMode;
426
428
  if (contextConfig) {
427
429
  const { id, headersSchema, contextVariables } = contextConfig;
428
430
  result.contextConfig = {
@@ -9,11 +9,13 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
9
9
  scopes: ProjectScopeConfig;
10
10
  id: string;
11
11
  }) => Promise<{
12
- description: string | null;
12
+ id: string;
13
13
  name: string;
14
- tenantId: string;
14
+ createdAt: string;
15
+ updatedAt: string;
16
+ description: string | null;
15
17
  projectId: string;
16
- id: string;
18
+ tenantId: string;
17
19
  props: {
18
20
  [x: string]: unknown;
19
21
  type: "object";
@@ -26,8 +28,6 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
26
28
  component: string;
27
29
  mockData: Record<string, unknown>;
28
30
  } | null;
29
- createdAt: string;
30
- updatedAt: string;
31
31
  } | undefined>;
32
32
  declare const listArtifactComponents: (db: AgentsManageDatabaseClient) => (params: {
33
33
  scopes: ProjectScopeConfig;
@@ -65,11 +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;
68
+ id: string;
69
69
  name: string;
70
- tenantId: string;
70
+ createdAt: string;
71
+ updatedAt: string;
72
+ description: string | null;
71
73
  projectId: string;
72
- id: string;
74
+ tenantId: string;
73
75
  props: {
74
76
  [x: string]: unknown;
75
77
  type: "object";
@@ -82,8 +84,6 @@ declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (para
82
84
  component: string;
83
85
  mockData: Record<string, unknown>;
84
86
  } | null;
85
- createdAt: string;
86
- updatedAt: string;
87
87
  }>;
88
88
  declare const updateArtifactComponent: (db: AgentsManageDatabaseClient) => (params: {
89
89
  scopes: ProjectScopeConfig;
@@ -141,12 +141,12 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
141
141
  scopes: SubAgentScopeConfig;
142
142
  artifactComponentId: string;
143
143
  }) => Promise<{
144
- tenantId: string;
145
- projectId: string;
146
- subAgentId: string;
147
144
  id: string;
148
145
  createdAt: string;
149
146
  agentId: string;
147
+ projectId: string;
148
+ tenantId: string;
149
+ subAgentId: 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
- tenantId: string;
188
- projectId: string;
189
- subAgentId: string;
190
187
  id: string;
191
188
  createdAt: string;
192
189
  agentId: string;
190
+ projectId: string;
191
+ tenantId: string;
192
+ subAgentId: 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
12
  id: string;
15
13
  createdAt: string;
16
14
  updatedAt: string;
17
- agentId: string;
18
15
  headersSchema: unknown;
19
16
  contextVariables: Record<string, ContextFetchDefinition> | null;
17
+ agentId: string;
18
+ projectId: string;
19
+ tenantId: 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
24
  id: string;
27
25
  createdAt: string;
28
26
  updatedAt: string;
29
- agentId: string;
30
27
  headersSchema: unknown;
31
28
  contextVariables: Record<string, ContextFetchDefinition> | null;
29
+ agentId: string;
30
+ projectId: string;
31
+ tenantId: 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
46
  id: string;
49
47
  createdAt: string;
50
48
  updatedAt: string;
51
- agentId: string;
52
49
  headersSchema: unknown;
53
50
  contextVariables: Record<string, ContextFetchDefinition> | null;
51
+ agentId: string;
52
+ projectId: string;
53
+ tenantId: 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
86
  id: string;
89
87
  createdAt: string;
90
88
  updatedAt: string;
91
- agentId: string;
92
89
  headersSchema: unknown;
93
90
  contextVariables: Record<string, ContextFetchDefinition> | null;
91
+ 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 };
@@ -65,12 +65,12 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
65
65
  scopes: SubAgentScopeConfig;
66
66
  dataComponentId: string;
67
67
  }) => Promise<{
68
- tenantId: string;
69
- projectId: string;
70
- subAgentId: string;
71
68
  id: string;
72
69
  createdAt: string;
73
70
  agentId: string;
71
+ projectId: string;
72
+ tenantId: string;
73
+ subAgentId: 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
- tenantId: string;
111
- projectId: string;
112
- subAgentId: string;
113
110
  id: string;
114
111
  createdAt: string;
115
112
  agentId: string;
113
+ projectId: string;
114
+ tenantId: string;
115
+ subAgentId: 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
- name: string;
58
- tenantId: string;
59
- projectId: string;
60
56
  id: string;
57
+ name: string;
61
58
  createdAt: string;
62
59
  updatedAt: string;
60
+ description: string | null;
63
61
  agentId: string;
62
+ projectId: string;
63
+ tenantId: 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
- name: string;
100
- tenantId: string;
101
- projectId: string;
102
98
  id: string;
99
+ name: string;
103
100
  createdAt: string;
104
101
  updatedAt: string;
102
+ description: string | null;
105
103
  agentId: string;
104
+ projectId: string;
105
+ tenantId: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -157,13 +157,13 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
157
157
  needsApproval?: boolean;
158
158
  }> | null;
159
159
  }) => Promise<{
160
- tenantId: string;
161
- projectId: string;
162
- subAgentId: string;
163
160
  id: string;
164
161
  createdAt: string;
165
162
  updatedAt: string;
166
163
  agentId: string;
164
+ projectId: string;
165
+ tenantId: string;
166
+ subAgentId: string;
167
167
  functionToolId: string;
168
168
  toolPolicies: Record<string, {
169
169
  needsApproval?: boolean;
@@ -222,13 +222,13 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
222
222
  needsApproval?: boolean;
223
223
  }> | null;
224
224
  }) => Promise<{
225
- tenantId: string;
226
- projectId: string;
227
- subAgentId: string;
228
225
  id: string;
229
226
  createdAt: string;
230
227
  updatedAt: string;
231
228
  agentId: string;
229
+ projectId: string;
230
+ tenantId: string;
231
+ subAgentId: string;
232
232
  functionToolId: string;
233
233
  toolPolicies: Record<string, {
234
234
  needsApproval?: boolean;
@@ -326,7 +326,14 @@ const createFullProjectServerSide = (db, logger = defaultLogger) => async (param
326
326
  throw error;
327
327
  }
328
328
  });
329
- await Promise.all(agentPromises);
329
+ const phase1Errors = (await Promise.allSettled(agentPromises)).filter((r) => r.status === "rejected").map((r) => r.reason);
330
+ if (phase1Errors.length > 0) {
331
+ logger.error({
332
+ projectId: typed.id,
333
+ errorCount: phase1Errors.length
334
+ }, `Some agents failed to create in phase 1: ${phase1Errors.join(", ")}`);
335
+ throw phase1Errors[0];
336
+ }
330
337
  logger.info({
331
338
  projectId: typed.id,
332
339
  agentCount: Object.keys(typed.agents).length
@@ -362,7 +369,14 @@ const createFullProjectServerSide = (db, logger = defaultLogger) => async (param
362
369
  throw error;
363
370
  }
364
371
  });
365
- await Promise.all(updatePromises);
372
+ const phase2Errors = (await Promise.allSettled(updatePromises)).filter((r) => r.status === "rejected").map((r) => r.reason);
373
+ if (phase2Errors.length > 0) {
374
+ logger.error({
375
+ projectId: typed.id,
376
+ errorCount: phase2Errors.length
377
+ }, `Some agents failed to add sub-agents in phase 2: ${phase2Errors.join(", ")}`);
378
+ throw phase2Errors[0];
379
+ }
366
380
  logger.info({
367
381
  projectId: typed.id,
368
382
  agentCount: Object.keys(typed.agents).length
@@ -894,7 +908,14 @@ const updateFullProjectServerSide = (db, logger = defaultLogger) => async (param
894
908
  throw error;
895
909
  }
896
910
  });
897
- await Promise.all(agentPromises);
911
+ const agentErrors = (await Promise.allSettled(agentPromises)).filter((r) => r.status === "rejected").map((r) => r.reason);
912
+ if (agentErrors.length > 0) {
913
+ logger.error({
914
+ projectId: typed.id,
915
+ errorCount: agentErrors.length
916
+ }, `Some agents failed to update in project: ${agentErrors.join(", ")}`);
917
+ throw agentErrors[0];
918
+ }
898
919
  logger.info({
899
920
  projectId: typed.id,
900
921
  agentCount: Object.keys(typed.agents).length
@@ -8,15 +8,15 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
8
8
  scopes: ProjectScopeConfig;
9
9
  skillId: string;
10
10
  }) => Promise<{
11
- description: string;
12
- name: string;
13
- content: string;
14
- tenantId: string;
15
- projectId: string;
16
11
  id: string;
12
+ name: string;
17
13
  createdAt: string;
18
14
  updatedAt: string;
19
15
  metadata: Record<string, string> | null;
16
+ description: string;
17
+ projectId: string;
18
+ tenantId: string;
19
+ content: string;
20
20
  } | null>;
21
21
  declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: ProjectScopeConfig;
@@ -41,26 +41,26 @@ declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
41
41
  };
42
42
  }>;
43
43
  declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
44
- description: string;
45
- name: string;
46
- content: string;
47
- tenantId: string;
48
- projectId: string;
49
44
  id: string;
45
+ name: string;
50
46
  createdAt: string;
51
47
  updatedAt: string;
52
48
  metadata: Record<string, string> | null;
53
- }>;
54
- declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
55
49
  description: string;
56
- name: string;
57
- content: string;
58
- tenantId: string;
59
50
  projectId: string;
51
+ tenantId: string;
52
+ content: string;
53
+ }>;
54
+ declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
60
55
  id: string;
56
+ name: string;
61
57
  createdAt: string;
62
58
  updatedAt: string;
63
59
  metadata: Record<string, string> | null;
60
+ description: string;
61
+ projectId: string;
62
+ tenantId: string;
63
+ content: string;
64
64
  }>;
65
65
  declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
66
66
  scopes: ProjectScopeConfig;
@@ -91,13 +91,13 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
91
91
  index: number;
92
92
  alwaysLoaded?: boolean;
93
93
  }) => Promise<{
94
- tenantId: string;
95
- projectId: string;
96
- subAgentId: string;
97
94
  id: string;
98
95
  createdAt: string;
99
96
  updatedAt: string;
100
97
  agentId: string;
98
+ projectId: string;
99
+ tenantId: string;
100
+ subAgentId: string;
101
101
  skillId: string;
102
102
  index: number;
103
103
  alwaysLoaded: boolean;