@inkeep/agents-core 0.78.2 → 0.78.3

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 (31) hide show
  1. package/dist/auth/auth-schema.d.ts +163 -163
  2. package/dist/auth/auth-validation-schemas.d.ts +154 -154
  3. package/dist/auth/auth.d.ts +9 -9
  4. package/dist/auth/permissions.d.ts +13 -13
  5. package/dist/data-access/manage/agents.d.ts +20 -20
  6. package/dist/data-access/manage/artifactComponents.d.ts +6 -6
  7. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  8. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  9. package/dist/data-access/manage/functionTools.d.ts +6 -6
  10. package/dist/data-access/manage/skills.d.ts +9 -9
  11. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
  12. package/dist/data-access/manage/subAgentRelations.d.ts +14 -14
  13. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
  14. package/dist/data-access/manage/subAgents.d.ts +12 -12
  15. package/dist/data-access/manage/tools.d.ts +24 -24
  16. package/dist/data-access/manage/triggers.d.ts +4 -4
  17. package/dist/data-access/runtime/apiKeys.d.ts +8 -8
  18. package/dist/data-access/runtime/apps.d.ts +9 -9
  19. package/dist/data-access/runtime/conversations.d.ts +28 -28
  20. package/dist/data-access/runtime/events.d.ts +4 -4
  21. package/dist/data-access/runtime/feedback.d.ts +4 -4
  22. package/dist/data-access/runtime/messages.d.ts +27 -27
  23. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  24. package/dist/data-access/runtime/tasks.d.ts +6 -6
  25. package/dist/db/manage/manage-schema.d.ts +383 -383
  26. package/dist/db/runtime/runtime-schema.d.ts +419 -419
  27. package/dist/utils/error.d.ts +51 -51
  28. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  29. package/dist/validation/schemas/skills.d.ts +39 -39
  30. package/dist/validation/schemas.d.ts +2099 -2099
  31. package/package.json +1 -1
@@ -13,25 +13,25 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
13
13
  id: string;
14
14
  createdAt: string;
15
15
  updatedAt: string;
16
- projectId: string;
17
- tenantId: string;
18
- properties: Record<string, unknown> | null;
19
16
  metadata: MessageMetadata | null;
20
- content: MessageContent;
21
17
  role: string;
22
- conversationId: string;
23
- userProperties: Record<string, unknown> | null;
18
+ properties: Record<string, unknown> | null;
19
+ tenantId: string;
20
+ projectId: string;
21
+ content: MessageContent;
24
22
  fromSubAgentId: string | null;
25
23
  toSubAgentId: string | null;
26
24
  fromExternalAgentId: string | null;
27
25
  toExternalAgentId: string | null;
26
+ taskId: string | null;
27
+ a2aTaskId: string | null;
28
+ visibility: string;
29
+ userProperties: Record<string, unknown> | null;
30
+ conversationId: string;
28
31
  fromTeamAgentId: string | null;
29
32
  toTeamAgentId: string | null;
30
- visibility: string;
31
33
  messageType: string;
32
- taskId: string | null;
33
34
  parentMessageId: string | null;
34
- a2aTaskId: string | null;
35
35
  a2aSessionId: string | null;
36
36
  } | undefined>;
37
37
  declare const listMessages: (db: AgentsRunDatabaseClient) => (params: {
@@ -186,25 +186,25 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
186
186
  id: string;
187
187
  createdAt: string;
188
188
  updatedAt: string;
189
- projectId: string;
190
- tenantId: string;
191
- properties: Record<string, unknown> | null;
192
189
  metadata: MessageMetadata | null;
193
- content: MessageContent;
194
190
  role: string;
195
- conversationId: string;
196
- userProperties: Record<string, unknown> | null;
191
+ properties: Record<string, unknown> | null;
192
+ tenantId: string;
193
+ projectId: string;
194
+ content: MessageContent;
197
195
  fromSubAgentId: string | null;
198
196
  toSubAgentId: string | null;
199
197
  fromExternalAgentId: string | null;
200
198
  toExternalAgentId: string | null;
199
+ taskId: string | null;
200
+ a2aTaskId: string | null;
201
+ visibility: string;
202
+ userProperties: Record<string, unknown> | null;
203
+ conversationId: string;
201
204
  fromTeamAgentId: string | null;
202
205
  toTeamAgentId: string | null;
203
- visibility: string;
204
206
  messageType: string;
205
- taskId: string | null;
206
207
  parentMessageId: string | null;
207
- a2aTaskId: string | null;
208
208
  a2aSessionId: string | null;
209
209
  }>;
210
210
  declare const updateMessage: (db: AgentsRunDatabaseClient) => (params: {
@@ -243,25 +243,25 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
243
243
  id: string;
244
244
  createdAt: string;
245
245
  updatedAt: string;
246
- projectId: string;
247
- tenantId: string;
248
- properties: Record<string, unknown> | null;
249
246
  metadata: MessageMetadata | null;
250
- content: MessageContent;
251
247
  role: string;
252
- conversationId: string;
253
- userProperties: Record<string, unknown> | null;
248
+ properties: Record<string, unknown> | null;
249
+ tenantId: string;
250
+ projectId: string;
251
+ content: MessageContent;
254
252
  fromSubAgentId: string | null;
255
253
  toSubAgentId: string | null;
256
254
  fromExternalAgentId: string | null;
257
255
  toExternalAgentId: string | null;
256
+ taskId: string | null;
257
+ a2aTaskId: string | null;
258
+ visibility: string;
259
+ userProperties: Record<string, unknown> | null;
260
+ conversationId: string;
258
261
  fromTeamAgentId: string | null;
259
262
  toTeamAgentId: string | null;
260
- visibility: string;
261
263
  messageType: string;
262
- taskId: string | null;
263
264
  parentMessageId: string | null;
264
- a2aTaskId: string | null;
265
265
  a2aSessionId: string | null;
266
266
  }>;
267
267
  declare const countMessagesByConversation: (db: AgentsRunDatabaseClient) => (params: {
@@ -16,8 +16,8 @@ declare const createScheduledTriggerUser: (db: AgentsRunDatabaseClient) => (para
16
16
  userId: string;
17
17
  }) => Promise<{
18
18
  createdAt: string;
19
- tenantId: string;
20
19
  userId: string;
20
+ tenantId: string;
21
21
  scheduledTriggerId: string;
22
22
  }>;
23
23
  declare const deleteScheduledTriggerUser: (db: AgentsRunDatabaseClient) => (params: {
@@ -10,17 +10,17 @@ declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert)
10
10
  id: string;
11
11
  createdAt: string;
12
12
  updatedAt: string;
13
- projectId: string;
14
- tenantId: string;
15
- metadata: TaskMetadataConfig | null;
16
- agentId: string;
17
- subAgentId: string;
18
- status: string;
19
13
  ref: {
20
14
  type: "commit" | "tag" | "branch";
21
15
  name: string;
22
16
  hash: string;
23
17
  } | null;
18
+ metadata: TaskMetadataConfig | null;
19
+ status: string;
20
+ tenantId: string;
21
+ projectId: string;
22
+ agentId: string;
23
+ subAgentId: string;
24
24
  contextId: string;
25
25
  }>;
26
26
  declare const getTask: (db: AgentsRunDatabaseClient) => (params: {