@inkeep/agents-core 0.0.0-dev-20260213221002 → 0.0.0-dev-20260213222830

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.
@@ -18,13 +18,13 @@ declare const getToolById: (db: AgentsManageDatabaseClient) => (params: {
18
18
  scopes: ProjectScopeConfig;
19
19
  toolId: string;
20
20
  }) => Promise<{
21
+ id: string;
21
22
  name: string;
22
23
  description: string | null;
23
- id: string;
24
+ tenantId: string;
25
+ projectId: string;
24
26
  createdAt: string;
25
27
  updatedAt: string;
26
- projectId: string;
27
- tenantId: string;
28
28
  headers: Record<string, string> | null;
29
29
  config: {
30
30
  type: "mcp";
@@ -76,13 +76,13 @@ declare const listTools: (db: AgentsManageDatabaseClient) => (params: {
76
76
  };
77
77
  }>;
78
78
  declare const createTool: (db: AgentsManageDatabaseClient) => (params: ToolInsert) => Promise<{
79
+ id: string;
79
80
  name: string;
80
81
  description: string | null;
81
- id: string;
82
+ tenantId: string;
83
+ projectId: string;
82
84
  createdAt: string;
83
85
  updatedAt: string;
84
- projectId: string;
85
- tenantId: string;
86
86
  headers: Record<string, string> | null;
87
87
  config: {
88
88
  type: "mcp";
@@ -134,17 +134,17 @@ declare const addToolToAgent: (db: AgentsManageDatabaseClient) => (params: {
134
134
  }> | null;
135
135
  }) => Promise<{
136
136
  id: string;
137
+ tenantId: string;
138
+ projectId: string;
139
+ agentId: string;
137
140
  createdAt: string;
138
141
  updatedAt: string;
139
- subAgentId: string;
140
- agentId: string;
141
- projectId: string;
142
- tenantId: string;
143
142
  toolId: string;
144
143
  headers: Record<string, string> | null;
145
144
  toolPolicies: Record<string, {
146
145
  needsApproval?: boolean;
147
146
  }> | null;
147
+ subAgentId: string;
148
148
  selectedTools: string[] | null;
149
149
  }>;
150
150
  declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -153,17 +153,17 @@ declare const removeToolFromAgent: (db: AgentsManageDatabaseClient) => (params:
153
153
  toolId: string;
154
154
  }) => Promise<{
155
155
  id: string;
156
+ tenantId: string;
157
+ projectId: string;
158
+ agentId: string;
156
159
  createdAt: string;
157
160
  updatedAt: string;
158
- subAgentId: string;
159
- agentId: string;
160
- projectId: string;
161
- tenantId: string;
162
161
  toolId: string;
163
162
  headers: Record<string, string> | null;
164
163
  toolPolicies: Record<string, {
165
164
  needsApproval?: boolean;
166
165
  }> | null;
166
+ subAgentId: string;
167
167
  selectedTools: string[] | null;
168
168
  }>;
169
169
  /**
@@ -181,17 +181,17 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
181
181
  relationId?: string;
182
182
  }) => Promise<{
183
183
  id: string;
184
+ tenantId: string;
185
+ projectId: string;
186
+ agentId: string;
184
187
  createdAt: string;
185
188
  updatedAt: string;
186
- subAgentId: string;
187
- agentId: string;
188
- projectId: string;
189
- tenantId: string;
190
189
  toolId: string;
191
190
  headers: Record<string, string> | null;
192
191
  toolPolicies: Record<string, {
193
192
  needsApproval?: boolean;
194
193
  }> | null;
194
+ subAgentId: string;
195
195
  selectedTools: string[] | null;
196
196
  }>;
197
197
  /**
@@ -200,13 +200,13 @@ declare const upsertSubAgentToolRelation: (db: AgentsManageDatabaseClient) => (p
200
200
  declare const upsertTool: (db: AgentsManageDatabaseClient) => (params: {
201
201
  data: ToolInsert;
202
202
  }) => Promise<{
203
+ id: string;
203
204
  name: string;
204
205
  description: string | null;
205
- id: string;
206
+ tenantId: string;
207
+ projectId: string;
206
208
  createdAt: string;
207
209
  updatedAt: string;
208
- projectId: string;
209
- tenantId: string;
210
210
  headers: Record<string, string> | null;
211
211
  config: {
212
212
  type: "mcp";
@@ -40,13 +40,13 @@ declare const listTriggersPaginated: (db: AgentsManageDatabaseClient) => (params
40
40
  algorithm: "sha256" | "sha512" | "sha384" | "sha1" | "md5";
41
41
  encoding: "hex" | "base64";
42
42
  signature: {
43
- source: "query" | "header" | "body";
43
+ source: "query" | "body" | "header";
44
44
  key: string;
45
45
  prefix?: string | undefined;
46
46
  regex?: string | undefined;
47
47
  };
48
48
  signedComponents: {
49
- source: "literal" | "header" | "body";
49
+ source: "literal" | "body" | "header";
50
50
  required: boolean;
51
51
  key?: string | undefined;
52
52
  value?: string | undefined;
@@ -7,13 +7,13 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
7
7
  scopes: ProjectScopeConfig;
8
8
  id: string;
9
9
  }) => Promise<{
10
- name: string | null;
11
10
  id: string;
11
+ name: string | null;
12
+ tenantId: string;
13
+ projectId: string;
14
+ agentId: string;
12
15
  createdAt: string;
13
16
  updatedAt: string;
14
- agentId: string;
15
- projectId: string;
16
- tenantId: string;
17
17
  expiresAt: string | null;
18
18
  publicId: string;
19
19
  keyHash: string;
@@ -21,13 +21,13 @@ declare const getApiKeyById: (db: AgentsRunDatabaseClient) => (params: {
21
21
  lastUsedAt: string | null;
22
22
  } | undefined>;
23
23
  declare const getApiKeyByPublicId: (db: AgentsRunDatabaseClient) => (publicId: string) => Promise<{
24
- name: string | null;
25
24
  id: string;
25
+ name: string | null;
26
+ tenantId: string;
27
+ projectId: string;
28
+ agentId: string;
26
29
  createdAt: string;
27
30
  updatedAt: string;
28
- agentId: string;
29
- projectId: string;
30
- tenantId: string;
31
31
  expiresAt: string | null;
32
32
  publicId: string;
33
33
  keyHash: string;
@@ -38,13 +38,13 @@ declare const listApiKeys: (db: AgentsRunDatabaseClient) => (params: {
38
38
  scopes: ProjectScopeConfig;
39
39
  agentId?: string;
40
40
  }) => Promise<{
41
- name: string | null;
42
41
  id: string;
42
+ name: string | null;
43
+ tenantId: string;
44
+ projectId: string;
45
+ agentId: string;
43
46
  createdAt: string;
44
47
  updatedAt: string;
45
- agentId: string;
46
- projectId: string;
47
- tenantId: string;
48
48
  expiresAt: string | null;
49
49
  publicId: string;
50
50
  keyHash: string;
@@ -65,13 +65,13 @@ declare const listApiKeysPaginated: (db: AgentsRunDatabaseClient) => (params: {
65
65
  };
66
66
  }>;
67
67
  declare const createApiKey: (db: AgentsRunDatabaseClient) => (params: ApiKeyInsert) => Promise<{
68
- name: string | null;
69
68
  id: string;
69
+ name: string | null;
70
+ tenantId: string;
71
+ projectId: string;
72
+ agentId: string;
70
73
  createdAt: string;
71
74
  updatedAt: string;
72
- agentId: string;
73
- projectId: string;
74
- tenantId: string;
75
75
  expiresAt: string | null;
76
76
  publicId: string;
77
77
  keyHash: string;
@@ -16,18 +16,18 @@ declare const listConversations: (db: AgentsRunDatabaseClient) => (params: {
16
16
  }>;
17
17
  declare const createConversation: (db: AgentsRunDatabaseClient) => (params: ConversationInsert) => Promise<{
18
18
  id: string;
19
+ tenantId: string;
20
+ projectId: string;
21
+ agentId: string | null;
22
+ title: string | null;
23
+ createdAt: string;
24
+ updatedAt: string;
25
+ metadata: ConversationMetadata | null;
19
26
  ref: {
20
- type: "commit" | "tag" | "branch";
27
+ type: "tag" | "commit" | "branch";
21
28
  name: string;
22
29
  hash: string;
23
30
  } | null;
24
- title: string | null;
25
- metadata: ConversationMetadata | null;
26
- createdAt: string;
27
- updatedAt: string;
28
- agentId: string | null;
29
- projectId: string;
30
- tenantId: string;
31
31
  userId: string | null;
32
32
  activeSubAgentId: string;
33
33
  lastContextResolution: string | null;
@@ -43,7 +43,7 @@ declare const updateConversation: (db: AgentsRunDatabaseClient) => (params: {
43
43
  agentId: string | null;
44
44
  activeSubAgentId: string;
45
45
  ref: {
46
- type: "commit" | "tag" | "branch";
46
+ type: "tag" | "commit" | "branch";
47
47
  name: string;
48
48
  hash: string;
49
49
  } | null;
@@ -69,7 +69,7 @@ declare const updateConversationActiveSubAgent: (db: AgentsRunDatabaseClient) =>
69
69
  agentId: string | null;
70
70
  activeSubAgentId: string;
71
71
  ref: {
72
- type: "commit" | "tag" | "branch";
72
+ type: "tag" | "commit" | "branch";
73
73
  name: string;
74
74
  hash: string;
75
75
  } | null;
@@ -85,18 +85,18 @@ declare const getConversation: (db: AgentsRunDatabaseClient) => (params: {
85
85
  conversationId: string;
86
86
  }) => Promise<{
87
87
  id: string;
88
+ tenantId: string;
89
+ projectId: string;
90
+ agentId: string | null;
91
+ title: string | null;
92
+ createdAt: string;
93
+ updatedAt: string;
94
+ metadata: ConversationMetadata | null;
88
95
  ref: {
89
- type: "commit" | "tag" | "branch";
96
+ type: "tag" | "commit" | "branch";
90
97
  name: string;
91
98
  hash: string;
92
99
  } | null;
93
- title: string | null;
94
- metadata: ConversationMetadata | null;
95
- createdAt: string;
96
- updatedAt: string;
97
- agentId: string | null;
98
- projectId: string;
99
- tenantId: string;
100
100
  userId: string | null;
101
101
  activeSubAgentId: string;
102
102
  lastContextResolution: string | null;
@@ -107,7 +107,7 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
107
107
  tenantId: string;
108
108
  id: string;
109
109
  ref: {
110
- type: "commit" | "tag" | "branch";
110
+ type: "tag" | "commit" | "branch";
111
111
  name: string;
112
112
  hash: string;
113
113
  };
@@ -121,18 +121,18 @@ declare const createOrGetConversation: (db: AgentsRunDatabaseClient) => (input:
121
121
  contextConfigId?: string | undefined;
122
122
  } | {
123
123
  id: string;
124
+ tenantId: string;
125
+ projectId: string;
126
+ agentId: string | null;
127
+ title: string | null;
128
+ createdAt: string;
129
+ updatedAt: string;
130
+ metadata: ConversationMetadata | null;
124
131
  ref: {
125
- type: "commit" | "tag" | "branch";
132
+ type: "tag" | "commit" | "branch";
126
133
  name: string;
127
134
  hash: string;
128
135
  } | null;
129
- title: string | null;
130
- metadata: ConversationMetadata | null;
131
- createdAt: string;
132
- updatedAt: string;
133
- agentId: string | null;
134
- projectId: string;
135
- tenantId: string;
136
136
  userId: string | null;
137
137
  activeSubAgentId: string;
138
138
  lastContextResolution: string | null;
@@ -153,18 +153,18 @@ declare const getActiveAgentForConversation: (db: AgentsRunDatabaseClient) => (p
153
153
  conversationId: string;
154
154
  }) => Promise<{
155
155
  id: string;
156
+ tenantId: string;
157
+ projectId: string;
158
+ agentId: string | null;
159
+ title: string | null;
160
+ createdAt: string;
161
+ updatedAt: string;
162
+ metadata: ConversationMetadata | null;
156
163
  ref: {
157
- type: "commit" | "tag" | "branch";
164
+ type: "tag" | "commit" | "branch";
158
165
  name: string;
159
166
  hash: string;
160
167
  } | null;
161
- title: string | null;
162
- metadata: ConversationMetadata | null;
163
- createdAt: string;
164
- updatedAt: string;
165
- agentId: string | null;
166
- projectId: string;
167
- tenantId: string;
168
168
  userId: string | null;
169
169
  activeSubAgentId: string;
170
170
  lastContextResolution: string | null;
@@ -10,25 +10,25 @@ declare const getMessageById: (db: AgentsRunDatabaseClient) => (params: {
10
10
  messageId: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- metadata: MessageMetadata | null;
13
+ tenantId: string;
14
+ projectId: string;
14
15
  createdAt: string;
15
16
  updatedAt: string;
16
- projectId: string;
17
- tenantId: string;
18
- conversationId: string;
17
+ metadata: MessageMetadata | null;
19
18
  content: MessageContent;
20
19
  role: string;
21
20
  fromSubAgentId: string | null;
22
21
  toSubAgentId: string | null;
23
22
  fromExternalAgentId: string | null;
24
23
  toExternalAgentId: string | null;
24
+ taskId: string | null;
25
+ a2aTaskId: string | null;
26
+ conversationId: string;
25
27
  fromTeamAgentId: string | null;
26
28
  toTeamAgentId: string | null;
27
29
  visibility: string;
28
30
  messageType: string;
29
- taskId: string | null;
30
31
  parentMessageId: string | null;
31
- a2aTaskId: string | null;
32
32
  a2aSessionId: string | null;
33
33
  } | undefined>;
34
34
  declare const listMessages: (db: AgentsRunDatabaseClient) => (params: {
@@ -141,25 +141,25 @@ declare const getVisibleMessages: (db: AgentsRunDatabaseClient) => (params: {
141
141
  }[]>;
142
142
  declare const createMessage: (db: AgentsRunDatabaseClient) => (params: MessageInsert) => Promise<{
143
143
  id: string;
144
- metadata: MessageMetadata | null;
144
+ tenantId: string;
145
+ projectId: string;
145
146
  createdAt: string;
146
147
  updatedAt: string;
147
- projectId: string;
148
- tenantId: string;
149
- conversationId: string;
148
+ metadata: MessageMetadata | null;
150
149
  content: MessageContent;
151
150
  role: string;
152
151
  fromSubAgentId: string | null;
153
152
  toSubAgentId: string | null;
154
153
  fromExternalAgentId: string | null;
155
154
  toExternalAgentId: string | null;
155
+ taskId: string | null;
156
+ a2aTaskId: string | null;
157
+ conversationId: string;
156
158
  fromTeamAgentId: string | null;
157
159
  toTeamAgentId: string | null;
158
160
  visibility: string;
159
161
  messageType: string;
160
- taskId: string | null;
161
162
  parentMessageId: string | null;
162
- a2aTaskId: string | null;
163
163
  a2aSessionId: string | null;
164
164
  }>;
165
165
  declare const updateMessage: (db: AgentsRunDatabaseClient) => (params: {
@@ -194,25 +194,25 @@ declare const deleteMessage: (db: AgentsRunDatabaseClient) => (params: {
194
194
  messageId: string;
195
195
  }) => Promise<{
196
196
  id: string;
197
- metadata: MessageMetadata | null;
197
+ tenantId: string;
198
+ projectId: string;
198
199
  createdAt: string;
199
200
  updatedAt: string;
200
- projectId: string;
201
- tenantId: string;
202
- conversationId: string;
201
+ metadata: MessageMetadata | null;
203
202
  content: MessageContent;
204
203
  role: string;
205
204
  fromSubAgentId: string | null;
206
205
  toSubAgentId: string | null;
207
206
  fromExternalAgentId: string | null;
208
207
  toExternalAgentId: string | null;
208
+ taskId: string | null;
209
+ a2aTaskId: string | null;
210
+ conversationId: string;
209
211
  fromTeamAgentId: string | null;
210
212
  toTeamAgentId: string | null;
211
213
  visibility: string;
212
214
  messageType: string;
213
- taskId: string | null;
214
215
  parentMessageId: string | null;
215
- a2aTaskId: string | null;
216
216
  a2aSessionId: string | null;
217
217
  }>;
218
218
  declare const countMessagesByConversation: (db: AgentsRunDatabaseClient) => (params: {
@@ -7,20 +7,20 @@ import { TaskInsert, TaskSelect } from "../../types/entities.js";
7
7
  //#region src/data-access/runtime/tasks.d.ts
8
8
  declare const createTask: (db: AgentsRunDatabaseClient) => (params: TaskInsert) => Promise<{
9
9
  id: string;
10
- contextId: string;
10
+ tenantId: string;
11
+ projectId: string;
12
+ agentId: string;
13
+ createdAt: string;
14
+ updatedAt: string;
15
+ metadata: TaskMetadataConfig | null;
11
16
  ref: {
12
- type: "commit" | "tag" | "branch";
17
+ type: "tag" | "commit" | "branch";
13
18
  name: string;
14
19
  hash: string;
15
20
  } | null;
16
21
  status: string;
17
- metadata: TaskMetadataConfig | null;
18
- createdAt: string;
19
- updatedAt: string;
20
22
  subAgentId: string;
21
- agentId: string;
22
- projectId: string;
23
- tenantId: 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: "commit" | "tag" | "branch";
39
+ type: "tag" | "commit" | "branch";
40
40
  name: string;
41
41
  hash: string;
42
42
  } | null;