@inkeep/agents-core 0.0.0-dev-20260218233229 → 0.0.0-dev-20260219033751

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,25 +9,25 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
9
9
  id: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
- createdAt: string;
13
- updatedAt: string;
14
12
  tenantId: string;
15
13
  projectId: string;
14
+ agentId: string;
15
+ createdAt: string;
16
+ updatedAt: string;
16
17
  headersSchema: unknown;
17
18
  contextVariables: Record<string, ContextFetchDefinition> | null;
18
- agentId: string;
19
19
  } | undefined>;
20
20
  declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
21
21
  scopes: AgentScopeConfig;
22
22
  }) => Promise<{
23
23
  id: string;
24
- createdAt: string;
25
- updatedAt: string;
26
24
  tenantId: string;
27
25
  projectId: string;
26
+ agentId: string;
27
+ createdAt: string;
28
+ updatedAt: string;
28
29
  headersSchema: unknown;
29
30
  contextVariables: Record<string, ContextFetchDefinition> | null;
30
- agentId: string;
31
31
  }[]>;
32
32
  declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (params: {
33
33
  scopes: AgentScopeConfig;
@@ -43,13 +43,13 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
43
43
  }>;
44
44
  declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
45
45
  id: string;
46
- createdAt: string;
47
- updatedAt: string;
48
46
  tenantId: string;
49
47
  projectId: string;
48
+ agentId: string;
49
+ createdAt: string;
50
+ updatedAt: string;
50
51
  headersSchema: unknown;
51
52
  contextVariables: Record<string, ContextFetchDefinition> | null;
52
- agentId: string;
53
53
  }>;
54
54
  declare const updateContextConfig: (db: AgentsManageDatabaseClient) => (params: {
55
55
  scopes: AgentScopeConfig;
@@ -83,13 +83,13 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
83
83
  data: ContextConfigInsert;
84
84
  }) => Promise<{
85
85
  id: string;
86
- createdAt: string;
87
- updatedAt: string;
88
86
  tenantId: string;
89
87
  projectId: string;
88
+ agentId: string;
89
+ createdAt: string;
90
+ updatedAt: string;
90
91
  headersSchema: unknown;
91
92
  contextVariables: Record<string, ContextFetchDefinition> | null;
92
- agentId: string;
93
93
  }>;
94
94
  //#endregion
95
95
  export { countContextConfigs, createContextConfig, deleteContextConfig, getContextConfigById, hasContextConfig, listContextConfigs, listContextConfigsPaginated, updateContextConfig, upsertContextConfig };
@@ -65,10 +65,10 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
65
65
  dataComponentId: string;
66
66
  }) => Promise<{
67
67
  id: string;
68
- createdAt: string;
69
68
  tenantId: string;
70
69
  projectId: string;
71
70
  agentId: string;
71
+ createdAt: string;
72
72
  subAgentId: string;
73
73
  dataComponentId: string;
74
74
  }>;
@@ -107,10 +107,10 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
107
107
  dataComponentId: string;
108
108
  }) => Promise<{
109
109
  id: string;
110
- createdAt: string;
111
110
  tenantId: string;
112
111
  projectId: string;
113
112
  agentId: string;
113
+ createdAt: string;
114
114
  subAgentId: string;
115
115
  dataComponentId: string;
116
116
  } | null>;
@@ -110,7 +110,7 @@ const getDataComponentsForAgent = (db) => async (params) => {
110
110
  createdAt: dataComponents.createdAt,
111
111
  updatedAt: dataComponents.updatedAt,
112
112
  render: dataComponents.render
113
- }).from(dataComponents).innerJoin(subAgentDataComponents, eq(dataComponents.id, subAgentDataComponents.dataComponentId)).where(and(eq(dataComponents.tenantId, params.scopes.tenantId), eq(dataComponents.projectId, params.scopes.projectId), eq(subAgentDataComponents.agentId, params.scopes.agentId), eq(subAgentDataComponents.subAgentId, params.scopes.subAgentId))).orderBy(desc(dataComponents.createdAt));
113
+ }).from(dataComponents).innerJoin(subAgentDataComponents, and(eq(dataComponents.id, subAgentDataComponents.dataComponentId), eq(dataComponents.tenantId, subAgentDataComponents.tenantId), eq(dataComponents.projectId, subAgentDataComponents.projectId))).where(and(eq(dataComponents.tenantId, params.scopes.tenantId), eq(dataComponents.projectId, params.scopes.projectId), eq(subAgentDataComponents.agentId, params.scopes.agentId), eq(subAgentDataComponents.subAgentId, params.scopes.subAgentId))).orderBy(desc(dataComponents.createdAt));
114
114
  };
115
115
  /**
116
116
  * Associate a data component with an agent
@@ -132,7 +132,7 @@ const removeDataComponentFromAgent = (db) => async (params) => {
132
132
  return (await db.delete(subAgentDataComponents).where(and(eq(subAgentDataComponents.tenantId, params.scopes.tenantId), eq(subAgentDataComponents.projectId, params.scopes.projectId), eq(subAgentDataComponents.agentId, params.scopes.agentId), eq(subAgentDataComponents.subAgentId, params.scopes.subAgentId), eq(subAgentDataComponents.dataComponentId, params.dataComponentId))).returning()).length > 0;
133
133
  };
134
134
  const deleteAgentDataComponentRelationByAgent = (db) => async (params) => {
135
- return (await db.delete(subAgentDataComponents).where(and(eq(subAgentDataComponents.tenantId, params.scopes.tenantId), eq(subAgentDataComponents.agentId, params.scopes.agentId), eq(subAgentDataComponents.subAgentId, params.scopes.subAgentId))).returning()).length > 0;
135
+ return (await db.delete(subAgentDataComponents).where(and(eq(subAgentDataComponents.tenantId, params.scopes.tenantId), eq(subAgentDataComponents.projectId, params.scopes.projectId), eq(subAgentDataComponents.agentId, params.scopes.agentId), eq(subAgentDataComponents.subAgentId, params.scopes.subAgentId))).returning()).length > 0;
136
136
  };
137
137
  /**
138
138
  * Get all agents that use a specific data component
@@ -55,12 +55,12 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
55
55
  }) => Promise<{
56
56
  id: string;
57
57
  name: string;
58
- createdAt: string;
59
- updatedAt: string;
60
58
  description: string | null;
61
59
  tenantId: string;
62
60
  projectId: string;
63
61
  agentId: string;
62
+ createdAt: string;
63
+ updatedAt: string;
64
64
  functionId: string;
65
65
  }>;
66
66
  /**
@@ -97,12 +97,12 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
97
97
  }) => Promise<{
98
98
  id: string;
99
99
  name: string;
100
- createdAt: string;
101
- updatedAt: string;
102
100
  description: string | null;
103
101
  tenantId: string;
104
102
  projectId: string;
105
103
  agentId: string;
104
+ createdAt: string;
105
+ updatedAt: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -162,15 +162,15 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
162
162
  }> | null;
163
163
  }) => Promise<{
164
164
  id: string;
165
- createdAt: string;
166
- updatedAt: string;
167
165
  tenantId: string;
168
166
  projectId: string;
169
167
  agentId: string;
170
- subAgentId: string;
168
+ createdAt: string;
169
+ updatedAt: string;
171
170
  toolPolicies: Record<string, {
172
171
  needsApproval?: boolean;
173
172
  }> | null;
173
+ subAgentId: string;
174
174
  functionToolId: string;
175
175
  }>;
176
176
  /**
@@ -227,15 +227,15 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
227
227
  }> | null;
228
228
  }) => Promise<{
229
229
  id: string;
230
- createdAt: string;
231
- updatedAt: string;
232
230
  tenantId: string;
233
231
  projectId: string;
234
232
  agentId: string;
235
- subAgentId: string;
233
+ createdAt: string;
234
+ updatedAt: string;
236
235
  toolPolicies: Record<string, {
237
236
  needsApproval?: boolean;
238
237
  }> | null;
238
+ subAgentId: string;
239
239
  functionToolId: string;
240
240
  }>;
241
241
  //#endregion
@@ -9,12 +9,12 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  }) => Promise<{
10
10
  id: string;
11
11
  name: string;
12
- createdAt: string;
13
- updatedAt: string;
14
- metadata: Record<string, string> | null;
15
12
  description: string;
16
13
  tenantId: string;
17
14
  projectId: string;
15
+ createdAt: string;
16
+ updatedAt: string;
17
+ metadata: Record<string, string> | null;
18
18
  content: string;
19
19
  } | null>;
20
20
  declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
@@ -42,23 +42,23 @@ declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
42
42
  declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
43
43
  id: string;
44
44
  name: string;
45
- createdAt: string;
46
- updatedAt: string;
47
- metadata: Record<string, string> | null;
48
45
  description: string;
49
46
  tenantId: string;
50
47
  projectId: string;
48
+ createdAt: string;
49
+ updatedAt: string;
50
+ metadata: Record<string, string> | null;
51
51
  content: string;
52
52
  }>;
53
53
  declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
54
54
  id: string;
55
55
  name: string;
56
- createdAt: string;
57
- updatedAt: string;
58
- metadata: Record<string, string> | null;
59
56
  description: string;
60
57
  tenantId: string;
61
58
  projectId: string;
59
+ createdAt: string;
60
+ updatedAt: string;
61
+ metadata: Record<string, string> | null;
62
62
  content: string;
63
63
  }>;
64
64
  declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
@@ -91,15 +91,15 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
91
91
  alwaysLoaded?: boolean;
92
92
  }) => Promise<{
93
93
  id: string;
94
- createdAt: string;
95
- updatedAt: string;
96
94
  tenantId: string;
97
95
  projectId: string;
98
96
  agentId: string;
99
- skillId: string;
97
+ createdAt: string;
98
+ updatedAt: string;
100
99
  index: number;
101
100
  alwaysLoaded: boolean;
102
101
  subAgentId: string;
102
+ skillId: string;
103
103
  }>;
104
104
  declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
105
105
  scopes: AgentScopeConfig;
@@ -9,14 +9,14 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
9
9
  relationId: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
- createdAt: string;
13
- updatedAt: string;
14
12
  tenantId: string;
15
13
  projectId: string;
16
14
  agentId: string;
17
- subAgentId: string;
15
+ createdAt: string;
16
+ updatedAt: string;
18
17
  headers: Record<string, string> | null;
19
18
  externalAgentId: string;
19
+ subAgentId: string;
20
20
  } | undefined>;
21
21
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: SubAgentScopeConfig;
@@ -44,27 +44,27 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
46
  id: string;
47
- createdAt: string;
48
- updatedAt: string;
49
47
  tenantId: string;
50
48
  projectId: string;
51
49
  agentId: string;
52
- subAgentId: string;
50
+ createdAt: string;
51
+ updatedAt: string;
53
52
  headers: Record<string, string> | null;
54
53
  externalAgentId: string;
54
+ subAgentId: string;
55
55
  }[]>;
56
56
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
59
  id: string;
60
- createdAt: string;
61
- updatedAt: string;
62
60
  tenantId: string;
63
61
  projectId: string;
64
62
  agentId: string;
65
- subAgentId: string;
63
+ createdAt: string;
64
+ updatedAt: string;
66
65
  headers: Record<string, string> | null;
67
66
  externalAgentId: string;
67
+ subAgentId: string;
68
68
  }[]>;
69
69
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
70
70
  scopes: AgentScopeConfig;
@@ -180,14 +180,14 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
180
180
  };
181
181
  }) => Promise<{
182
182
  id: string;
183
- createdAt: string;
184
- updatedAt: string;
185
183
  tenantId: string;
186
184
  projectId: string;
187
185
  agentId: string;
188
- subAgentId: string;
186
+ createdAt: string;
187
+ updatedAt: string;
189
188
  headers: Record<string, string> | null;
190
189
  externalAgentId: string;
190
+ subAgentId: string;
191
191
  }>;
192
192
  /**
193
193
  * Check if sub-agent external agent relation exists by params
@@ -197,14 +197,14 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
197
197
  externalAgentId: string;
198
198
  }) => Promise<{
199
199
  id: string;
200
- createdAt: string;
201
- updatedAt: string;
202
200
  tenantId: string;
203
201
  projectId: string;
204
202
  agentId: string;
205
- subAgentId: string;
203
+ createdAt: string;
204
+ updatedAt: string;
206
205
  headers: Record<string, string> | null;
207
206
  externalAgentId: string;
207
+ subAgentId: string;
208
208
  } | undefined>;
209
209
  /**
210
210
  * Upsert sub-agent external agent relation (create if it doesn't exist, update if it does)
@@ -218,14 +218,14 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
218
218
  };
219
219
  }) => Promise<{
220
220
  id: string;
221
- createdAt: string;
222
- updatedAt: string;
223
221
  tenantId: string;
224
222
  projectId: string;
225
223
  agentId: string;
226
- subAgentId: string;
224
+ createdAt: string;
225
+ updatedAt: string;
227
226
  headers: Record<string, string> | null;
228
227
  externalAgentId: string;
228
+ subAgentId: string;
229
229
  }>;
230
230
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
231
231
  scopes: SubAgentScopeConfig;
@@ -9,14 +9,14 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
9
9
  relationId: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
- createdAt: string;
13
- updatedAt: string;
14
12
  tenantId: string;
15
13
  projectId: string;
16
14
  agentId: string;
15
+ createdAt: string;
16
+ updatedAt: string;
17
+ relationType: string | null;
17
18
  sourceSubAgentId: string;
18
19
  targetSubAgentId: string | null;
19
- relationType: string | null;
20
20
  } | undefined>;
21
21
  declare const listAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: AgentScopeConfig;
@@ -44,27 +44,27 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
46
  id: string;
47
- createdAt: string;
48
- updatedAt: string;
49
47
  tenantId: string;
50
48
  projectId: string;
51
49
  agentId: string;
50
+ createdAt: string;
51
+ updatedAt: string;
52
+ relationType: string | null;
52
53
  sourceSubAgentId: string;
53
54
  targetSubAgentId: string | null;
54
- relationType: string | null;
55
55
  }[]>;
56
56
  declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
59
  id: string;
60
- createdAt: string;
61
- updatedAt: string;
62
60
  tenantId: string;
63
61
  projectId: string;
64
62
  agentId: string;
63
+ createdAt: string;
64
+ updatedAt: string;
65
+ relationType: string | null;
65
66
  sourceSubAgentId: string;
66
67
  targetSubAgentId: string | null;
67
- relationType: string | null;
68
68
  }[]>;
69
69
  declare const getAgentRelationsBySource: (db: AgentsManageDatabaseClient) => (params: {
70
70
  scopes: AgentScopeConfig;
@@ -126,14 +126,14 @@ declare const getRelatedAgentsForAgent: (db: AgentsManageDatabaseClient) => (par
126
126
  }>;
127
127
  declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
128
128
  id: string;
129
- createdAt: string;
130
- updatedAt: string;
131
129
  tenantId: string;
132
130
  projectId: string;
133
131
  agentId: string;
132
+ createdAt: string;
133
+ updatedAt: string;
134
+ relationType: string | null;
134
135
  sourceSubAgentId: string;
135
136
  targetSubAgentId: string | null;
136
- relationType: string | null;
137
137
  }>;
138
138
  /**
139
139
  * Check if sub-agent relation exists by agent, source, target, and relation type
@@ -145,28 +145,28 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
145
145
  relationType: string;
146
146
  }) => Promise<{
147
147
  id: string;
148
- createdAt: string;
149
- updatedAt: string;
150
148
  tenantId: string;
151
149
  projectId: string;
152
150
  agentId: string;
151
+ createdAt: string;
152
+ updatedAt: string;
153
+ relationType: string | null;
153
154
  sourceSubAgentId: string;
154
155
  targetSubAgentId: string | null;
155
- relationType: string | null;
156
156
  } | undefined>;
157
157
  /**
158
158
  * Upsert agent relation (create if it doesn't exist, no-op if it does)
159
159
  */
160
160
  declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
161
161
  id: string;
162
- createdAt: string;
163
- updatedAt: string;
164
162
  tenantId: string;
165
163
  projectId: string;
166
164
  agentId: string;
165
+ createdAt: string;
166
+ updatedAt: string;
167
+ relationType: string | null;
167
168
  sourceSubAgentId: string;
168
169
  targetSubAgentId: string | null;
169
- relationType: string | null;
170
170
  }>;
171
171
  declare const updateAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
172
172
  scopes: AgentScopeConfig;
@@ -204,18 +204,18 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
204
204
  };
205
205
  }) => Promise<{
206
206
  id: string;
207
- createdAt: string;
208
- updatedAt: string;
209
207
  tenantId: string;
210
208
  projectId: string;
211
209
  agentId: string;
210
+ createdAt: string;
211
+ updatedAt: string;
212
212
  toolId: string;
213
- subAgentId: string;
214
213
  headers: Record<string, string> | null;
215
- selectedTools: string[] | null;
216
214
  toolPolicies: Record<string, {
217
215
  needsApproval?: boolean;
218
216
  }> | null;
217
+ subAgentId: string;
218
+ selectedTools: string[] | null;
219
219
  }>;
220
220
  declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
221
221
  scopes: AgentScopeConfig;
@@ -248,18 +248,18 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
248
248
  relationId: string;
249
249
  }) => Promise<{
250
250
  id: string;
251
- createdAt: string;
252
- updatedAt: string;
253
251
  tenantId: string;
254
252
  projectId: string;
255
253
  agentId: string;
254
+ createdAt: string;
255
+ updatedAt: string;
256
256
  toolId: string;
257
- subAgentId: string;
258
257
  headers: Record<string, string> | null;
259
- selectedTools: string[] | null;
260
258
  toolPolicies: Record<string, {
261
259
  needsApproval?: boolean;
262
260
  }> | null;
261
+ subAgentId: string;
262
+ selectedTools: string[] | null;
263
263
  } | undefined>;
264
264
  declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
265
265
  scopes: SubAgentScopeConfig;
@@ -124,7 +124,7 @@ const deleteSubAgentRelation = (db) => async (params) => {
124
124
  return (await db.delete(subAgentRelations).where(and(eq(subAgentRelations.tenantId, params.scopes.tenantId), eq(subAgentRelations.projectId, params.scopes.projectId), eq(subAgentRelations.agentId, params.scopes.agentId), eq(subAgentRelations.id, params.relationId))).returning()).length > 0;
125
125
  };
126
126
  const deleteAgentRelationsByAgent = (db) => async (params) => {
127
- return (await db.delete(subAgentRelations).where(and(eq(subAgentRelations.tenantId, params.scopes.tenantId), eq(subAgentRelations.agentId, params.scopes.agentId))).returning()).length > 0;
127
+ return (await db.delete(subAgentRelations).where(and(eq(subAgentRelations.tenantId, params.scopes.tenantId), eq(subAgentRelations.projectId, params.scopes.projectId), eq(subAgentRelations.agentId, params.scopes.agentId))).returning()).length > 0;
128
128
  };
129
129
  const createAgentToolRelation = (db) => async (params) => {
130
130
  const finalRelationId = params.relationId ?? generateId();
@@ -160,7 +160,7 @@ const getAgentToolRelationByAgent = (db) => async (params) => {
160
160
  const page = params.pagination?.page || 1;
161
161
  const limit = Math.min(params.pagination?.limit || 10, 100);
162
162
  const offset = (page - 1) * limit;
163
- const [data, totalResult] = await Promise.all([db.select().from(subAgentToolRelations).where(and(eq(subAgentToolRelations.tenantId, params.scopes.tenantId), eq(subAgentToolRelations.projectId, params.scopes.projectId), eq(subAgentToolRelations.subAgentId, params.scopes.subAgentId))).limit(limit).offset(offset).orderBy(desc(subAgentToolRelations.createdAt)), db.select({ count: count() }).from(subAgentToolRelations).where(and(eq(subAgentToolRelations.tenantId, params.scopes.tenantId), eq(subAgentToolRelations.projectId, params.scopes.projectId), eq(subAgentToolRelations.subAgentId, params.scopes.subAgentId)))]);
163
+ const [data, totalResult] = await Promise.all([db.select().from(subAgentToolRelations).where(and(eq(subAgentToolRelations.tenantId, params.scopes.tenantId), eq(subAgentToolRelations.projectId, params.scopes.projectId), eq(subAgentToolRelations.agentId, params.scopes.agentId), eq(subAgentToolRelations.subAgentId, params.scopes.subAgentId))).limit(limit).offset(offset).orderBy(desc(subAgentToolRelations.createdAt)), db.select({ count: count() }).from(subAgentToolRelations).where(and(eq(subAgentToolRelations.tenantId, params.scopes.tenantId), eq(subAgentToolRelations.projectId, params.scopes.projectId), eq(subAgentToolRelations.agentId, params.scopes.agentId), eq(subAgentToolRelations.subAgentId, params.scopes.subAgentId)))]);
164
164
  const total = totalResult[0]?.count || 0;
165
165
  return {
166
166
  data,
@@ -9,13 +9,13 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
9
9
  relationId: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
- createdAt: string;
13
- updatedAt: string;
14
12
  tenantId: string;
15
13
  projectId: string;
16
14
  agentId: string;
17
- subAgentId: string;
15
+ createdAt: string;
16
+ updatedAt: string;
18
17
  headers: Record<string, string> | null;
18
+ subAgentId: string;
19
19
  targetAgentId: string;
20
20
  } | undefined>;
21
21
  declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -44,26 +44,26 @@ declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =>
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
46
  id: string;
47
- createdAt: string;
48
- updatedAt: string;
49
47
  tenantId: string;
50
48
  projectId: string;
51
49
  agentId: string;
52
- subAgentId: string;
50
+ createdAt: string;
51
+ updatedAt: string;
53
52
  headers: Record<string, string> | null;
53
+ subAgentId: string;
54
54
  targetAgentId: string;
55
55
  }[]>;
56
56
  declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
59
  id: string;
60
- createdAt: string;
61
- updatedAt: string;
62
60
  tenantId: string;
63
61
  projectId: string;
64
62
  agentId: string;
65
- subAgentId: string;
63
+ createdAt: string;
64
+ updatedAt: string;
66
65
  headers: Record<string, string> | null;
66
+ subAgentId: string;
67
67
  targetAgentId: string;
68
68
  }[]>;
69
69
  declare const getSubAgentTeamAgentRelationsByTeamAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -210,13 +210,13 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
210
210
  };
211
211
  }) => Promise<{
212
212
  id: string;
213
- createdAt: string;
214
- updatedAt: string;
215
213
  tenantId: string;
216
214
  projectId: string;
217
215
  agentId: string;
218
- subAgentId: string;
216
+ createdAt: string;
217
+ updatedAt: string;
219
218
  headers: Record<string, string> | null;
219
+ subAgentId: string;
220
220
  targetAgentId: string;
221
221
  }>;
222
222
  /**
@@ -227,13 +227,13 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
227
227
  targetAgentId: string;
228
228
  }) => Promise<{
229
229
  id: string;
230
- createdAt: string;
231
- updatedAt: string;
232
230
  tenantId: string;
233
231
  projectId: string;
234
232
  agentId: string;
235
- subAgentId: string;
233
+ createdAt: string;
234
+ updatedAt: string;
236
235
  headers: Record<string, string> | null;
236
+ subAgentId: string;
237
237
  targetAgentId: string;
238
238
  } | undefined>;
239
239
  /**
@@ -248,13 +248,13 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
248
248
  };
249
249
  }) => Promise<{
250
250
  id: string;
251
- createdAt: string;
252
- updatedAt: string;
253
251
  tenantId: string;
254
252
  projectId: string;
255
253
  agentId: string;
256
- subAgentId: string;
254
+ createdAt: string;
255
+ updatedAt: string;
257
256
  headers: Record<string, string> | null;
257
+ subAgentId: string;
258
258
  targetAgentId: string;
259
259
  }>;
260
260
  declare const updateSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient) => (params: {