@inkeep/agents-core 0.0.0-dev-20260127010045 → 0.0.0-dev-20260127181710

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.
@@ -15,15 +15,15 @@ declare const listConversations: (db: AgentsRunDatabaseClient) => (params: {
15
15
  total: number;
16
16
  }>;
17
17
  declare const createConversation: (db: AgentsRunDatabaseClient) => (params: ConversationInsert) => Promise<{
18
- title: string | null;
19
18
  tenantId: string;
20
19
  projectId: string;
21
20
  id: string;
21
+ title: string | null;
22
+ agentId: string | null;
22
23
  createdAt: string;
23
24
  updatedAt: string;
24
- agentId: string | null;
25
- metadata: ConversationMetadata | null;
26
25
  userId: string | null;
26
+ metadata: ConversationMetadata | null;
27
27
  ref: {
28
28
  type: "commit" | "tag" | "branch";
29
29
  name: string;
@@ -84,15 +84,15 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
84
84
  scopes: ProjectScopeConfig;
85
85
  conversationId: string;
86
86
  }) => Promise<{
87
- title: string | null;
88
87
  tenantId: string;
89
88
  projectId: string;
90
89
  id: string;
90
+ title: string | null;
91
+ agentId: string | null;
91
92
  createdAt: string;
92
93
  updatedAt: string;
93
- agentId: string | null;
94
- metadata: ConversationMetadata | null;
95
94
  userId: string | null;
95
+ metadata: ConversationMetadata | null;
96
96
  ref: {
97
97
  type: "commit" | "tag" | "branch";
98
98
  name: string;
@@ -120,15 +120,15 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
120
120
  metadata?: ConversationMetadata | null | undefined;
121
121
  contextConfigId?: string | undefined;
122
122
  } | {
123
- title: string | null;
124
123
  tenantId: string;
125
124
  projectId: string;
126
125
  id: string;
126
+ title: string | null;
127
+ agentId: string | null;
127
128
  createdAt: string;
128
129
  updatedAt: string;
129
- agentId: string | null;
130
- metadata: ConversationMetadata | null;
131
130
  userId: string | null;
131
+ metadata: ConversationMetadata | null;
132
132
  ref: {
133
133
  type: "commit" | "tag" | "branch";
134
134
  name: string;
@@ -152,15 +152,15 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
152
152
  scopes: ProjectScopeConfig;
153
153
  conversationId: string;
154
154
  }) => Promise<{
155
- title: string | null;
156
155
  tenantId: string;
157
156
  projectId: string;
158
157
  id: string;
158
+ title: string | null;
159
+ agentId: string | null;
159
160
  createdAt: string;
160
161
  updatedAt: string;
161
- agentId: string | null;
162
- metadata: ConversationMetadata | null;
163
162
  userId: string | null;
163
+ metadata: ConversationMetadata | null;
164
164
  ref: {
165
165
  type: "commit" | "tag" | "branch";
166
166
  name: string;
@@ -9,15 +9,15 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
9
9
  scopes: ProjectScopeConfig;
10
10
  messageId: string;
11
11
  }) => Promise<{
12
- content: MessageContent;
13
12
  tenantId: string;
14
13
  projectId: string;
15
14
  id: string;
16
15
  createdAt: string;
17
16
  updatedAt: string;
18
17
  metadata: MessageMetadata | null;
19
- conversationId: string;
18
+ content: MessageContent;
20
19
  role: string;
20
+ conversationId: 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;
144
143
  tenantId: string;
145
144
  projectId: string;
146
145
  id: string;
147
146
  createdAt: string;
148
147
  updatedAt: string;
149
148
  metadata: MessageMetadata | null;
150
- conversationId: string;
149
+ content: MessageContent;
151
150
  role: string;
151
+ conversationId: 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;
197
196
  tenantId: string;
198
197
  projectId: string;
199
198
  id: string;
200
199
  createdAt: string;
201
200
  updatedAt: string;
202
201
  metadata: MessageMetadata | null;
203
- conversationId: string;
202
+ content: MessageContent;
204
203
  role: string;
204
+ conversationId: string;
205
205
  fromSubAgentId: string | null;
206
206
  toSubAgentId: string | null;
207
207
  fromExternalAgentId: string | null;
@@ -6,21 +6,21 @@ import { TaskInsert, TaskSelect } from "../../types/entities.js";
6
6
 
7
7
  //#region src/data-access/runtime/tasks.d.ts
8
8
  declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert) => Promise<{
9
- status: string;
10
9
  tenantId: string;
11
10
  projectId: string;
12
11
  id: string;
12
+ agentId: string;
13
13
  createdAt: string;
14
14
  updatedAt: string;
15
- agentId: string;
16
15
  metadata: TaskMetadataConfig | null;
17
- contextId: string;
18
16
  ref: {
19
17
  type: "commit" | "tag" | "branch";
20
18
  name: string;
21
19
  hash: string;
22
20
  } | null;
21
+ status: string;
23
22
  subAgentId: string;
23
+ contextId: string;
24
24
  }>;
25
25
  declare const getTask: (db: AgentsRunDatabaseClient) => (params: {
26
26
  id: string;