@inkeep/agents-core 0.0.0-dev-20260121022749 → 0.0.0-dev-20260121072051

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 (29) hide show
  1. package/dist/auth/auth.d.ts +53 -53
  2. package/dist/auth/permissions.d.ts +13 -13
  3. package/dist/constants/otel-attributes.d.ts +2 -0
  4. package/dist/constants/otel-attributes.js +2 -0
  5. package/dist/data-access/manage/agents.d.ts +37 -37
  6. package/dist/data-access/manage/artifactComponents.d.ts +12 -12
  7. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  8. package/dist/data-access/manage/dataComponents.d.ts +8 -8
  9. package/dist/data-access/manage/functionTools.d.ts +14 -14
  10. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  11. package/dist/data-access/manage/subAgentRelations.d.ts +30 -30
  12. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  13. package/dist/data-access/manage/subAgents.d.ts +27 -27
  14. package/dist/data-access/manage/tools.d.ts +33 -33
  15. package/dist/data-access/manage/triggers.d.ts +1 -1
  16. package/dist/data-access/runtime/apiKeys.d.ts +20 -20
  17. package/dist/data-access/runtime/conversations.d.ts +31 -31
  18. package/dist/data-access/runtime/messages.d.ts +18 -18
  19. package/dist/data-access/runtime/tasks.d.ts +6 -6
  20. package/dist/db/manage/manage-schema.d.ts +376 -376
  21. package/dist/db/manage/manage-schema.js +1 -1
  22. package/dist/db/runtime/runtime-schema.d.ts +181 -181
  23. package/dist/validation/dolt-schemas.d.ts +1 -1
  24. package/dist/validation/schemas.d.ts +1537 -1537
  25. package/dist/validation/schemas.js +1 -1
  26. package/drizzle/manage/0002_bent_sunfire.sql +1 -0
  27. package/drizzle/manage/meta/0002_snapshot.json +3115 -0
  28. package/drizzle/manage/meta/_journal.json +7 -0
  29. package/package.json +1 -1
@@ -53,14 +53,14 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
53
53
  data: FunctionToolApiInsert;
54
54
  scopes: AgentScopeConfig;
55
55
  }) => Promise<{
56
+ tenantId: string;
57
+ projectId: string;
56
58
  id: string;
57
59
  name: string;
58
- createdAt: string;
59
- updatedAt: string;
60
60
  description: string | null;
61
61
  agentId: string;
62
- projectId: string;
63
- tenantId: string;
62
+ createdAt: string;
63
+ updatedAt: 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
+ tenantId: string;
99
+ projectId: string;
98
100
  id: string;
99
101
  name: string;
100
- createdAt: string;
101
- updatedAt: string;
102
102
  description: string | null;
103
103
  agentId: string;
104
- projectId: string;
105
- tenantId: string;
104
+ createdAt: string;
105
+ updatedAt: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -150,13 +150,13 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
150
150
  subAgentId: string;
151
151
  functionToolId: string;
152
152
  }) => Promise<{
153
+ tenantId: string;
154
+ projectId: string;
153
155
  id: string;
156
+ agentId: string;
154
157
  createdAt: string;
155
158
  updatedAt: string;
156
159
  subAgentId: string;
157
- agentId: string;
158
- projectId: string;
159
- tenantId: string;
160
160
  functionToolId: string;
161
161
  }>;
162
162
  /**
@@ -206,13 +206,13 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
206
206
  subAgentId: string;
207
207
  functionToolId: string;
208
208
  }) => Promise<{
209
+ tenantId: string;
210
+ projectId: string;
209
211
  id: string;
212
+ agentId: string;
210
213
  createdAt: string;
211
214
  updatedAt: string;
212
215
  subAgentId: string;
213
- agentId: string;
214
- projectId: string;
215
- tenantId: string;
216
216
  functionToolId: string;
217
217
  }>;
218
218
  //#endregion
@@ -8,15 +8,15 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
8
8
  scopes: SubAgentScopeConfig;
9
9
  relationId: string;
10
10
  }) => Promise<{
11
+ tenantId: string;
12
+ projectId: string;
11
13
  id: string;
14
+ agentId: string;
12
15
  createdAt: string;
13
16
  updatedAt: string;
14
17
  headers: Record<string, string> | null;
15
- subAgentId: string;
16
- agentId: string;
17
- projectId: string;
18
- tenantId: string;
19
18
  externalAgentId: string;
19
+ subAgentId: string;
20
20
  } | undefined>;
21
21
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: SubAgentScopeConfig;
@@ -43,28 +43,28 @@ declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClien
43
43
  declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
+ tenantId: string;
47
+ projectId: string;
46
48
  id: string;
49
+ agentId: string;
47
50
  createdAt: string;
48
51
  updatedAt: string;
49
52
  headers: Record<string, string> | null;
50
- subAgentId: string;
51
- agentId: string;
52
- projectId: string;
53
- tenantId: string;
54
53
  externalAgentId: string;
54
+ subAgentId: string;
55
55
  }[]>;
56
56
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
+ tenantId: string;
60
+ projectId: string;
59
61
  id: string;
62
+ agentId: string;
60
63
  createdAt: string;
61
64
  updatedAt: string;
62
65
  headers: Record<string, string> | null;
63
- subAgentId: string;
64
- agentId: string;
65
- projectId: string;
66
- tenantId: string;
67
66
  externalAgentId: string;
67
+ subAgentId: string;
68
68
  }[]>;
69
69
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
70
70
  scopes: AgentScopeConfig;
@@ -179,15 +179,15 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
179
179
  headers?: Record<string, string> | null;
180
180
  };
181
181
  }) => Promise<{
182
+ tenantId: string;
183
+ projectId: string;
182
184
  id: string;
185
+ agentId: string;
183
186
  createdAt: string;
184
187
  updatedAt: string;
185
188
  headers: Record<string, string> | null;
186
- subAgentId: string;
187
- agentId: string;
188
- projectId: string;
189
- tenantId: string;
190
189
  externalAgentId: string;
190
+ subAgentId: string;
191
191
  }>;
192
192
  /**
193
193
  * Check if sub-agent external agent relation exists by params
@@ -196,15 +196,15 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
196
196
  scopes: SubAgentScopeConfig;
197
197
  externalAgentId: string;
198
198
  }) => Promise<{
199
+ tenantId: string;
200
+ projectId: string;
199
201
  id: string;
202
+ agentId: string;
200
203
  createdAt: string;
201
204
  updatedAt: string;
202
205
  headers: Record<string, string> | null;
203
- subAgentId: string;
204
- agentId: string;
205
- projectId: string;
206
- tenantId: string;
207
206
  externalAgentId: string;
207
+ subAgentId: string;
208
208
  } | undefined>;
209
209
  /**
210
210
  * Upsert sub-agent external agent relation (create if it doesn't exist, update if it does)
@@ -217,15 +217,15 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
217
217
  headers?: Record<string, string> | null;
218
218
  };
219
219
  }) => Promise<{
220
+ tenantId: string;
221
+ projectId: string;
220
222
  id: string;
223
+ agentId: string;
221
224
  createdAt: string;
222
225
  updatedAt: string;
223
226
  headers: Record<string, string> | null;
224
- subAgentId: string;
225
- agentId: string;
226
- projectId: string;
227
- tenantId: string;
228
227
  externalAgentId: string;
228
+ subAgentId: string;
229
229
  }>;
230
230
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
231
231
  scopes: SubAgentScopeConfig;
@@ -8,12 +8,12 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
8
8
  scopes: AgentScopeConfig;
9
9
  relationId: string;
10
10
  }) => Promise<{
11
+ tenantId: string;
12
+ projectId: string;
11
13
  id: string;
14
+ agentId: string;
12
15
  createdAt: string;
13
16
  updatedAt: string;
14
- agentId: string;
15
- projectId: string;
16
- tenantId: string;
17
17
  sourceSubAgentId: string;
18
18
  targetSubAgentId: string | null;
19
19
  relationType: string | null;
@@ -43,12 +43,12 @@ declare const listAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
43
43
  declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
+ tenantId: string;
47
+ projectId: string;
46
48
  id: string;
49
+ agentId: string;
47
50
  createdAt: string;
48
51
  updatedAt: string;
49
- agentId: string;
50
- projectId: string;
51
- tenantId: string;
52
52
  sourceSubAgentId: string;
53
53
  targetSubAgentId: string | null;
54
54
  relationType: string | null;
@@ -56,12 +56,12 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
56
56
  declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
+ tenantId: string;
60
+ projectId: string;
59
61
  id: string;
62
+ agentId: string;
60
63
  createdAt: string;
61
64
  updatedAt: string;
62
- agentId: string;
63
- projectId: string;
64
- tenantId: string;
65
65
  sourceSubAgentId: string;
66
66
  targetSubAgentId: string | null;
67
67
  relationType: string | null;
@@ -125,12 +125,12 @@ declare const getRelatedAgentsForAgent: (db: AgentsManageDatabaseClient) => (par
125
125
  }[];
126
126
  }>;
127
127
  declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
128
+ tenantId: string;
129
+ projectId: string;
128
130
  id: string;
131
+ agentId: string;
129
132
  createdAt: string;
130
133
  updatedAt: string;
131
- agentId: string;
132
- projectId: string;
133
- tenantId: string;
134
134
  sourceSubAgentId: string;
135
135
  targetSubAgentId: string | null;
136
136
  relationType: string | null;
@@ -144,12 +144,12 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
144
144
  targetSubAgentId?: string;
145
145
  relationType: string;
146
146
  }) => Promise<{
147
+ tenantId: string;
148
+ projectId: string;
147
149
  id: string;
150
+ agentId: string;
148
151
  createdAt: string;
149
152
  updatedAt: string;
150
- agentId: string;
151
- projectId: string;
152
- tenantId: string;
153
153
  sourceSubAgentId: string;
154
154
  targetSubAgentId: string | null;
155
155
  relationType: string | null;
@@ -158,12 +158,12 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
158
158
  * Upsert agent relation (create if it doesn't exist, no-op if it does)
159
159
  */
160
160
  declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
161
+ tenantId: string;
162
+ projectId: string;
161
163
  id: string;
164
+ agentId: string;
162
165
  createdAt: string;
163
166
  updatedAt: string;
164
- agentId: string;
165
- projectId: string;
166
- tenantId: string;
167
167
  sourceSubAgentId: string;
168
168
  targetSubAgentId: string | null;
169
169
  relationType: string | null;
@@ -203,19 +203,19 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
203
203
  }> | null;
204
204
  };
205
205
  }) => Promise<{
206
+ tenantId: string;
207
+ projectId: string;
206
208
  id: string;
209
+ agentId: string;
207
210
  createdAt: string;
208
211
  updatedAt: string;
209
- headers: Record<string, string> | null;
210
- subAgentId: string;
211
- agentId: string;
212
- projectId: string;
213
- tenantId: string;
214
212
  toolId: string;
215
- selectedTools: string[] | null;
213
+ headers: Record<string, string> | null;
216
214
  toolPolicies: Record<string, {
217
215
  needsApproval?: boolean;
218
216
  }> | null;
217
+ subAgentId: string;
218
+ selectedTools: string[] | null;
219
219
  }>;
220
220
  declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
221
221
  scopes: AgentScopeConfig;
@@ -247,19 +247,19 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
247
247
  scopes: SubAgentScopeConfig;
248
248
  relationId: string;
249
249
  }) => Promise<{
250
+ tenantId: string;
251
+ projectId: string;
250
252
  id: string;
253
+ agentId: string;
251
254
  createdAt: string;
252
255
  updatedAt: string;
253
- headers: Record<string, string> | null;
254
- subAgentId: string;
255
- agentId: string;
256
- projectId: string;
257
- tenantId: string;
258
256
  toolId: string;
259
- selectedTools: string[] | null;
257
+ headers: Record<string, string> | null;
260
258
  toolPolicies: Record<string, {
261
259
  needsApproval?: boolean;
262
260
  }> | null;
261
+ subAgentId: string;
262
+ selectedTools: string[] | null;
263
263
  } | undefined>;
264
264
  declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
265
265
  scopes: SubAgentScopeConfig;
@@ -8,14 +8,14 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
8
8
  scopes: SubAgentScopeConfig;
9
9
  relationId: string;
10
10
  }) => Promise<{
11
+ tenantId: string;
12
+ projectId: string;
11
13
  id: string;
14
+ agentId: string;
12
15
  createdAt: string;
13
16
  updatedAt: string;
14
17
  headers: Record<string, string> | null;
15
18
  subAgentId: string;
16
- agentId: string;
17
- projectId: string;
18
- tenantId: string;
19
19
  targetAgentId: string;
20
20
  } | undefined>;
21
21
  declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -43,27 +43,27 @@ declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =
43
43
  declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
+ tenantId: string;
47
+ projectId: string;
46
48
  id: string;
49
+ agentId: string;
47
50
  createdAt: string;
48
51
  updatedAt: string;
49
52
  headers: Record<string, string> | null;
50
53
  subAgentId: string;
51
- agentId: string;
52
- projectId: string;
53
- tenantId: string;
54
54
  targetAgentId: string;
55
55
  }[]>;
56
56
  declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
+ tenantId: string;
60
+ projectId: string;
59
61
  id: string;
62
+ agentId: string;
60
63
  createdAt: string;
61
64
  updatedAt: string;
62
65
  headers: Record<string, string> | null;
63
66
  subAgentId: string;
64
- agentId: string;
65
- projectId: string;
66
- tenantId: string;
67
67
  targetAgentId: string;
68
68
  }[]>;
69
69
  declare const getSubAgentTeamAgentRelationsByTeamAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -209,14 +209,14 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
209
209
  headers?: Record<string, string> | null;
210
210
  };
211
211
  }) => Promise<{
212
+ tenantId: string;
213
+ projectId: string;
212
214
  id: string;
215
+ agentId: string;
213
216
  createdAt: string;
214
217
  updatedAt: string;
215
218
  headers: Record<string, string> | null;
216
219
  subAgentId: string;
217
- agentId: string;
218
- projectId: string;
219
- tenantId: string;
220
220
  targetAgentId: string;
221
221
  }>;
222
222
  /**
@@ -226,14 +226,14 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
226
226
  scopes: SubAgentScopeConfig;
227
227
  targetAgentId: string;
228
228
  }) => Promise<{
229
+ tenantId: string;
230
+ projectId: string;
229
231
  id: string;
232
+ agentId: string;
230
233
  createdAt: string;
231
234
  updatedAt: string;
232
235
  headers: Record<string, string> | null;
233
236
  subAgentId: string;
234
- agentId: string;
235
- projectId: string;
236
- tenantId: string;
237
237
  targetAgentId: string;
238
238
  } | undefined>;
239
239
  /**
@@ -247,14 +247,14 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
247
247
  headers?: Record<string, string> | null;
248
248
  };
249
249
  }) => Promise<{
250
+ tenantId: string;
251
+ projectId: string;
250
252
  id: string;
253
+ agentId: string;
251
254
  createdAt: string;
252
255
  updatedAt: string;
253
256
  headers: Record<string, string> | null;
254
257
  subAgentId: string;
255
- agentId: string;
256
- projectId: string;
257
- tenantId: string;
258
258
  targetAgentId: string;
259
259
  }>;
260
260
  declare const updateSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
@@ -8,16 +8,15 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
8
8
  scopes: AgentScopeConfig;
9
9
  subAgentId: string;
10
10
  }) => Promise<{
11
+ tenantId: string;
12
+ projectId: string;
11
13
  id: string;
12
14
  name: string;
13
- createdAt: string;
14
- updatedAt: string;
15
15
  description: string | null;
16
- stopWhen: {
17
- stepCountIs?: number | undefined;
18
- } | null;
19
16
  prompt: string | null;
20
- conversationHistoryConfig: ConversationHistoryConfig | null;
17
+ agentId: string;
18
+ createdAt: string;
19
+ updatedAt: string;
21
20
  models: {
22
21
  base?: {
23
22
  model?: string | undefined;
@@ -32,23 +31,23 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
32
31
  providerOptions?: Record<string, any> | undefined;
33
32
  } | undefined;
34
33
  } | null;
35
- agentId: string;
36
- projectId: string;
37
- tenantId: string;
34
+ stopWhen: {
35
+ stepCountIs?: number | undefined;
36
+ } | null;
37
+ conversationHistoryConfig: ConversationHistoryConfig | null;
38
38
  } | undefined>;
39
39
  declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
40
40
  scopes: AgentScopeConfig;
41
41
  }) => Promise<{
42
+ tenantId: string;
43
+ projectId: string;
42
44
  id: string;
43
45
  name: string;
44
- createdAt: string;
45
- updatedAt: string;
46
46
  description: string | null;
47
- stopWhen: {
48
- stepCountIs?: number | undefined;
49
- } | null;
50
47
  prompt: string | null;
51
- conversationHistoryConfig: ConversationHistoryConfig | null;
48
+ agentId: string;
49
+ createdAt: string;
50
+ updatedAt: string;
52
51
  models: {
53
52
  base?: {
54
53
  model?: string | undefined;
@@ -63,9 +62,10 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
63
62
  providerOptions?: Record<string, any> | undefined;
64
63
  } | undefined;
65
64
  } | null;
66
- agentId: string;
67
- projectId: string;
68
- tenantId: string;
65
+ stopWhen: {
66
+ stepCountIs?: number | undefined;
67
+ } | null;
68
+ conversationHistoryConfig: ConversationHistoryConfig | null;
69
69
  }[]>;
70
70
  declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
71
71
  scopes: AgentScopeConfig;
@@ -108,16 +108,15 @@ declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (param
108
108
  };
109
109
  }>;
110
110
  declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAgentInsert) => Promise<{
111
+ tenantId: string;
112
+ projectId: string;
111
113
  id: string;
112
114
  name: string;
113
- createdAt: string;
114
- updatedAt: string;
115
115
  description: string | null;
116
- stopWhen: {
117
- stepCountIs?: number | undefined;
118
- } | null;
119
116
  prompt: string | null;
120
- conversationHistoryConfig: ConversationHistoryConfig | null;
117
+ agentId: string;
118
+ createdAt: string;
119
+ updatedAt: string;
121
120
  models: {
122
121
  base?: {
123
122
  model?: string | undefined;
@@ -132,9 +131,10 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
132
131
  providerOptions?: Record<string, any> | undefined;
133
132
  } | undefined;
134
133
  } | null;
135
- agentId: string;
136
- projectId: string;
137
- tenantId: string;
134
+ stopWhen: {
135
+ stepCountIs?: number | undefined;
136
+ } | null;
137
+ conversationHistoryConfig: ConversationHistoryConfig | null;
138
138
  }>;
139
139
  declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {
140
140
  scopes: AgentScopeConfig;
@@ -12,19 +12,19 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
12
12
  scopes: ProjectScopeConfig;
13
13
  toolId: string;
14
14
  }) => Promise<{
15
+ tenantId: string;
16
+ projectId: string;
15
17
  id: string;
16
18
  name: string;
17
- createdAt: string;
18
- updatedAt: string;
19
19
  description: string | null;
20
- headers: Record<string, string> | null;
21
- projectId: string;
22
- tenantId: string;
23
20
  config: {
24
21
  type: "mcp";
25
22
  mcp: ToolMcpConfig;
26
23
  };
27
24
  credentialReferenceId: string | null;
25
+ createdAt: string;
26
+ updatedAt: string;
27
+ headers: Record<string, string> | null;
28
28
  credentialScope: string;
29
29
  imageUrl: string | null;
30
30
  capabilities: ToolServerCapabilities | null;
@@ -68,19 +68,19 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
68
68
  };
69
69
  }>;
70
70
  declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
71
+ tenantId: string;
72
+ projectId: string;
71
73
  id: string;
72
74
  name: string;
73
- createdAt: string;
74
- updatedAt: string;
75
75
  description: string | null;
76
- headers: Record<string, string> | null;
77
- projectId: string;
78
- tenantId: string;
79
76
  config: {
80
77
  type: "mcp";
81
78
  mcp: ToolMcpConfig;
82
79
  };
83
80
  credentialReferenceId: string | null;
81
+ createdAt: string;
82
+ updatedAt: string;
83
+ headers: Record<string, string> | null;
84
84
  credentialScope: string;
85
85
  imageUrl: string | null;
86
86
  capabilities: ToolServerCapabilities | null;
@@ -123,38 +123,38 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
123
123
  needsApproval?: boolean;
124
124
  }> | null;
125
125
  }) => Promise<{
126
+ tenantId: string;
127
+ projectId: string;
126
128
  id: string;
129
+ agentId: string;
127
130
  createdAt: string;
128
131
  updatedAt: string;
129
- headers: Record<string, string> | null;
130
- subAgentId: string;
131
- agentId: string;
132
- projectId: string;
133
- tenantId: string;
134
132
  toolId: string;
135
- selectedTools: string[] | null;
133
+ headers: Record<string, string> | null;
136
134
  toolPolicies: Record<string, {
137
135
  needsApproval?: boolean;
138
136
  }> | null;
137
+ subAgentId: string;
138
+ selectedTools: string[] | null;
139
139
  }>;
140
140
  declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params: {
141
141
  scopes: AgentScopeConfig;
142
142
  subAgentId: string;
143
143
  toolId: string;
144
144
  }) => Promise<{
145
+ tenantId: string;
146
+ projectId: string;
145
147
  id: string;
148
+ agentId: string;
146
149
  createdAt: string;
147
150
  updatedAt: string;
148
- headers: Record<string, string> | null;
149
- subAgentId: string;
150
- agentId: string;
151
- projectId: string;
152
- tenantId: string;
153
151
  toolId: string;
154
- selectedTools: string[] | null;
152
+ headers: Record<string, string> | null;
155
153
  toolPolicies: Record<string, {
156
154
  needsApproval?: boolean;
157
155
  }> | null;
156
+ subAgentId: string;
157
+ selectedTools: string[] | null;
158
158
  }>;
159
159
  /**
160
160
  * Upsert agent-tool relation (create if it doesn't exist, update if it does)
@@ -170,19 +170,19 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
170
170
  }> | null;
171
171
  relationId?: string;
172
172
  }) => Promise<{
173
+ tenantId: string;
174
+ projectId: string;
173
175
  id: string;
176
+ agentId: string;
174
177
  createdAt: string;
175
178
  updatedAt: string;
176
- headers: Record<string, string> | null;
177
- subAgentId: string;
178
- agentId: string;
179
- projectId: string;
180
- tenantId: string;
181
179
  toolId: string;
182
- selectedTools: string[] | null;
180
+ headers: Record<string, string> | null;
183
181
  toolPolicies: Record<string, {
184
182
  needsApproval?: boolean;
185
183
  }> | null;
184
+ subAgentId: string;
185
+ selectedTools: string[] | null;
186
186
  }>;
187
187
  /**
188
188
  * Upsert a tool (create if it doesn't exist, update if it does)
@@ -190,19 +190,19 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
190
190
  declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
191
191
  data: ToolInsert;
192
192
  }) => Promise<{
193
+ tenantId: string;
194
+ projectId: string;
193
195
  id: string;
194
196
  name: string;
195
- createdAt: string;
196
- updatedAt: string;
197
197
  description: string | null;
198
- headers: Record<string, string> | null;
199
- projectId: string;
200
- tenantId: string;
201
198
  config: {
202
199
  type: "mcp";
203
200
  mcp: ToolMcpConfig;
204
201
  };
205
202
  credentialReferenceId: string | null;
203
+ createdAt: string;
204
+ updatedAt: string;
205
+ headers: Record<string, string> | null;
206
206
  credentialScope: string;
207
207
  imageUrl: string | null;
208
208
  capabilities: ToolServerCapabilities | null;
@@ -33,7 +33,7 @@ declare const listTriggersPaginated: (db: AgentsManageDatabaseClient) => (params
33
33
  jmespath?: string;
34
34
  objectTransformation?: Record<string, string>;
35
35
  } | null;
36
- messageTemplate: string;
36
+ messageTemplate: string | null;
37
37
  authentication: unknown;
38
38
  signingSecret: string | null;
39
39
  name: string;