@inkeep/agents-core 0.0.0-dev-20260311074352 → 0.0.0-dev-20260311141825

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.
@@ -10,25 +10,25 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
10
10
  id: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- tenantId: string;
14
- projectId: string;
15
- agentId: string;
16
- createdAt: string;
17
- updatedAt: string;
18
13
  headersSchema: unknown;
19
14
  contextVariables: Record<string, ContextFetchDefinition> | null;
15
+ createdAt: string;
16
+ updatedAt: string;
17
+ agentId: string;
18
+ projectId: string;
19
+ tenantId: string;
20
20
  } | undefined>;
21
21
  declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: AgentScopeConfig;
23
23
  }) => Promise<{
24
24
  id: string;
25
- tenantId: string;
26
- projectId: string;
27
- agentId: string;
28
- createdAt: string;
29
- updatedAt: string;
30
25
  headersSchema: unknown;
31
26
  contextVariables: Record<string, ContextFetchDefinition> | null;
27
+ createdAt: string;
28
+ updatedAt: string;
29
+ agentId: string;
30
+ projectId: string;
31
+ tenantId: string;
32
32
  }[]>;
33
33
  declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (params: {
34
34
  scopes: AgentScopeConfig;
@@ -44,13 +44,13 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
44
44
  }>;
45
45
  declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
46
46
  id: string;
47
- tenantId: string;
48
- projectId: string;
49
- agentId: string;
50
- createdAt: string;
51
- updatedAt: string;
52
47
  headersSchema: unknown;
53
48
  contextVariables: Record<string, ContextFetchDefinition> | null;
49
+ createdAt: string;
50
+ updatedAt: string;
51
+ agentId: string;
52
+ projectId: string;
53
+ tenantId: string;
54
54
  }>;
55
55
  declare const updateContextConfig: (db: AgentsManageDatabaseClient) => (params: {
56
56
  scopes: AgentScopeConfig;
@@ -84,13 +84,13 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
84
84
  data: ContextConfigInsert;
85
85
  }) => Promise<{
86
86
  id: string;
87
- tenantId: string;
88
- projectId: string;
89
- agentId: string;
90
- createdAt: string;
91
- updatedAt: string;
92
87
  headersSchema: unknown;
93
88
  contextVariables: Record<string, ContextFetchDefinition> | null;
89
+ createdAt: string;
90
+ updatedAt: string;
91
+ agentId: string;
92
+ projectId: string;
93
+ tenantId: string;
94
94
  }>;
95
95
  //#endregion
96
96
  export { countContextConfigs, createContextConfig, deleteContextConfig, getContextConfigById, hasContextConfig, listContextConfigs, listContextConfigsPaginated, updateContextConfig, upsertContextConfig };
@@ -93,8 +93,8 @@ declare const countCredentialReferences: (db: AgentsManageDatabaseClient) => (pa
93
93
  }) => Promise<number>;
94
94
  /**
95
95
  * Upsert a credential reference (create if it doesn't exist, update if it does).
96
- * For user-scoped credentials (toolId + userId set), uses an atomic INSERT ... ON CONFLICT
97
- * on the (toolId, userId) unique constraint to avoid TOCTOU races.
96
+ * For user-scoped credentials (toolId + userId set), also checks the unique constraint pair.
97
+ * Uses application-level find-then-update since Doltgres does not support ON CONFLICT DO UPDATE.
98
98
  */
99
99
  declare const upsertCredentialReference: (db: AgentsManageDatabaseClient) => (params: {
100
100
  data: CredentialReferenceInsert;
@@ -1,4 +1,5 @@
1
1
  import { credentialReferences, externalAgents, tools } from "../../db/manage/manage-schema.js";
2
+ import { isUniqueConstraintError } from "../../utils/error.js";
2
3
  import { and, count, desc, eq, sql } from "drizzle-orm";
3
4
 
4
5
  //#region src/data-access/manage/credentialReferences.ts
@@ -120,15 +121,14 @@ const countCredentialReferences = (db) => async (params) => {
120
121
  };
121
122
  /**
122
123
  * Upsert a credential reference (create if it doesn't exist, update if it does).
123
- * For user-scoped credentials (toolId + userId set), uses an atomic INSERT ... ON CONFLICT
124
- * on the (toolId, userId) unique constraint to avoid TOCTOU races.
124
+ * For user-scoped credentials (toolId + userId set), also checks the unique constraint pair.
125
+ * Uses application-level find-then-update since Doltgres does not support ON CONFLICT DO UPDATE.
125
126
  */
126
127
  const upsertCredentialReference = (db) => async (params) => {
127
128
  const scopes = {
128
129
  tenantId: params.data.tenantId,
129
130
  projectId: params.data.projectId
130
131
  };
131
- const now = (/* @__PURE__ */ new Date()).toISOString();
132
132
  const existingById = await getCredentialReference(db)({
133
133
  scopes,
134
134
  id: params.data.id
@@ -148,23 +148,51 @@ const upsertCredentialReference = (db) => async (params) => {
148
148
  return updated;
149
149
  }
150
150
  if (params.data.toolId && params.data.userId) {
151
- const [result] = await db.insert(credentialReferences).values({
152
- ...params.data,
153
- createdAt: now,
154
- updatedAt: now
155
- }).onConflictDoUpdate({
156
- target: [credentialReferences.toolId, credentialReferences.userId],
157
- set: {
158
- name: params.data.name,
159
- type: params.data.type,
160
- credentialStoreId: params.data.credentialStoreId,
161
- retrievalParams: params.data.retrievalParams,
162
- updatedAt: now
151
+ const existingByToolUser = await getUserScopedCredentialReference(db)({
152
+ scopes,
153
+ toolId: params.data.toolId,
154
+ userId: params.data.userId
155
+ });
156
+ if (existingByToolUser) {
157
+ const updated = await updateCredentialReference(db)({
158
+ scopes,
159
+ id: existingByToolUser.id,
160
+ data: {
161
+ name: params.data.name,
162
+ type: params.data.type,
163
+ credentialStoreId: params.data.credentialStoreId,
164
+ retrievalParams: params.data.retrievalParams
165
+ }
166
+ });
167
+ if (!updated) throw new Error("Failed to update credential reference - no rows affected");
168
+ return updated;
169
+ }
170
+ }
171
+ try {
172
+ return await createCredentialReference(db)(params.data);
173
+ } catch (error) {
174
+ if (isUniqueConstraintError(error) && params.data.toolId && params.data.userId) {
175
+ const raceWinner = await getUserScopedCredentialReference(db)({
176
+ scopes,
177
+ toolId: params.data.toolId,
178
+ userId: params.data.userId
179
+ });
180
+ if (raceWinner) {
181
+ const updated = await updateCredentialReference(db)({
182
+ scopes,
183
+ id: raceWinner.id,
184
+ data: {
185
+ name: params.data.name,
186
+ type: params.data.type,
187
+ credentialStoreId: params.data.credentialStoreId,
188
+ retrievalParams: params.data.retrievalParams
189
+ }
190
+ });
191
+ if (updated) return updated;
163
192
  }
164
- }).returning();
165
- return result;
193
+ }
194
+ throw error;
166
195
  }
167
- return await createCredentialReference(db)(params.data);
168
196
  };
169
197
 
170
198
  //#endregion
@@ -66,10 +66,10 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
66
66
  dataComponentId: string;
67
67
  }) => Promise<{
68
68
  id: string;
69
- tenantId: string;
70
- projectId: string;
71
- agentId: string;
72
69
  createdAt: string;
70
+ agentId: string;
71
+ projectId: string;
72
+ tenantId: string;
73
73
  subAgentId: string;
74
74
  dataComponentId: string;
75
75
  }>;
@@ -108,10 +108,10 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
108
108
  dataComponentId: string;
109
109
  }) => Promise<{
110
110
  id: string;
111
- tenantId: string;
112
- projectId: string;
113
- agentId: string;
114
111
  createdAt: string;
112
+ agentId: string;
113
+ projectId: string;
114
+ tenantId: string;
115
115
  subAgentId: string;
116
116
  dataComponentId: string;
117
117
  } | null>;
@@ -54,13 +54,13 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
54
54
  scopes: AgentScopeConfig;
55
55
  }) => Promise<{
56
56
  id: string;
57
- name: string;
58
- description: string | null;
59
- tenantId: string;
60
- projectId: string;
61
- agentId: string;
62
57
  createdAt: string;
58
+ name: string;
63
59
  updatedAt: string;
60
+ agentId: string;
61
+ projectId: string;
62
+ tenantId: string;
63
+ description: string | null;
64
64
  functionId: string;
65
65
  }>;
66
66
  /**
@@ -96,13 +96,13 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
96
96
  scopes: AgentScopeConfig;
97
97
  }) => Promise<{
98
98
  id: string;
99
- name: string;
100
- description: string | null;
101
- tenantId: string;
102
- projectId: string;
103
- agentId: string;
104
99
  createdAt: string;
100
+ name: string;
105
101
  updatedAt: string;
102
+ agentId: string;
103
+ projectId: string;
104
+ tenantId: string;
105
+ description: string | null;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -162,11 +162,11 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
162
162
  }> | null;
163
163
  }) => Promise<{
164
164
  id: string;
165
- tenantId: string;
166
- projectId: string;
167
- agentId: string;
168
165
  createdAt: string;
169
166
  updatedAt: string;
167
+ agentId: string;
168
+ projectId: string;
169
+ tenantId: string;
170
170
  toolPolicies: Record<string, {
171
171
  needsApproval?: boolean;
172
172
  }> | null;
@@ -227,11 +227,11 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
227
227
  }> | null;
228
228
  }) => Promise<{
229
229
  id: string;
230
- tenantId: string;
231
- projectId: string;
232
- agentId: string;
233
230
  createdAt: string;
234
231
  updatedAt: string;
232
+ agentId: string;
233
+ projectId: string;
234
+ tenantId: string;
235
235
  toolPolicies: Record<string, {
236
236
  needsApproval?: boolean;
237
237
  }> | null;
@@ -9,12 +9,12 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  skillId: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
- name: string;
13
- description: string;
14
- tenantId: string;
15
- projectId: string;
16
12
  createdAt: string;
13
+ name: string;
17
14
  updatedAt: string;
15
+ projectId: string;
16
+ tenantId: string;
17
+ description: string;
18
18
  metadata: Record<string, string> | null;
19
19
  content: string;
20
20
  } | null>;
@@ -42,23 +42,23 @@ declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
42
42
  }>;
43
43
  declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
44
44
  id: string;
45
- name: string;
46
- description: string;
47
- tenantId: string;
48
- projectId: string;
49
45
  createdAt: string;
46
+ name: string;
50
47
  updatedAt: string;
48
+ projectId: string;
49
+ tenantId: string;
50
+ description: string;
51
51
  metadata: Record<string, string> | null;
52
52
  content: string;
53
53
  }>;
54
54
  declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
55
55
  id: string;
56
- name: string;
57
- description: string;
58
- tenantId: string;
59
- projectId: string;
60
56
  createdAt: string;
57
+ name: string;
61
58
  updatedAt: string;
59
+ projectId: string;
60
+ tenantId: string;
61
+ description: string;
62
62
  metadata: Record<string, string> | null;
63
63
  content: string;
64
64
  }>;
@@ -92,11 +92,11 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
92
92
  alwaysLoaded?: boolean;
93
93
  }) => Promise<{
94
94
  id: string;
95
- tenantId: string;
96
- projectId: string;
97
- agentId: string;
98
95
  createdAt: string;
99
96
  updatedAt: string;
97
+ agentId: string;
98
+ projectId: string;
99
+ tenantId: string;
100
100
  index: number;
101
101
  alwaysLoaded: boolean;
102
102
  subAgentId: string;
@@ -10,11 +10,11 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
10
10
  relationId: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- tenantId: string;
14
- projectId: string;
15
- agentId: string;
16
13
  createdAt: string;
17
14
  updatedAt: string;
15
+ agentId: string;
16
+ projectId: string;
17
+ tenantId: string;
18
18
  headers: Record<string, string> | null;
19
19
  externalAgentId: string;
20
20
  subAgentId: string;
@@ -45,11 +45,11 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
47
  id: string;
48
- tenantId: string;
49
- projectId: string;
50
- agentId: string;
51
48
  createdAt: string;
52
49
  updatedAt: string;
50
+ agentId: string;
51
+ projectId: string;
52
+ tenantId: string;
53
53
  headers: Record<string, string> | null;
54
54
  externalAgentId: string;
55
55
  subAgentId: string;
@@ -58,11 +58,11 @@ declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabas
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
60
  id: string;
61
- tenantId: string;
62
- projectId: string;
63
- agentId: string;
64
61
  createdAt: string;
65
62
  updatedAt: string;
63
+ agentId: string;
64
+ projectId: string;
65
+ tenantId: string;
66
66
  headers: Record<string, string> | null;
67
67
  externalAgentId: string;
68
68
  subAgentId: string;
@@ -181,11 +181,11 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
181
181
  };
182
182
  }) => Promise<{
183
183
  id: string;
184
- tenantId: string;
185
- projectId: string;
186
- agentId: string;
187
184
  createdAt: string;
188
185
  updatedAt: string;
186
+ agentId: string;
187
+ projectId: string;
188
+ tenantId: string;
189
189
  headers: Record<string, string> | null;
190
190
  externalAgentId: string;
191
191
  subAgentId: string;
@@ -198,11 +198,11 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
198
198
  externalAgentId: string;
199
199
  }) => Promise<{
200
200
  id: string;
201
- tenantId: string;
202
- projectId: string;
203
- agentId: string;
204
201
  createdAt: string;
205
202
  updatedAt: string;
203
+ agentId: string;
204
+ projectId: string;
205
+ tenantId: string;
206
206
  headers: Record<string, string> | null;
207
207
  externalAgentId: string;
208
208
  subAgentId: string;
@@ -219,11 +219,11 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
219
219
  };
220
220
  }) => Promise<{
221
221
  id: string;
222
- tenantId: string;
223
- projectId: string;
224
- agentId: string;
225
222
  createdAt: string;
226
223
  updatedAt: string;
224
+ agentId: string;
225
+ projectId: string;
226
+ tenantId: string;
227
227
  headers: Record<string, string> | null;
228
228
  externalAgentId: string;
229
229
  subAgentId: string;
@@ -10,14 +10,14 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
10
10
  relationId: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- tenantId: string;
14
- projectId: string;
15
- agentId: string;
16
13
  createdAt: string;
17
14
  updatedAt: string;
15
+ agentId: string;
16
+ projectId: string;
17
+ tenantId: string;
18
+ relationType: string | null;
18
19
  sourceSubAgentId: string;
19
20
  targetSubAgentId: string | null;
20
- relationType: string | null;
21
21
  } | undefined>;
22
22
  declare const listAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
23
23
  scopes: AgentScopeConfig;
@@ -45,27 +45,27 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
47
  id: string;
48
- tenantId: string;
49
- projectId: string;
50
- agentId: string;
51
48
  createdAt: string;
52
49
  updatedAt: string;
50
+ agentId: string;
51
+ projectId: string;
52
+ tenantId: string;
53
+ relationType: string | null;
53
54
  sourceSubAgentId: string;
54
55
  targetSubAgentId: string | null;
55
- relationType: string | null;
56
56
  }[]>;
57
57
  declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
60
  id: string;
61
- tenantId: string;
62
- projectId: string;
63
- agentId: string;
64
61
  createdAt: string;
65
62
  updatedAt: string;
63
+ agentId: string;
64
+ projectId: string;
65
+ tenantId: string;
66
+ relationType: string | null;
66
67
  sourceSubAgentId: string;
67
68
  targetSubAgentId: string | null;
68
- relationType: string | null;
69
69
  }[]>;
70
70
  declare const getAgentRelationsBySource: (db: AgentsManageDatabaseClient) => (params: {
71
71
  scopes: AgentScopeConfig;
@@ -127,14 +127,14 @@ declare const getRelatedAgentsForAgent: (db: AgentsManageDatabaseClient) => (par
127
127
  }>;
128
128
  declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
129
129
  id: string;
130
- tenantId: string;
131
- projectId: string;
132
- agentId: string;
133
130
  createdAt: string;
134
131
  updatedAt: string;
132
+ agentId: string;
133
+ projectId: string;
134
+ tenantId: string;
135
+ relationType: string | null;
135
136
  sourceSubAgentId: string;
136
137
  targetSubAgentId: string | null;
137
- relationType: string | null;
138
138
  }>;
139
139
  /**
140
140
  * Check if sub-agent relation exists by agent, source, target, and relation type
@@ -146,28 +146,28 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
146
146
  relationType: string;
147
147
  }) => Promise<{
148
148
  id: string;
149
- tenantId: string;
150
- projectId: string;
151
- agentId: string;
152
149
  createdAt: string;
153
150
  updatedAt: string;
151
+ agentId: string;
152
+ projectId: string;
153
+ tenantId: string;
154
+ relationType: string | null;
154
155
  sourceSubAgentId: string;
155
156
  targetSubAgentId: string | null;
156
- relationType: string | null;
157
157
  } | undefined>;
158
158
  /**
159
159
  * Upsert agent relation (create if it doesn't exist, no-op if it does)
160
160
  */
161
161
  declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
162
162
  id: string;
163
- tenantId: string;
164
- projectId: string;
165
- agentId: string;
166
163
  createdAt: string;
167
164
  updatedAt: string;
165
+ agentId: string;
166
+ projectId: string;
167
+ tenantId: string;
168
+ relationType: string | null;
168
169
  sourceSubAgentId: string;
169
170
  targetSubAgentId: string | null;
170
- relationType: string | null;
171
171
  }>;
172
172
  declare const updateAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
173
173
  scopes: AgentScopeConfig;
@@ -205,13 +205,13 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
205
205
  };
206
206
  }) => Promise<{
207
207
  id: string;
208
- tenantId: string;
209
- projectId: string;
210
- agentId: string;
211
208
  createdAt: string;
212
209
  updatedAt: string;
213
- toolId: string;
210
+ agentId: string;
211
+ projectId: string;
212
+ tenantId: string;
214
213
  headers: Record<string, string> | null;
214
+ toolId: string;
215
215
  toolPolicies: Record<string, {
216
216
  needsApproval?: boolean;
217
217
  }> | null;
@@ -249,13 +249,13 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
249
249
  relationId: string;
250
250
  }) => Promise<{
251
251
  id: string;
252
- tenantId: string;
253
- projectId: string;
254
- agentId: string;
255
252
  createdAt: string;
256
253
  updatedAt: string;
257
- toolId: string;
254
+ agentId: string;
255
+ projectId: string;
256
+ tenantId: string;
258
257
  headers: Record<string, string> | null;
258
+ toolId: string;
259
259
  toolPolicies: Record<string, {
260
260
  needsApproval?: boolean;
261
261
  }> | null;
@@ -10,11 +10,11 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
10
10
  relationId: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- tenantId: string;
14
- projectId: string;
15
- agentId: string;
16
13
  createdAt: string;
17
14
  updatedAt: string;
15
+ agentId: string;
16
+ projectId: string;
17
+ tenantId: string;
18
18
  headers: Record<string, string> | null;
19
19
  subAgentId: string;
20
20
  targetAgentId: string;
@@ -45,11 +45,11 @@ declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =>
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
47
  id: string;
48
- tenantId: string;
49
- projectId: string;
50
- agentId: string;
51
48
  createdAt: string;
52
49
  updatedAt: string;
50
+ agentId: string;
51
+ projectId: string;
52
+ tenantId: string;
53
53
  headers: Record<string, string> | null;
54
54
  subAgentId: string;
55
55
  targetAgentId: string;
@@ -58,11 +58,11 @@ declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseCli
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
60
  id: string;
61
- tenantId: string;
62
- projectId: string;
63
- agentId: string;
64
61
  createdAt: string;
65
62
  updatedAt: string;
63
+ agentId: string;
64
+ projectId: string;
65
+ tenantId: string;
66
66
  headers: Record<string, string> | null;
67
67
  subAgentId: string;
68
68
  targetAgentId: string;
@@ -211,11 +211,11 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
211
211
  };
212
212
  }) => Promise<{
213
213
  id: string;
214
- tenantId: string;
215
- projectId: string;
216
- agentId: string;
217
214
  createdAt: string;
218
215
  updatedAt: string;
216
+ agentId: string;
217
+ projectId: string;
218
+ tenantId: string;
219
219
  headers: Record<string, string> | null;
220
220
  subAgentId: string;
221
221
  targetAgentId: string;
@@ -228,11 +228,11 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
228
228
  targetAgentId: string;
229
229
  }) => Promise<{
230
230
  id: string;
231
- tenantId: string;
232
- projectId: string;
233
- agentId: string;
234
231
  createdAt: string;
235
232
  updatedAt: string;
233
+ agentId: string;
234
+ projectId: string;
235
+ tenantId: string;
236
236
  headers: Record<string, string> | null;
237
237
  subAgentId: string;
238
238
  targetAgentId: string;
@@ -249,11 +249,11 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
249
249
  };
250
250
  }) => Promise<{
251
251
  id: string;
252
- tenantId: string;
253
- projectId: string;
254
- agentId: string;
255
252
  createdAt: string;
256
253
  updatedAt: string;
254
+ agentId: string;
255
+ projectId: string;
256
+ tenantId: string;
257
257
  headers: Record<string, string> | null;
258
258
  subAgentId: string;
259
259
  targetAgentId: string;