@inkeep/agents-core 0.0.0-dev-20260205203133 → 0.0.0-dev-20260205231249

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.
@@ -9,15 +9,15 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
9
9
  scopes: ProjectScopeConfig;
10
10
  messageId: string;
11
11
  }) => Promise<{
12
+ content: MessageContent;
12
13
  tenantId: string;
13
14
  projectId: string;
14
15
  id: string;
15
16
  createdAt: string;
16
17
  updatedAt: string;
17
18
  metadata: MessageMetadata | null;
18
- content: MessageContent;
19
- role: string;
20
19
  conversationId: string;
20
+ role: string;
21
21
  fromSubAgentId: string | null;
22
22
  toSubAgentId: string | null;
23
23
  fromExternalAgentId: string | null;
@@ -140,15 +140,15 @@ declare const getVisibleMessages: (db: AgentsRunDatabaseClient) => (params: {
140
140
  id: string;
141
141
  }[]>;
142
142
  declare const createMessage: (db: AgentsRunDatabaseClient) => (params: MessageInsert) => Promise<{
143
+ content: MessageContent;
143
144
  tenantId: string;
144
145
  projectId: string;
145
146
  id: string;
146
147
  createdAt: string;
147
148
  updatedAt: string;
148
149
  metadata: MessageMetadata | null;
149
- content: MessageContent;
150
- role: string;
151
150
  conversationId: string;
151
+ role: string;
152
152
  fromSubAgentId: string | null;
153
153
  toSubAgentId: string | null;
154
154
  fromExternalAgentId: string | null;
@@ -193,15 +193,15 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
193
193
  scopes: ProjectScopeConfig;
194
194
  messageId: string;
195
195
  }) => Promise<{
196
+ content: MessageContent;
196
197
  tenantId: string;
197
198
  projectId: string;
198
199
  id: string;
199
200
  createdAt: string;
200
201
  updatedAt: string;
201
202
  metadata: MessageMetadata | null;
202
- content: MessageContent;
203
- role: string;
204
203
  conversationId: string;
204
+ role: string;
205
205
  fromSubAgentId: string | null;
206
206
  toSubAgentId: string | null;
207
207
  fromExternalAgentId: string | null;
@@ -14,13 +14,13 @@ declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert)
14
14
  updatedAt: string;
15
15
  metadata: TaskMetadataConfig | null;
16
16
  status: string;
17
+ contextId: string;
17
18
  ref: {
18
- type: "tag" | "commit" | "branch";
19
+ type: "commit" | "tag" | "branch";
19
20
  name: string;
20
21
  hash: string;
21
22
  } | null;
22
23
  subAgentId: string;
23
- contextId: string;
24
24
  }>;
25
25
  declare const getTask: (db: AgentsRunDatabaseClient) => (params: {
26
26
  id: string;
@@ -36,7 +36,7 @@ declare const updateTask: (db: AgentsRunDatabaseClient) => (params: {
36
36
  updatedAt: string;
37
37
  contextId: string;
38
38
  ref: {
39
- type: "tag" | "commit" | "branch";
39
+ type: "commit" | "tag" | "branch";
40
40
  name: string;
41
41
  hash: string;
42
42
  } | null;