@inkeep/agents-core 0.0.0-dev-20260109041402 → 0.0.0-dev-20260112191041

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,12 +9,12 @@ declare const createTask: (db: DatabaseClient) => (params: TaskInsert) => Promis
9
9
  id: string;
10
10
  createdAt: string;
11
11
  updatedAt: string;
12
- tenantId: string;
12
+ status: string;
13
13
  metadata: TaskMetadataConfig | null;
14
+ tenantId: string;
14
15
  projectId: string;
15
16
  agentId: string;
16
17
  contextId: string;
17
- status: string;
18
18
  subAgentId: string;
19
19
  }>;
20
20
  declare const getTask: (db: DatabaseClient) => (params: {
@@ -12,6 +12,7 @@ declare const getToolById: (db: DatabaseClient) => (params: {
12
12
  scopes: ProjectScopeConfig;
13
13
  toolId: string;
14
14
  }) => Promise<{
15
+ headers: Record<string, string> | null;
15
16
  id: string;
16
17
  name: string;
17
18
  createdAt: string;
@@ -25,7 +26,6 @@ declare const getToolById: (db: DatabaseClient) => (params: {
25
26
  mcp: ToolMcpConfig;
26
27
  };
27
28
  credentialScope: string;
28
- headers: Record<string, string> | null;
29
29
  imageUrl: string | null;
30
30
  capabilities: ToolServerCapabilities | null;
31
31
  lastError: string | null;
@@ -61,6 +61,7 @@ declare const listTools: (db: DatabaseClient) => (params: {
61
61
  };
62
62
  }>;
63
63
  declare const createTool: (db: DatabaseClient) => (params: ToolInsert) => Promise<{
64
+ headers: Record<string, string> | null;
64
65
  id: string;
65
66
  name: string;
66
67
  createdAt: string;
@@ -74,7 +75,6 @@ declare const createTool: (db: DatabaseClient) => (params: ToolInsert) => Promis
74
75
  mcp: ToolMcpConfig;
75
76
  };
76
77
  credentialScope: string;
77
- headers: Record<string, string> | null;
78
78
  imageUrl: string | null;
79
79
  capabilities: ToolServerCapabilities | null;
80
80
  lastError: string | null;
@@ -116,6 +116,7 @@ declare const addToolToAgent: (db: DatabaseClient) => (params: {
116
116
  needsApproval?: boolean;
117
117
  }> | null;
118
118
  }) => Promise<{
119
+ headers: Record<string, string> | null;
119
120
  id: string;
120
121
  createdAt: string;
121
122
  updatedAt: string;
@@ -124,7 +125,6 @@ declare const addToolToAgent: (db: DatabaseClient) => (params: {
124
125
  agentId: string;
125
126
  toolId: string;
126
127
  subAgentId: string;
127
- headers: Record<string, string> | null;
128
128
  selectedTools: string[] | null;
129
129
  toolPolicies: Record<string, {
130
130
  needsApproval?: boolean;
@@ -135,6 +135,7 @@ declare const removeToolFromAgent: (db: DatabaseClient) => (params: {
135
135
  subAgentId: string;
136
136
  toolId: string;
137
137
  }) => Promise<{
138
+ headers: Record<string, string> | null;
138
139
  id: string;
139
140
  createdAt: string;
140
141
  updatedAt: string;
@@ -143,7 +144,6 @@ declare const removeToolFromAgent: (db: DatabaseClient) => (params: {
143
144
  agentId: string;
144
145
  toolId: string;
145
146
  subAgentId: string;
146
- headers: Record<string, string> | null;
147
147
  selectedTools: string[] | null;
148
148
  toolPolicies: Record<string, {
149
149
  needsApproval?: boolean;
@@ -163,6 +163,7 @@ declare const upsertSubAgentToolRelation: (db: DatabaseClient) => (params: {
163
163
  }> | null;
164
164
  relationId?: string;
165
165
  }) => Promise<{
166
+ headers: Record<string, string> | null;
166
167
  id: string;
167
168
  createdAt: string;
168
169
  updatedAt: string;
@@ -171,7 +172,6 @@ declare const upsertSubAgentToolRelation: (db: DatabaseClient) => (params: {
171
172
  agentId: string;
172
173
  toolId: string;
173
174
  subAgentId: string;
174
- headers: Record<string, string> | null;
175
175
  selectedTools: string[] | null;
176
176
  toolPolicies: Record<string, {
177
177
  needsApproval?: boolean;
@@ -183,6 +183,7 @@ declare const upsertSubAgentToolRelation: (db: DatabaseClient) => (params: {
183
183
  declare const upsertTool: (db: DatabaseClient) => (params: {
184
184
  data: ToolInsert;
185
185
  }) => Promise<{
186
+ headers: Record<string, string> | null;
186
187
  id: string;
187
188
  name: string;
188
189
  createdAt: string;
@@ -196,7 +197,6 @@ declare const upsertTool: (db: DatabaseClient) => (params: {
196
197
  mcp: ToolMcpConfig;
197
198
  };
198
199
  credentialScope: string;
199
- headers: Record<string, string> | null;
200
200
  imageUrl: string | null;
201
201
  capabilities: ToolServerCapabilities | null;
202
202
  lastError: string | null;