@inkeep/agents-core 0.0.0-dev-20260407022655 → 0.0.0-dev-20260407034218

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 +108 -108
  2. package/dist/auth/auth-validation-schemas.d.ts +154 -154
  3. package/dist/auth/auth.d.ts +6 -6
  4. package/dist/auth/permissions.d.ts +13 -13
  5. package/dist/data-access/manage/agents.d.ts +37 -37
  6. package/dist/data-access/manage/artifactComponents.d.ts +14 -14
  7. package/dist/data-access/manage/contextConfigs.d.ts +16 -16
  8. package/dist/data-access/manage/dataComponents.d.ts +6 -6
  9. package/dist/data-access/manage/dataComponents.js +1 -1
  10. package/dist/data-access/manage/functionTools.d.ts +14 -14
  11. package/dist/data-access/manage/skills.d.ts +11 -11
  12. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
  13. package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
  14. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  15. package/dist/data-access/manage/subAgents.d.ts +15 -15
  16. package/dist/data-access/manage/tools.d.ts +21 -21
  17. package/dist/data-access/manage/triggers.d.ts +2 -2
  18. package/dist/data-access/runtime/apiKeys.d.ts +12 -12
  19. package/dist/data-access/runtime/apps.d.ts +10 -10
  20. package/dist/data-access/runtime/conversations.d.ts +16 -16
  21. package/dist/data-access/runtime/feedback.d.ts +8 -8
  22. package/dist/data-access/runtime/messages.d.ts +15 -15
  23. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
  24. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  25. package/dist/data-access/runtime/tasks.d.ts +5 -5
  26. package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
  27. package/dist/db/manage/manage-client.js +15 -3
  28. package/dist/db/manage/manage-schema.d.ts +449 -449
  29. package/dist/db/runtime/runtime-client.js +7 -1
  30. package/dist/db/runtime/runtime-schema.d.ts +407 -407
  31. package/dist/dolt/merge.js +7 -9
  32. package/dist/dolt/ref-scope.js +8 -2
  33. package/dist/index.d.ts +2 -2
  34. package/dist/index.js +2 -2
  35. package/dist/utils/error.d.ts +58 -52
  36. package/dist/utils/error.js +54 -17
  37. package/dist/utils/index.d.ts +2 -2
  38. package/dist/utils/index.js +2 -2
  39. package/dist/utils/logger.js +5 -1
  40. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  41. package/dist/validation/schemas/skills.d.ts +44 -44
  42. package/dist/validation/schemas.d.ts +2080 -2080
  43. package/package.json +1 -1
@@ -9,14 +9,14 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
+ tenantId: string;
13
+ projectId: string;
12
14
  id: string;
15
+ subAgentId: string;
13
16
  createdAt: string;
14
17
  updatedAt: string;
15
18
  agentId: string;
16
- projectId: string;
17
- tenantId: string;
18
19
  headers: Record<string, string> | null;
19
- subAgentId: string;
20
20
  externalAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -44,27 +44,27 @@ declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClien
44
44
  declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
+ tenantId: string;
48
+ projectId: string;
47
49
  id: string;
50
+ subAgentId: string;
48
51
  createdAt: string;
49
52
  updatedAt: string;
50
53
  agentId: string;
51
- projectId: string;
52
- tenantId: string;
53
54
  headers: Record<string, string> | null;
54
- subAgentId: string;
55
55
  externalAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
+ tenantId: string;
61
+ projectId: string;
60
62
  id: string;
63
+ subAgentId: string;
61
64
  createdAt: string;
62
65
  updatedAt: string;
63
66
  agentId: string;
64
- projectId: string;
65
- tenantId: string;
66
67
  headers: Record<string, string> | null;
67
- subAgentId: string;
68
68
  externalAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -186,14 +186,14 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
186
186
  headers?: Record<string, string> | null;
187
187
  };
188
188
  }) => Promise<{
189
+ tenantId: string;
190
+ projectId: string;
189
191
  id: string;
192
+ subAgentId: string;
190
193
  createdAt: string;
191
194
  updatedAt: string;
192
195
  agentId: string;
193
- projectId: string;
194
- tenantId: string;
195
196
  headers: Record<string, string> | null;
196
- subAgentId: string;
197
197
  externalAgentId: string;
198
198
  }>;
199
199
  /**
@@ -203,14 +203,14 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
203
203
  scopes: SubAgentScopeConfig;
204
204
  externalAgentId: string;
205
205
  }) => Promise<{
206
+ tenantId: string;
207
+ projectId: string;
206
208
  id: string;
209
+ subAgentId: string;
207
210
  createdAt: string;
208
211
  updatedAt: string;
209
212
  agentId: string;
210
- projectId: string;
211
- tenantId: string;
212
213
  headers: Record<string, string> | null;
213
- subAgentId: string;
214
214
  externalAgentId: string;
215
215
  } | undefined>;
216
216
  /**
@@ -224,14 +224,14 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
224
224
  headers?: Record<string, string> | null;
225
225
  };
226
226
  }) => Promise<{
227
+ tenantId: string;
228
+ projectId: string;
227
229
  id: string;
230
+ subAgentId: string;
228
231
  createdAt: string;
229
232
  updatedAt: string;
230
233
  agentId: string;
231
- projectId: string;
232
- tenantId: string;
233
234
  headers: Record<string, string> | null;
234
- subAgentId: string;
235
235
  externalAgentId: string;
236
236
  }>;
237
237
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
@@ -9,12 +9,12 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
9
9
  scopes: AgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
+ tenantId: string;
13
+ projectId: string;
12
14
  id: string;
13
15
  createdAt: string;
14
16
  updatedAt: string;
15
17
  agentId: string;
16
- projectId: string;
17
- tenantId: string;
18
18
  sourceSubAgentId: string;
19
19
  targetSubAgentId: string | null;
20
20
  relationType: string | null;
@@ -44,12 +44,12 @@ declare const listAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
+ tenantId: string;
48
+ projectId: string;
47
49
  id: string;
48
50
  createdAt: string;
49
51
  updatedAt: string;
50
52
  agentId: string;
51
- projectId: string;
52
- tenantId: string;
53
53
  sourceSubAgentId: string;
54
54
  targetSubAgentId: string | null;
55
55
  relationType: string | null;
@@ -57,12 +57,12 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
57
57
  declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
+ tenantId: string;
61
+ projectId: string;
60
62
  id: string;
61
63
  createdAt: string;
62
64
  updatedAt: string;
63
65
  agentId: string;
64
- projectId: string;
65
- tenantId: string;
66
66
  sourceSubAgentId: string;
67
67
  targetSubAgentId: string | null;
68
68
  relationType: string | null;
@@ -126,12 +126,12 @@ declare const getRelatedAgentsForAgent: (db: AgentsManageDatabaseClient) => (par
126
126
  }[];
127
127
  }>;
128
128
  declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
129
+ tenantId: string;
130
+ projectId: string;
129
131
  id: string;
130
132
  createdAt: string;
131
133
  updatedAt: string;
132
134
  agentId: string;
133
- projectId: string;
134
- tenantId: string;
135
135
  sourceSubAgentId: string;
136
136
  targetSubAgentId: string | null;
137
137
  relationType: string | null;
@@ -145,12 +145,12 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
145
145
  targetSubAgentId?: string;
146
146
  relationType: string;
147
147
  }) => Promise<{
148
+ tenantId: string;
149
+ projectId: string;
148
150
  id: string;
149
151
  createdAt: string;
150
152
  updatedAt: string;
151
153
  agentId: string;
152
- projectId: string;
153
- tenantId: string;
154
154
  sourceSubAgentId: string;
155
155
  targetSubAgentId: string | null;
156
156
  relationType: string | null;
@@ -159,12 +159,12 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
159
159
  * Upsert agent relation (create if it doesn't exist, no-op if it does)
160
160
  */
161
161
  declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
162
+ tenantId: string;
163
+ projectId: string;
162
164
  id: string;
163
165
  createdAt: string;
164
166
  updatedAt: string;
165
167
  agentId: string;
166
- projectId: string;
167
- tenantId: string;
168
168
  sourceSubAgentId: string;
169
169
  targetSubAgentId: string | null;
170
170
  relationType: string | null;
@@ -204,15 +204,15 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
204
204
  }> | null;
205
205
  };
206
206
  }) => Promise<{
207
+ tenantId: string;
208
+ projectId: string;
207
209
  id: string;
210
+ subAgentId: string;
208
211
  createdAt: string;
209
212
  updatedAt: string;
210
213
  agentId: string;
211
- projectId: string;
212
- tenantId: string;
213
- headers: Record<string, string> | null;
214
- subAgentId: string;
215
214
  toolId: string;
215
+ headers: Record<string, string> | null;
216
216
  toolPolicies: Record<string, {
217
217
  needsApproval?: boolean;
218
218
  }> | null;
@@ -248,15 +248,15 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
248
248
  scopes: SubAgentScopeConfig;
249
249
  relationId: string;
250
250
  }) => Promise<{
251
+ tenantId: string;
252
+ projectId: string;
251
253
  id: string;
254
+ subAgentId: string;
252
255
  createdAt: string;
253
256
  updatedAt: string;
254
257
  agentId: string;
255
- projectId: string;
256
- tenantId: string;
257
- headers: Record<string, string> | null;
258
- subAgentId: string;
259
258
  toolId: string;
259
+ headers: Record<string, string> | null;
260
260
  toolPolicies: Record<string, {
261
261
  needsApproval?: boolean;
262
262
  }> | null;
@@ -9,14 +9,14 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
+ tenantId: string;
13
+ projectId: string;
12
14
  id: string;
15
+ subAgentId: string;
13
16
  createdAt: string;
14
17
  updatedAt: string;
15
18
  agentId: string;
16
- projectId: string;
17
- tenantId: string;
18
19
  headers: Record<string, string> | null;
19
- subAgentId: string;
20
20
  targetAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -44,27 +44,27 @@ declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =
44
44
  declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
+ tenantId: string;
48
+ projectId: string;
47
49
  id: string;
50
+ subAgentId: string;
48
51
  createdAt: string;
49
52
  updatedAt: string;
50
53
  agentId: string;
51
- projectId: string;
52
- tenantId: string;
53
54
  headers: Record<string, string> | null;
54
- subAgentId: string;
55
55
  targetAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
+ tenantId: string;
61
+ projectId: string;
60
62
  id: string;
63
+ subAgentId: string;
61
64
  createdAt: string;
62
65
  updatedAt: string;
63
66
  agentId: string;
64
- projectId: string;
65
- tenantId: string;
66
67
  headers: Record<string, string> | null;
67
- subAgentId: string;
68
68
  targetAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentTeamAgentRelationsByTeamAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -222,14 +222,14 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
222
222
  headers?: Record<string, string> | null;
223
223
  };
224
224
  }) => Promise<{
225
+ tenantId: string;
226
+ projectId: string;
225
227
  id: string;
228
+ subAgentId: string;
226
229
  createdAt: string;
227
230
  updatedAt: string;
228
231
  agentId: string;
229
- projectId: string;
230
- tenantId: string;
231
232
  headers: Record<string, string> | null;
232
- subAgentId: string;
233
233
  targetAgentId: string;
234
234
  }>;
235
235
  /**
@@ -239,14 +239,14 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
239
239
  scopes: SubAgentScopeConfig;
240
240
  targetAgentId: string;
241
241
  }) => Promise<{
242
+ tenantId: string;
243
+ projectId: string;
242
244
  id: string;
245
+ subAgentId: string;
243
246
  createdAt: string;
244
247
  updatedAt: string;
245
248
  agentId: string;
246
- projectId: string;
247
- tenantId: string;
248
249
  headers: Record<string, string> | null;
249
- subAgentId: string;
250
250
  targetAgentId: string;
251
251
  } | undefined>;
252
252
  /**
@@ -260,14 +260,14 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
260
260
  headers?: Record<string, string> | null;
261
261
  };
262
262
  }) => Promise<{
263
+ tenantId: string;
264
+ projectId: string;
263
265
  id: string;
266
+ subAgentId: string;
264
267
  createdAt: string;
265
268
  updatedAt: string;
266
269
  agentId: string;
267
- projectId: string;
268
- tenantId: string;
269
270
  headers: Record<string, string> | null;
270
- subAgentId: string;
271
271
  targetAgentId: string;
272
272
  }>;
273
273
  declare const updateSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
@@ -9,14 +9,13 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  scopes: AgentScopeConfig;
10
10
  subAgentId: string;
11
11
  }) => Promise<{
12
+ tenantId: string;
13
+ projectId: string;
12
14
  id: string;
13
15
  name: string;
16
+ description: string | null;
14
17
  createdAt: string;
15
18
  updatedAt: string;
16
- agentId: string;
17
- projectId: string;
18
- tenantId: string;
19
- description: string | null;
20
19
  models: {
21
20
  base?: {
22
21
  model?: string | undefined;
@@ -37,23 +36,23 @@ declare const getSubAgentById: (db: AgentsManageDatabaseClient) => (params: {
37
36
  allowedProviders?: string[] | undefined;
38
37
  } | undefined;
39
38
  } | null;
40
- prompt: string | null;
41
39
  stopWhen: {
42
40
  stepCountIs?: number | undefined;
43
41
  } | null;
42
+ agentId: string;
43
+ prompt: string | null;
44
44
  conversationHistoryConfig: ConversationHistoryConfig | null;
45
45
  } | undefined>;
46
46
  declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
47
47
  scopes: AgentScopeConfig;
48
48
  }) => Promise<{
49
+ tenantId: string;
50
+ projectId: string;
49
51
  id: string;
50
52
  name: string;
53
+ description: string | null;
51
54
  createdAt: string;
52
55
  updatedAt: string;
53
- agentId: string;
54
- projectId: string;
55
- tenantId: string;
56
- description: string | null;
57
56
  models: {
58
57
  base?: {
59
58
  model?: string | undefined;
@@ -74,10 +73,11 @@ declare const listSubAgents: (db: AgentsManageDatabaseClient) => (params: {
74
73
  allowedProviders?: string[] | undefined;
75
74
  } | undefined;
76
75
  } | null;
77
- prompt: string | null;
78
76
  stopWhen: {
79
77
  stepCountIs?: number | undefined;
80
78
  } | null;
79
+ agentId: string;
80
+ prompt: string | null;
81
81
  conversationHistoryConfig: ConversationHistoryConfig | null;
82
82
  }[]>;
83
83
  declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
@@ -127,14 +127,13 @@ declare const listSubAgentsPaginated: (db: AgentsManageDatabaseClient) => (param
127
127
  };
128
128
  }>;
129
129
  declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAgentInsert) => Promise<{
130
+ tenantId: string;
131
+ projectId: string;
130
132
  id: string;
131
133
  name: string;
134
+ description: string | null;
132
135
  createdAt: string;
133
136
  updatedAt: string;
134
- agentId: string;
135
- projectId: string;
136
- tenantId: string;
137
- description: string | null;
138
137
  models: {
139
138
  base?: {
140
139
  model?: string | undefined;
@@ -155,10 +154,11 @@ declare const createSubAgent: (db: AgentsManageDatabaseClient) => (params: SubAg
155
154
  allowedProviders?: string[] | undefined;
156
155
  } | undefined;
157
156
  } | null;
158
- prompt: string | null;
159
157
  stopWhen: {
160
158
  stepCountIs?: number | undefined;
161
159
  } | null;
160
+ agentId: string;
161
+ prompt: string | null;
162
162
  conversationHistoryConfig: ConversationHistoryConfig | null;
163
163
  }>;
164
164
  declare const updateSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -20,13 +20,13 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
20
20
  scopes: ProjectScopeConfig;
21
21
  toolId: string;
22
22
  }) => Promise<{
23
+ tenantId: string;
24
+ projectId: string;
23
25
  id: string;
24
26
  name: string;
27
+ description: string | null;
25
28
  createdAt: string;
26
29
  updatedAt: string;
27
- projectId: string;
28
- tenantId: string;
29
- description: string | null;
30
30
  headers: Record<string, string> | null;
31
31
  config: {
32
32
  type: "mcp";
@@ -78,13 +78,13 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
78
78
  };
79
79
  }>;
80
80
  declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
81
+ tenantId: string;
82
+ projectId: string;
81
83
  id: string;
82
84
  name: string;
85
+ description: string | null;
83
86
  createdAt: string;
84
87
  updatedAt: string;
85
- projectId: string;
86
- tenantId: string;
87
- description: string | null;
88
88
  headers: Record<string, string> | null;
89
89
  config: {
90
90
  type: "mcp";
@@ -135,15 +135,15 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
135
135
  needsApproval?: boolean;
136
136
  }> | null;
137
137
  }) => Promise<{
138
+ tenantId: string;
139
+ projectId: string;
138
140
  id: string;
141
+ subAgentId: string;
139
142
  createdAt: string;
140
143
  updatedAt: string;
141
144
  agentId: string;
142
- projectId: string;
143
- tenantId: string;
144
- headers: Record<string, string> | null;
145
- subAgentId: string;
146
145
  toolId: string;
146
+ headers: Record<string, string> | null;
147
147
  toolPolicies: Record<string, {
148
148
  needsApproval?: boolean;
149
149
  }> | null;
@@ -154,15 +154,15 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
154
154
  subAgentId: string;
155
155
  toolId: string;
156
156
  }) => Promise<{
157
+ tenantId: string;
158
+ projectId: string;
157
159
  id: string;
160
+ subAgentId: string;
158
161
  createdAt: string;
159
162
  updatedAt: string;
160
163
  agentId: string;
161
- projectId: string;
162
- tenantId: string;
163
- headers: Record<string, string> | null;
164
- subAgentId: string;
165
164
  toolId: string;
165
+ headers: Record<string, string> | null;
166
166
  toolPolicies: Record<string, {
167
167
  needsApproval?: boolean;
168
168
  }> | null;
@@ -182,15 +182,15 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
182
182
  }> | null;
183
183
  relationId?: string;
184
184
  }) => Promise<{
185
+ tenantId: string;
186
+ projectId: string;
185
187
  id: string;
188
+ subAgentId: string;
186
189
  createdAt: string;
187
190
  updatedAt: string;
188
191
  agentId: string;
189
- projectId: string;
190
- tenantId: string;
191
- headers: Record<string, string> | null;
192
- subAgentId: string;
193
192
  toolId: string;
193
+ headers: Record<string, string> | null;
194
194
  toolPolicies: Record<string, {
195
195
  needsApproval?: boolean;
196
196
  }> | null;
@@ -202,13 +202,13 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
202
202
  declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
203
203
  data: ToolInsert;
204
204
  }) => Promise<{
205
+ tenantId: string;
206
+ projectId: string;
205
207
  id: string;
206
208
  name: string;
209
+ description: string | null;
207
210
  createdAt: string;
208
211
  updatedAt: string;
209
- projectId: string;
210
- tenantId: string;
211
- description: string | null;
212
212
  headers: Record<string, string> | null;
213
213
  config: {
214
214
  type: "mcp";
@@ -40,13 +40,13 @@ declare const listTriggersPaginated: (db: AgentsManageDatabaseClient) => (params
40
40
  algorithm: "md5" | "sha256" | "sha512" | "sha384" | "sha1";
41
41
  encoding: "base64" | "hex";
42
42
  signature: {
43
- source: "query" | "body" | "header";
43
+ source: "query" | "header" | "body";
44
44
  key: string;
45
45
  prefix?: string | undefined;
46
46
  regex?: string | undefined;
47
47
  };
48
48
  signedComponents: {
49
- source: "literal" | "body" | "header";
49
+ source: "literal" | "header" | "body";
50
50
  required: boolean;
51
51
  key?: string | undefined;
52
52
  value?: string | undefined;
@@ -8,49 +8,49 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
8
8
  scopes: ProjectScopeConfig;
9
9
  id: string;
10
10
  }) => Promise<{
11
+ tenantId: string;
12
+ projectId: string;
11
13
  id: string;
12
14
  name: string | null;
13
15
  createdAt: string;
14
16
  updatedAt: string;
15
17
  agentId: string;
16
- projectId: string;
17
- tenantId: string;
18
- expiresAt: string | null;
19
18
  publicId: string;
20
19
  keyHash: string;
21
20
  keyPrefix: string;
22
21
  lastUsedAt: string | null;
22
+ expiresAt: string | null;
23
23
  } | undefined>;
24
24
  declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: string) => Promise<{
25
+ tenantId: string;
26
+ projectId: string;
25
27
  id: string;
26
28
  name: string | null;
27
29
  createdAt: string;
28
30
  updatedAt: string;
29
31
  agentId: string;
30
- projectId: string;
31
- tenantId: string;
32
- expiresAt: string | null;
33
32
  publicId: string;
34
33
  keyHash: string;
35
34
  keyPrefix: string;
36
35
  lastUsedAt: string | null;
36
+ expiresAt: string | null;
37
37
  } | undefined>;
38
38
  declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
39
39
  scopes: ProjectScopeConfig;
40
40
  agentId?: string;
41
41
  }) => Promise<{
42
+ tenantId: string;
43
+ projectId: string;
42
44
  id: string;
43
45
  name: string | null;
44
46
  createdAt: string;
45
47
  updatedAt: string;
46
48
  agentId: string;
47
- projectId: string;
48
- tenantId: string;
49
- expiresAt: string | null;
50
49
  publicId: string;
51
50
  keyHash: string;
52
51
  keyPrefix: string;
53
52
  lastUsedAt: string | null;
53
+ expiresAt: string | null;
54
54
  }[]>;
55
55
  declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
56
56
  scopes: ProjectScopeConfig;
@@ -66,18 +66,18 @@ declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
66
66
  };
67
67
  }>;
68
68
  declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInsert) => Promise<{
69
+ tenantId: string;
70
+ projectId: string;
69
71
  id: string;
70
72
  name: string | null;
71
73
  createdAt: string;
72
74
  updatedAt: string;
73
75
  agentId: string;
74
- projectId: string;
75
- tenantId: string;
76
- expiresAt: string | null;
77
76
  publicId: string;
78
77
  keyHash: string;
79
78
  keyPrefix: string;
80
79
  lastUsedAt: string | null;
80
+ expiresAt: string | null;
81
81
  }>;
82
82
  declare const updateApiKey: (db: AgentsRunDatabaseClient) => (params: {
83
83
  scopes: ProjectScopeConfig;
@@ -5,16 +5,16 @@ import { AppInsert, AppSelect, AppUpdate } from "../../types/entities.js";
5
5
 
6
6
  //#region src/data-access/runtime/apps.d.ts
7
7
  declare const getAppById: (db: AgentsRunDatabaseClient) => (id: string) => Promise<{
8
+ tenantId: string | null;
9
+ projectId: string | null;
8
10
  id: string;
9
11
  name: string;
10
- createdAt: string;
11
- updatedAt: string;
12
- projectId: string | null;
13
- tenantId: string | null;
14
12
  description: string | null;
15
13
  type: AppType;
16
- enabled: boolean;
14
+ createdAt: string;
15
+ updatedAt: string;
17
16
  prompt: string | null;
17
+ enabled: boolean;
18
18
  config: {
19
19
  type: "web_client";
20
20
  webClient: {
@@ -61,16 +61,16 @@ declare const listAppsPaginated: (db: AgentsRunDatabaseClient) => (params: {
61
61
  };
62
62
  }>;
63
63
  declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) => Promise<{
64
+ tenantId: string | null;
65
+ projectId: string | null;
64
66
  id: string;
65
67
  name: string;
66
- createdAt: string;
67
- updatedAt: string;
68
- projectId: string | null;
69
- tenantId: string | null;
70
68
  description: string | null;
71
69
  type: AppType;
72
- enabled: boolean;
70
+ createdAt: string;
71
+ updatedAt: string;
73
72
  prompt: string | null;
73
+ enabled: boolean;
74
74
  config: {
75
75
  type: "web_client";
76
76
  webClient: {