@inkeep/agents-core 0.0.0-dev-20260402165145 → 0.0.0-dev-20260402205032

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.
@@ -17,6 +17,8 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
17
17
  description: string | null;
18
18
  projectId: string;
19
19
  tenantId: string;
20
+ defaultSubAgentId: string | null;
21
+ contextConfigId: string | null;
20
22
  models: {
21
23
  base?: {
22
24
  model?: string | undefined;
@@ -37,11 +39,6 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
37
39
  allowedProviders?: string[] | undefined;
38
40
  } | undefined;
39
41
  } | null;
40
- stopWhen: {
41
- transferCountIs?: number | undefined;
42
- } | null;
43
- defaultSubAgentId: string | null;
44
- contextConfigId: string | null;
45
42
  prompt: string | null;
46
43
  statusUpdates: {
47
44
  enabled?: boolean | 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: {
@@ -70,6 +70,8 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
70
70
  description: string | null;
71
71
  projectId: string;
72
72
  tenantId: string;
73
+ defaultSubAgentId: string | null;
74
+ contextConfigId: string | null;
73
75
  models: {
74
76
  base?: {
75
77
  model?: string | undefined;
@@ -90,11 +92,6 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
90
92
  allowedProviders?: string[] | undefined;
91
93
  } | undefined;
92
94
  } | null;
93
- stopWhen: {
94
- transferCountIs?: number | undefined;
95
- } | null;
96
- defaultSubAgentId: string | null;
97
- contextConfigId: string | null;
98
95
  prompt: string | null;
99
96
  statusUpdates: {
100
97
  enabled?: boolean | undefined;
@@ -111,6 +108,9 @@ 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;
@@ -118,6 +118,7 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
118
118
  createdAt: string;
119
119
  updatedAt: string;
120
120
  description: string | null;
121
+ agentId: string;
121
122
  projectId: string;
122
123
  tenantId: string;
123
124
  models: {
@@ -140,11 +141,10 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
140
141
  allowedProviders?: string[] | undefined;
141
142
  } | undefined;
142
143
  } | null;
144
+ prompt: string | null;
143
145
  stopWhen: {
144
146
  stepCountIs?: number | undefined;
145
147
  } | null;
146
- agentId: string;
147
- prompt: string | null;
148
148
  conversationHistoryConfig: ConversationHistoryConfig | null;
149
149
  } | null;
150
150
  } | null>;
@@ -158,6 +158,8 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
158
158
  description: string | null;
159
159
  projectId: string;
160
160
  tenantId: string;
161
+ defaultSubAgentId: string | null;
162
+ contextConfigId: string | null;
161
163
  models: {
162
164
  base?: {
163
165
  model?: string | undefined;
@@ -178,11 +180,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
178
180
  allowedProviders?: string[] | undefined;
179
181
  } | undefined;
180
182
  } | null;
181
- stopWhen: {
182
- transferCountIs?: number | undefined;
183
- } | null;
184
- defaultSubAgentId: string | null;
185
- contextConfigId: string | null;
186
183
  prompt: string | null;
187
184
  statusUpdates: {
188
185
  enabled?: boolean | 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: {
@@ -288,6 +288,8 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
288
288
  description: string | null;
289
289
  projectId: string;
290
290
  tenantId: string;
291
+ defaultSubAgentId: string | null;
292
+ contextConfigId: string | null;
291
293
  models: {
292
294
  base?: {
293
295
  model?: string | undefined;
@@ -308,11 +310,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
308
310
  allowedProviders?: string[] | undefined;
309
311
  } | undefined;
310
312
  } | null;
311
- stopWhen: {
312
- transferCountIs?: number | undefined;
313
- } | null;
314
- defaultSubAgentId: string | null;
315
- contextConfigId: string | null;
316
313
  prompt: string | null;
317
314
  statusUpdates: {
318
315
  enabled?: boolean | 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: {
@@ -143,9 +143,9 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
143
143
  }) => Promise<{
144
144
  id: string;
145
145
  createdAt: string;
146
+ agentId: string;
146
147
  projectId: string;
147
148
  tenantId: 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;
189
190
  projectId: string;
190
191
  tenantId: 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
- projectId: string;
16
- tenantId: 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;
@@ -24,11 +24,11 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
24
24
  id: string;
25
25
  createdAt: string;
26
26
  updatedAt: string;
27
- projectId: string;
28
- tenantId: 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;
@@ -46,11 +46,11 @@ declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params:
46
46
  id: string;
47
47
  createdAt: string;
48
48
  updatedAt: string;
49
- projectId: string;
50
- tenantId: 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;
@@ -86,11 +86,11 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
86
86
  id: string;
87
87
  createdAt: string;
88
88
  updatedAt: string;
89
- projectId: string;
90
- tenantId: 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 };
@@ -67,9 +67,9 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
67
67
  }) => Promise<{
68
68
  id: string;
69
69
  createdAt: string;
70
+ agentId: string;
70
71
  projectId: string;
71
72
  tenantId: 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;
112
113
  projectId: string;
113
114
  tenantId: string;
114
- agentId: string;
115
115
  subAgentId: string;
116
116
  dataComponentId: string;
117
117
  } | null>;
@@ -58,9 +58,9 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
58
58
  createdAt: string;
59
59
  updatedAt: string;
60
60
  description: string | null;
61
+ agentId: string;
61
62
  projectId: string;
62
63
  tenantId: string;
63
- agentId: string;
64
64
  functionId: string;
65
65
  }>;
66
66
  /**
@@ -100,9 +100,9 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
100
100
  createdAt: string;
101
101
  updatedAt: string;
102
102
  description: string | null;
103
+ agentId: string;
103
104
  projectId: string;
104
105
  tenantId: string;
105
- agentId: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -160,14 +160,14 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
160
160
  id: string;
161
161
  createdAt: string;
162
162
  updatedAt: string;
163
+ agentId: string;
163
164
  projectId: string;
164
165
  tenantId: string;
165
- agentId: string;
166
166
  subAgentId: string;
167
+ functionToolId: string;
167
168
  toolPolicies: Record<string, {
168
169
  needsApproval?: boolean;
169
170
  }> | null;
170
- functionToolId: string;
171
171
  }>;
172
172
  /**
173
173
  * Update an agent-function tool relation
@@ -225,14 +225,14 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
225
225
  id: string;
226
226
  createdAt: string;
227
227
  updatedAt: string;
228
+ agentId: string;
228
229
  projectId: string;
229
230
  tenantId: string;
230
- agentId: string;
231
231
  subAgentId: string;
232
+ functionToolId: string;
232
233
  toolPolicies: Record<string, {
233
234
  needsApproval?: boolean;
234
235
  }> | 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 };
@@ -21,9 +21,9 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
21
21
  updatedAt: string;
22
22
  metadata: Record<string, string> | null;
23
23
  description: string;
24
- content: string;
25
24
  projectId: string;
26
25
  tenantId: string;
26
+ content: string;
27
27
  } | null>;
28
28
  declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
29
29
  scopes: ProjectScopeConfig;
@@ -116,9 +116,9 @@ declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiIn
116
116
  updatedAt: string;
117
117
  metadata: Record<string, string> | null;
118
118
  description: string;
119
- content: string;
120
119
  projectId: string;
121
120
  tenantId: string;
121
+ content: string;
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;
145
146
  projectId: string;
146
147
  tenantId: string;
147
- agentId: 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,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;
15
17
  projectId: string;
16
18
  tenantId: 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;
50
52
  projectId: string;
51
53
  tenantId: 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;
63
65
  projectId: string;
64
66
  tenantId: 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;
192
194
  projectId: string;
193
195
  tenantId: 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;
209
211
  projectId: string;
210
212
  tenantId: 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;
230
232
  projectId: string;
231
233
  tenantId: string;
232
- agentId: string;
233
- headers: Record<string, string> | null;
234
234
  subAgentId: string;
235
235
  externalAgentId: string;
236
236
  }>;
@@ -12,9 +12,9 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
12
12
  id: string;
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
+ agentId: string;
15
16
  projectId: string;
16
17
  tenantId: string;
17
- agentId: string;
18
18
  sourceSubAgentId: string;
19
19
  targetSubAgentId: string | null;
20
20
  relationType: string | null;
@@ -47,9 +47,9 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
47
47
  id: string;
48
48
  createdAt: string;
49
49
  updatedAt: string;
50
+ agentId: string;
50
51
  projectId: string;
51
52
  tenantId: string;
52
- agentId: string;
53
53
  sourceSubAgentId: string;
54
54
  targetSubAgentId: string | null;
55
55
  relationType: string | null;
@@ -60,9 +60,9 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
60
60
  id: string;
61
61
  createdAt: string;
62
62
  updatedAt: string;
63
+ agentId: string;
63
64
  projectId: string;
64
65
  tenantId: string;
65
- agentId: string;
66
66
  sourceSubAgentId: string;
67
67
  targetSubAgentId: string | null;
68
68
  relationType: string | null;
@@ -129,9 +129,9 @@ declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
129
129
  id: string;
130
130
  createdAt: string;
131
131
  updatedAt: string;
132
+ agentId: string;
132
133
  projectId: string;
133
134
  tenantId: string;
134
- agentId: string;
135
135
  sourceSubAgentId: string;
136
136
  targetSubAgentId: string | null;
137
137
  relationType: string | null;
@@ -148,9 +148,9 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
148
148
  id: string;
149
149
  createdAt: string;
150
150
  updatedAt: string;
151
+ agentId: string;
151
152
  projectId: string;
152
153
  tenantId: string;
153
- agentId: string;
154
154
  sourceSubAgentId: string;
155
155
  targetSubAgentId: string | null;
156
156
  relationType: string | null;
@@ -162,9 +162,9 @@ declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
162
162
  id: string;
163
163
  createdAt: string;
164
164
  updatedAt: string;
165
+ agentId: string;
165
166
  projectId: string;
166
167
  tenantId: string;
167
- agentId: 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;
211
+ agentId: string;
210
212
  projectId: string;
211
213
  tenantId: string;
212
- agentId: string;
213
- headers: Record<string, string> | null;
214
214
  subAgentId: string;
215
215
  toolId: string;
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;
255
+ agentId: string;
254
256
  projectId: string;
255
257
  tenantId: string;
256
- agentId: string;
257
- headers: Record<string, string> | null;
258
258
  subAgentId: string;
259
259
  toolId: string;
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;
@@ -12,10 +12,10 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
12
12
  id: string;
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
+ headers: Record<string, string> | null;
16
+ agentId: string;
15
17
  projectId: string;
16
18
  tenantId: string;
17
- agentId: string;
18
- headers: Record<string, string> | null;
19
19
  subAgentId: string;
20
20
  targetAgentId: string;
21
21
  } | undefined>;
@@ -47,10 +47,10 @@ declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =>
47
47
  id: string;
48
48
  createdAt: string;
49
49
  updatedAt: string;
50
+ headers: Record<string, string> | null;
51
+ agentId: string;
50
52
  projectId: string;
51
53
  tenantId: string;
52
- agentId: string;
53
- headers: Record<string, string> | null;
54
54
  subAgentId: string;
55
55
  targetAgentId: string;
56
56
  }[]>;
@@ -60,10 +60,10 @@ declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseCli
60
60
  id: string;
61
61
  createdAt: string;
62
62
  updatedAt: string;
63
+ headers: Record<string, string> | null;
64
+ agentId: string;
63
65
  projectId: string;
64
66
  tenantId: string;
65
- agentId: string;
66
- headers: Record<string, string> | null;
67
67
  subAgentId: string;
68
68
  targetAgentId: string;
69
69
  }[]>;
@@ -225,10 +225,10 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
225
225
  id: string;
226
226
  createdAt: string;
227
227
  updatedAt: string;
228
+ headers: Record<string, string> | null;
229
+ agentId: string;
228
230
  projectId: string;
229
231
  tenantId: string;
230
- agentId: string;
231
- headers: Record<string, string> | null;
232
232
  subAgentId: string;
233
233
  targetAgentId: string;
234
234
  }>;
@@ -242,10 +242,10 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
242
242
  id: string;
243
243
  createdAt: string;
244
244
  updatedAt: string;
245
+ headers: Record<string, string> | null;
246
+ agentId: string;
245
247
  projectId: string;
246
248
  tenantId: string;
247
- agentId: string;
248
- headers: Record<string, string> | null;
249
249
  subAgentId: string;
250
250
  targetAgentId: string;
251
251
  } | undefined>;
@@ -263,10 +263,10 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
263
263
  id: string;
264
264
  createdAt: string;
265
265
  updatedAt: string;
266
+ headers: Record<string, string> | null;
267
+ agentId: string;
266
268
  projectId: string;
267
269
  tenantId: string;
268
- agentId: string;
269
- headers: Record<string, string> | null;
270
270
  subAgentId: string;
271
271
  targetAgentId: string;
272
272
  }>;
@@ -14,6 +14,7 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
14
14
  createdAt: string;
15
15
  updatedAt: string;
16
16
  description: string | null;
17
+ agentId: string;
17
18
  projectId: string;
18
19
  tenantId: string;
19
20
  models: {
@@ -36,11 +37,10 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
36
37
  allowedProviders?: string[] | undefined;
37
38
  } | undefined;
38
39
  } | null;
40
+ prompt: string | null;
39
41
  stopWhen: {
40
42
  stepCountIs?: number | undefined;
41
43
  } | null;
42
- agentId: string;
43
- prompt: string | null;
44
44
  conversationHistoryConfig: ConversationHistoryConfig | null;
45
45
  } | undefined>;
46
46
  declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
@@ -51,6 +51,7 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
51
51
  createdAt: string;
52
52
  updatedAt: string;
53
53
  description: string | null;
54
+ agentId: string;
54
55
  projectId: string;
55
56
  tenantId: string;
56
57
  models: {
@@ -73,11 +74,10 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
73
74
  allowedProviders?: string[] | undefined;
74
75
  } | undefined;
75
76
  } | null;
77
+ prompt: string | null;
76
78
  stopWhen: {
77
79
  stepCountIs?: number | undefined;
78
80
  } | null;
79
- agentId: string;
80
- prompt: string | null;
81
81
  conversationHistoryConfig: ConversationHistoryConfig | null;
82
82
  }[]>;
83
83
  declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
@@ -132,6 +132,7 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
132
132
  createdAt: string;
133
133
  updatedAt: string;
134
134
  description: string | null;
135
+ agentId: string;
135
136
  projectId: string;
136
137
  tenantId: string;
137
138
  models: {
@@ -154,11 +155,10 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
154
155
  allowedProviders?: string[] | undefined;
155
156
  } | undefined;
156
157
  } | null;
158
+ prompt: string | null;
157
159
  stopWhen: {
158
160
  stepCountIs?: number | undefined;
159
161
  } | null;
160
- agentId: string;
161
- prompt: string | null;
162
162
  conversationHistoryConfig: ConversationHistoryConfig | null;
163
163
  }>;
164
164
  declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {