@inkeep/agents-core 0.66.0 → 0.66.1

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 +6 -6
  2. package/dist/auth/permissions.d.ts +13 -13
  3. package/dist/data-access/manage/agents.d.ts +37 -37
  4. package/dist/data-access/manage/artifactComponents.d.ts +14 -14
  5. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  6. package/dist/data-access/manage/dataComponents.d.ts +8 -8
  7. package/dist/data-access/manage/functionTools.d.ts +18 -18
  8. package/dist/data-access/manage/skills.d.ts +15 -15
  9. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  10. package/dist/data-access/manage/subAgentRelations.d.ts +30 -30
  11. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +24 -24
  12. package/dist/data-access/manage/subAgents.d.ts +15 -15
  13. package/dist/data-access/manage/tools.d.ts +30 -30
  14. package/dist/data-access/manage/triggers.d.ts +4 -4
  15. package/dist/data-access/runtime/apiKeys.d.ts +16 -16
  16. package/dist/data-access/runtime/apps.d.ts +12 -12
  17. package/dist/data-access/runtime/conversations.d.ts +20 -20
  18. package/dist/data-access/runtime/feedback.d.ts +8 -8
  19. package/dist/data-access/runtime/messages.d.ts +18 -18
  20. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
  21. package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
  22. package/dist/data-access/runtime/tasks.d.ts +5 -5
  23. package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
  24. package/dist/db/manage/manage-schema.d.ts +453 -453
  25. package/dist/db/runtime/runtime-schema.d.ts +405 -405
  26. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  27. package/dist/validation/schemas/skills.d.ts +61 -61
  28. package/dist/validation/schemas.d.ts +2133 -2133
  29. package/package.json +1 -1
@@ -5,16 +5,14 @@ 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
+ type: AppType;
9
+ tenantId: string | null;
10
+ projectId: string | null;
8
11
  id: string;
9
- name: string;
10
12
  createdAt: string;
13
+ name: string;
11
14
  updatedAt: string;
12
15
  description: string | null;
13
- enabled: boolean;
14
- type: AppType;
15
- projectId: string | null;
16
- tenantId: string | null;
17
- prompt: string | null;
18
16
  config: {
19
17
  type: "web_client";
20
18
  webClient: {
@@ -32,6 +30,8 @@ declare const getAppById: (db: AgentsRunDatabaseClient) => (id: string) => Promi
32
30
  type: "api";
33
31
  api: Record<string, never>;
34
32
  };
33
+ enabled: boolean;
34
+ prompt: string | null;
35
35
  lastUsedAt: string | null;
36
36
  defaultProjectId: string | null;
37
37
  defaultAgentId: string | null;
@@ -61,16 +61,14 @@ declare const listAppsPaginated: (db: AgentsRunDatabaseClient) => (params: {
61
61
  };
62
62
  }>;
63
63
  declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) => Promise<{
64
+ type: AppType;
65
+ tenantId: string | null;
66
+ projectId: string | null;
64
67
  id: string;
65
- name: string;
66
68
  createdAt: string;
69
+ name: string;
67
70
  updatedAt: string;
68
71
  description: string | null;
69
- enabled: boolean;
70
- type: AppType;
71
- projectId: string | null;
72
- tenantId: string | null;
73
- prompt: string | null;
74
72
  config: {
75
73
  type: "web_client";
76
74
  webClient: {
@@ -88,6 +86,8 @@ declare const createApp: (db: AgentsRunDatabaseClient) => (params: AppInsert) =>
88
86
  type: "api";
89
87
  api: Record<string, never>;
90
88
  };
89
+ enabled: boolean;
90
+ prompt: string | null;
91
91
  lastUsedAt: string | null;
92
92
  defaultProjectId: string | null;
93
93
  defaultAgentId: string | null;
@@ -15,20 +15,20 @@ declare const listConversations: (db: AgentsRunDatabaseClient) => (params: {
15
15
  total: number;
16
16
  }>;
17
17
  declare const createConversation: (db: AgentsRunDatabaseClient) => (params: ConversationInsert) => Promise<{
18
+ tenantId: string;
19
+ projectId: string;
20
+ agentId: string | null;
18
21
  id: string;
19
22
  createdAt: string;
20
23
  updatedAt: string;
24
+ metadata: ConversationMetadata | null;
21
25
  ref: {
22
26
  type: "commit" | "tag" | "branch";
23
27
  name: string;
24
28
  hash: string;
25
29
  } | null;
26
- userId: string | null;
27
- metadata: ConversationMetadata | null;
28
- agentId: string | null;
29
- projectId: string;
30
- tenantId: string;
31
30
  title: string | null;
31
+ userId: string | null;
32
32
  activeSubAgentId: string;
33
33
  lastContextResolution: string | null;
34
34
  }>;
@@ -84,20 +84,20 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
84
84
  scopes: ProjectScopeConfig;
85
85
  conversationId: string;
86
86
  }) => Promise<{
87
+ tenantId: string;
88
+ projectId: string;
89
+ agentId: string | null;
87
90
  id: string;
88
91
  createdAt: string;
89
92
  updatedAt: string;
93
+ metadata: ConversationMetadata | null;
90
94
  ref: {
91
95
  type: "commit" | "tag" | "branch";
92
96
  name: string;
93
97
  hash: string;
94
98
  } | null;
95
- userId: string | null;
96
- metadata: ConversationMetadata | null;
97
- agentId: string | null;
98
- projectId: string;
99
- tenantId: string;
100
99
  title: string | null;
100
+ userId: string | null;
101
101
  activeSubAgentId: string;
102
102
  lastContextResolution: string | null;
103
103
  } | undefined>;
@@ -120,20 +120,20 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
120
120
  metadata?: ConversationMetadata | null | undefined;
121
121
  contextConfigId?: string | undefined;
122
122
  } | {
123
+ tenantId: string;
124
+ projectId: string;
125
+ agentId: string | null;
123
126
  id: string;
124
127
  createdAt: string;
125
128
  updatedAt: string;
129
+ metadata: ConversationMetadata | null;
126
130
  ref: {
127
131
  type: "commit" | "tag" | "branch";
128
132
  name: string;
129
133
  hash: string;
130
134
  } | null;
131
- userId: string | null;
132
- metadata: ConversationMetadata | null;
133
- agentId: string | null;
134
- projectId: string;
135
- tenantId: string;
136
135
  title: string | null;
136
+ userId: string | null;
137
137
  activeSubAgentId: string;
138
138
  lastContextResolution: string | null;
139
139
  }>;
@@ -152,20 +152,20 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
152
152
  scopes: ProjectScopeConfig;
153
153
  conversationId: string;
154
154
  }) => Promise<{
155
+ tenantId: string;
156
+ projectId: string;
157
+ agentId: string | null;
155
158
  id: string;
156
159
  createdAt: string;
157
160
  updatedAt: string;
161
+ metadata: ConversationMetadata | null;
158
162
  ref: {
159
163
  type: "commit" | "tag" | "branch";
160
164
  name: string;
161
165
  hash: string;
162
166
  } | null;
163
- userId: string | null;
164
- metadata: ConversationMetadata | null;
165
- agentId: string | null;
166
- projectId: string;
167
- tenantId: string;
168
167
  title: string | null;
168
+ userId: string | null;
169
169
  activeSubAgentId: string;
170
170
  lastContextResolution: string | null;
171
171
  } | undefined>;
@@ -58,15 +58,15 @@ declare const listFeedback: (db: AgentsRunDatabaseClient) => (params: {
58
58
  total: number;
59
59
  }>;
60
60
  declare const createFeedback: (db: AgentsRunDatabaseClient) => (params: FeedbackInsert) => Promise<{
61
+ type: "positive" | "negative";
62
+ tenantId: string;
63
+ projectId: string;
61
64
  id: string;
62
65
  createdAt: string;
63
66
  updatedAt: string;
64
- type: "positive" | "negative";
65
- projectId: string;
66
- tenantId: string;
67
- details: string | null;
68
67
  conversationId: string;
69
68
  messageId: string | null;
69
+ details: string | null;
70
70
  }>;
71
71
  declare const updateFeedback: (db: AgentsRunDatabaseClient) => (params: {
72
72
  scopes: ProjectScopeConfig;
@@ -87,15 +87,15 @@ declare const deleteFeedback: (db: AgentsRunDatabaseClient) => (params: {
87
87
  scopes: ProjectScopeConfig;
88
88
  feedbackId: string;
89
89
  }) => Promise<{
90
+ type: "positive" | "negative";
91
+ tenantId: string;
92
+ projectId: string;
90
93
  id: string;
91
94
  createdAt: string;
92
95
  updatedAt: string;
93
- type: "positive" | "negative";
94
- projectId: string;
95
- tenantId: string;
96
- details: string | null;
97
96
  conversationId: string;
98
97
  messageId: string | null;
98
+ details: string | null;
99
99
  }>;
100
100
  //#endregion
101
101
  export { createFeedback, deleteFeedback, getFeedbackById, listFeedback, listFeedbackByConversation, updateFeedback };
@@ -10,26 +10,26 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
10
10
  scopes: ProjectScopeConfig;
11
11
  messageId: string;
12
12
  }) => Promise<{
13
+ tenantId: string;
14
+ projectId: string;
13
15
  id: string;
16
+ content: MessageContent;
14
17
  createdAt: string;
15
18
  updatedAt: string;
16
19
  metadata: MessageMetadata | null;
17
20
  role: string;
18
- projectId: string;
19
- tenantId: string;
20
- content: MessageContent;
21
+ conversationId: string;
21
22
  fromSubAgentId: string | null;
22
23
  toSubAgentId: string | null;
23
24
  fromExternalAgentId: string | null;
24
25
  toExternalAgentId: string | null;
25
- taskId: string | null;
26
- a2aTaskId: string | null;
27
- conversationId: string;
28
26
  fromTeamAgentId: string | null;
29
27
  toTeamAgentId: string | null;
30
28
  visibility: string;
31
29
  messageType: string;
30
+ taskId: string | null;
32
31
  parentMessageId: string | null;
32
+ a2aTaskId: string | null;
33
33
  a2aSessionId: string | null;
34
34
  } | undefined>;
35
35
  declare const listMessages: (db: AgentsRunDatabaseClient) => (params: {
@@ -144,26 +144,26 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
144
144
  scopes: ProjectScopeConfig;
145
145
  data: Omit<MessageInsert, "tenantId" | "projectId">;
146
146
  }) => Promise<{
147
+ tenantId: string;
148
+ projectId: string;
147
149
  id: string;
150
+ content: MessageContent;
148
151
  createdAt: string;
149
152
  updatedAt: string;
150
153
  metadata: MessageMetadata | null;
151
154
  role: string;
152
- projectId: string;
153
- tenantId: string;
154
- content: MessageContent;
155
+ conversationId: string;
155
156
  fromSubAgentId: string | null;
156
157
  toSubAgentId: string | null;
157
158
  fromExternalAgentId: string | null;
158
159
  toExternalAgentId: string | null;
159
- taskId: string | null;
160
- a2aTaskId: string | null;
161
- conversationId: string;
162
160
  fromTeamAgentId: string | null;
163
161
  toTeamAgentId: string | null;
164
162
  visibility: string;
165
163
  messageType: string;
164
+ taskId: string | null;
166
165
  parentMessageId: string | null;
166
+ a2aTaskId: string | null;
167
167
  a2aSessionId: string | null;
168
168
  }>;
169
169
  declare const updateMessage: (db: AgentsRunDatabaseClient) => (params: {
@@ -197,26 +197,26 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
197
197
  scopes: ProjectScopeConfig;
198
198
  messageId: string;
199
199
  }) => Promise<{
200
+ tenantId: string;
201
+ projectId: string;
200
202
  id: string;
203
+ content: MessageContent;
201
204
  createdAt: string;
202
205
  updatedAt: string;
203
206
  metadata: MessageMetadata | null;
204
207
  role: string;
205
- projectId: string;
206
- tenantId: string;
207
- content: MessageContent;
208
+ conversationId: string;
208
209
  fromSubAgentId: string | null;
209
210
  toSubAgentId: string | null;
210
211
  fromExternalAgentId: string | null;
211
212
  toExternalAgentId: string | null;
212
- taskId: string | null;
213
- a2aTaskId: string | null;
214
- conversationId: string;
215
213
  fromTeamAgentId: string | null;
216
214
  toTeamAgentId: string | null;
217
215
  visibility: string;
218
216
  messageType: string;
217
+ taskId: string | null;
219
218
  parentMessageId: string | null;
219
+ a2aTaskId: string | null;
220
220
  a2aSessionId: string | null;
221
221
  }>;
222
222
  declare const countMessagesByConversation: (db: AgentsRunDatabaseClient) => (params: {
@@ -40,7 +40,7 @@ declare const listScheduledTriggerInvocationsPaginated: (db: AgentsRunDatabaseCl
40
40
  name: string;
41
41
  hash: string;
42
42
  } | null;
43
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
43
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
44
44
  scheduledFor: string;
45
45
  startedAt: string | null;
46
46
  completedAt: string | null;
@@ -199,7 +199,7 @@ declare const listUpcomingInvocationsForAgentPaginated: (db: AgentsRunDatabaseCl
199
199
  name: string;
200
200
  hash: string;
201
201
  } | null;
202
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
202
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
203
203
  scheduledFor: string;
204
204
  startedAt: string | null;
205
205
  completedAt: string | null;
@@ -239,7 +239,7 @@ declare const listProjectScheduledTriggerInvocationsPaginated: (db: AgentsRunDat
239
239
  name: string;
240
240
  hash: string;
241
241
  } | null;
242
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
242
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
243
243
  scheduledFor: string;
244
244
  startedAt: string | null;
245
245
  completedAt: string | null;
@@ -292,7 +292,7 @@ declare const listScheduledTriggerInvocationsByTriggerId: (db: AgentsRunDatabase
292
292
  name: string;
293
293
  hash: string;
294
294
  } | null;
295
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
295
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
296
296
  scheduledFor: string;
297
297
  startedAt: string | null;
298
298
  completedAt: string | null;
@@ -15,9 +15,9 @@ declare const createScheduledTriggerUser: (db: AgentsRunDatabaseClient) => (para
15
15
  scheduledTriggerId: string;
16
16
  userId: string;
17
17
  }) => Promise<{
18
+ tenantId: string;
18
19
  createdAt: string;
19
20
  userId: string;
20
- tenantId: string;
21
21
  scheduledTriggerId: string;
22
22
  }>;
23
23
  declare const deleteScheduledTriggerUser: (db: AgentsRunDatabaseClient) => (params: {
@@ -7,20 +7,20 @@ import { TaskInsert, TaskSelect } from "../../types/entities.js";
7
7
 
8
8
  //#region src/data-access/runtime/tasks.d.ts
9
9
  declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert) => Promise<{
10
+ tenantId: string;
11
+ projectId: string;
12
+ agentId: string;
13
+ subAgentId: string;
10
14
  id: string;
11
15
  createdAt: string;
12
16
  updatedAt: string;
17
+ metadata: TaskMetadataConfig | null;
13
18
  ref: {
14
19
  type: "commit" | "tag" | "branch";
15
20
  name: string;
16
21
  hash: string;
17
22
  } | null;
18
- metadata: TaskMetadataConfig | null;
19
23
  status: string;
20
- agentId: string;
21
- projectId: string;
22
- tenantId: string;
23
- subAgentId: string;
24
24
  contextId: string;
25
25
  }>;
26
26
  declare const getTask: (db: AgentsRunDatabaseClient) => (params: {
@@ -1,4 +1,4 @@
1
- import * as drizzle_orm_pg_core1846 from "drizzle-orm/pg-core";
1
+ import * as drizzle_orm_pg_core220 from "drizzle-orm/pg-core";
2
2
 
3
3
  //#region src/db/manage/dolt-safe-jsonb.d.ts
4
4
  declare function encodeBackslashes(value: unknown): unknown;
@@ -7,6 +7,6 @@ declare function decodeBackslashes(value: unknown): unknown;
7
7
  * Drop-in replacement for drizzle-orm's `jsonb()`.
8
8
  * Encodes backslashes on write and decodes on read to work around the Doltgres bug.
9
9
  */
10
- declare function jsonb(name: string): ReturnType<typeof drizzle_orm_pg_core1846.jsonb>;
10
+ declare function jsonb(name: string): ReturnType<typeof drizzle_orm_pg_core220.jsonb>;
11
11
  //#endregion
12
12
  export { decodeBackslashes, encodeBackslashes, jsonb };