@inkeep/agents-core 0.0.0-dev-20260317224734 → 0.0.0-dev-20260317231927

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.
@@ -10,8 +10,12 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
10
10
  scopes: ProjectScopeConfig;
11
11
  messageId: string;
12
12
  }) => Promise<{
13
+ id: string;
13
14
  tenantId: string;
14
15
  projectId: string;
16
+ createdAt: string;
17
+ updatedAt: string;
18
+ metadata: MessageMetadata | null;
15
19
  content: MessageContent;
16
20
  fromSubAgentId: string | null;
17
21
  toSubAgentId: string | null;
@@ -19,10 +23,6 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
19
23
  toExternalAgentId: string | null;
20
24
  taskId: string | null;
21
25
  a2aTaskId: string | null;
22
- id: string;
23
- createdAt: string;
24
- updatedAt: string;
25
- metadata: MessageMetadata | null;
26
26
  conversationId: string;
27
27
  role: string;
28
28
  fromTeamAgentId: string | null;
@@ -144,8 +144,12 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
144
144
  scopes: ProjectScopeConfig;
145
145
  data: Omit<MessageInsert, "tenantId" | "projectId">;
146
146
  }) => Promise<{
147
+ id: string;
147
148
  tenantId: string;
148
149
  projectId: string;
150
+ createdAt: string;
151
+ updatedAt: string;
152
+ metadata: MessageMetadata | null;
149
153
  content: MessageContent;
150
154
  fromSubAgentId: string | null;
151
155
  toSubAgentId: string | null;
@@ -153,10 +157,6 @@ declare const createMessage: (db: AgentsRunDatabaseClient) => (params: {
153
157
  toExternalAgentId: string | null;
154
158
  taskId: string | null;
155
159
  a2aTaskId: string | null;
156
- id: string;
157
- createdAt: string;
158
- updatedAt: string;
159
- metadata: MessageMetadata | null;
160
160
  conversationId: string;
161
161
  role: string;
162
162
  fromTeamAgentId: string | null;
@@ -197,8 +197,12 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
197
197
  scopes: ProjectScopeConfig;
198
198
  messageId: string;
199
199
  }) => Promise<{
200
+ id: string;
200
201
  tenantId: string;
201
202
  projectId: string;
203
+ createdAt: string;
204
+ updatedAt: string;
205
+ metadata: MessageMetadata | null;
202
206
  content: MessageContent;
203
207
  fromSubAgentId: string | null;
204
208
  toSubAgentId: string | null;
@@ -206,10 +210,6 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
206
210
  toExternalAgentId: string | null;
207
211
  taskId: string | null;
208
212
  a2aTaskId: string | null;
209
- id: string;
210
- createdAt: string;
211
- updatedAt: string;
212
- metadata: MessageMetadata | null;
213
213
  conversationId: string;
214
214
  role: string;
215
215
  fromTeamAgentId: string | null;
@@ -7,14 +7,14 @@ 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
+ id: string;
10
11
  tenantId: string;
11
12
  projectId: string;
12
13
  agentId: string;
13
- subAgentId: string;
14
- id: string;
15
14
  createdAt: string;
16
15
  updatedAt: string;
17
16
  metadata: TaskMetadataConfig | null;
17
+ subAgentId: string;
18
18
  status: string;
19
19
  contextId: string;
20
20
  ref: {