@inkeep/agents-core 0.0.0-dev-20260219040736 → 0.0.0-dev-20260219045007

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.
Files changed (30) hide show
  1. package/dist/auth/auth-schema.d.ts +83 -83
  2. package/dist/auth/auth-validation-schemas.d.ts +131 -131
  3. package/dist/client-exports.d.ts +3 -3
  4. package/dist/data-access/manage/agents.d.ts +21 -21
  5. package/dist/data-access/manage/artifactComponents.d.ts +8 -8
  6. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  7. package/dist/data-access/manage/dataComponents.d.ts +4 -4
  8. package/dist/data-access/manage/functionTools.d.ts +12 -12
  9. package/dist/data-access/manage/skills.d.ts +13 -13
  10. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  11. package/dist/data-access/manage/subAgentRelations.d.ts +20 -20
  12. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  13. package/dist/data-access/manage/subAgents.d.ts +15 -15
  14. package/dist/data-access/manage/tools.d.ts +21 -21
  15. package/dist/data-access/runtime/apiKeys.d.ts +12 -12
  16. package/dist/data-access/runtime/conversations.d.ts +20 -20
  17. package/dist/data-access/runtime/messages.d.ts +9 -9
  18. package/dist/data-access/runtime/tasks.d.ts +4 -4
  19. package/dist/middleware/authz-meta.d.ts +15 -0
  20. package/dist/middleware/authz-meta.js +11 -0
  21. package/dist/middleware/create-protected-route.d.ts +30 -0
  22. package/dist/middleware/create-protected-route.js +20 -0
  23. package/dist/middleware/index.d.ts +5 -0
  24. package/dist/middleware/index.js +6 -0
  25. package/dist/middleware/inherited-auth.d.ts +43 -0
  26. package/dist/middleware/inherited-auth.js +50 -0
  27. package/dist/middleware/no-auth.d.ts +6 -0
  28. package/dist/middleware/no-auth.js +11 -0
  29. package/dist/validation/schemas.d.ts +1498 -1498
  30. package/package.json +5 -1
@@ -19,8 +19,9 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
19
19
  subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
20
20
  id: z.ZodString;
21
21
  name: z.ZodString;
22
+ createdAt: z.ZodOptional<z.ZodString>;
23
+ updatedAt: z.ZodOptional<z.ZodString>;
22
24
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
- conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
24
25
  models: z.ZodOptional<z.ZodObject<{
25
26
  base: z.ZodOptional<z.ZodObject<{
26
27
  model: z.ZodOptional<z.ZodString>;
@@ -44,8 +45,7 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
44
45
  }, {
45
46
  stepCountIs?: number | undefined;
46
47
  }>>>>;
47
- createdAt: z.ZodOptional<z.ZodString>;
48
- updatedAt: z.ZodOptional<z.ZodString>;
48
+ conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
49
49
  type: z.ZodLiteral<"internal">;
50
50
  canUse: z.ZodArray<z.ZodObject<{
51
51
  agentToolRelationId: z.ZodOptional<z.ZodString>;
@@ -10,11 +10,11 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
10
10
  }) => Promise<{
11
11
  id: string;
12
12
  name: string;
13
+ createdAt: string;
14
+ updatedAt: string;
13
15
  description: string | null;
14
- defaultSubAgentId: string | null;
15
16
  tenantId: string;
16
17
  projectId: string;
17
- prompt: string | null;
18
18
  models: {
19
19
  base?: {
20
20
  model?: string | undefined;
@@ -32,8 +32,8 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
32
32
  stopWhen: {
33
33
  transferCountIs?: number | undefined;
34
34
  } | null;
35
- createdAt: string;
36
- updatedAt: string;
35
+ prompt: string | null;
36
+ defaultSubAgentId: string | null;
37
37
  contextConfigId: string | null;
38
38
  statusUpdates: {
39
39
  enabled?: boolean | undefined;
@@ -56,11 +56,11 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
56
56
  }) => Promise<{
57
57
  id: string;
58
58
  name: string;
59
+ createdAt: string;
60
+ updatedAt: string;
59
61
  description: string | null;
60
- defaultSubAgentId: string | null;
61
62
  tenantId: string;
62
63
  projectId: string;
63
- prompt: string | null;
64
64
  models: {
65
65
  base?: {
66
66
  model?: string | undefined;
@@ -78,8 +78,8 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
78
78
  stopWhen: {
79
79
  transferCountIs?: number | undefined;
80
80
  } | null;
81
- createdAt: string;
82
- updatedAt: string;
81
+ prompt: string | null;
82
+ defaultSubAgentId: string | null;
83
83
  contextConfigId: string | null;
84
84
  statusUpdates: {
85
85
  enabled?: boolean | undefined;
@@ -99,12 +99,11 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
99
99
  defaultSubAgent: {
100
100
  id: string;
101
101
  name: string;
102
+ createdAt: string;
103
+ updatedAt: string;
102
104
  description: string | null;
103
105
  tenantId: string;
104
106
  projectId: string;
105
- agentId: string;
106
- prompt: string | null;
107
- conversationHistoryConfig: ConversationHistoryConfig | null;
108
107
  models: {
109
108
  base?: {
110
109
  model?: string | undefined;
@@ -122,8 +121,9 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
122
121
  stopWhen: {
123
122
  stepCountIs?: number | undefined;
124
123
  } | null;
125
- createdAt: string;
126
- updatedAt: string;
124
+ prompt: string | null;
125
+ conversationHistoryConfig: ConversationHistoryConfig | null;
126
+ agentId: string;
127
127
  } | null;
128
128
  } | null>;
129
129
  declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
@@ -131,11 +131,11 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
131
131
  }) => Promise<{
132
132
  id: string;
133
133
  name: string;
134
+ createdAt: string;
135
+ updatedAt: string;
134
136
  description: string | null;
135
- defaultSubAgentId: string | null;
136
137
  tenantId: string;
137
138
  projectId: string;
138
- prompt: string | null;
139
139
  models: {
140
140
  base?: {
141
141
  model?: string | undefined;
@@ -153,8 +153,8 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
153
153
  stopWhen: {
154
154
  transferCountIs?: number | undefined;
155
155
  } | null;
156
- createdAt: string;
157
- updatedAt: string;
156
+ prompt: string | null;
157
+ defaultSubAgentId: string | null;
158
158
  contextConfigId: string | null;
159
159
  statusUpdates: {
160
160
  enabled?: boolean | undefined;
@@ -247,11 +247,11 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
247
247
  declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
248
248
  id: string;
249
249
  name: string;
250
+ createdAt: string;
251
+ updatedAt: string;
250
252
  description: string | null;
251
- defaultSubAgentId: string | null;
252
253
  tenantId: string;
253
254
  projectId: string;
254
- prompt: string | null;
255
255
  models: {
256
256
  base?: {
257
257
  model?: string | undefined;
@@ -269,8 +269,8 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
269
269
  stopWhen: {
270
270
  transferCountIs?: number | undefined;
271
271
  } | null;
272
- createdAt: string;
273
- updatedAt: string;
272
+ prompt: string | null;
273
+ defaultSubAgentId: string | null;
274
274
  contextConfigId: string | null;
275
275
  statusUpdates: {
276
276
  enabled?: boolean | undefined;
@@ -10,11 +10,11 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
10
10
  }) => Promise<{
11
11
  id: string;
12
12
  name: string;
13
+ createdAt: string;
14
+ updatedAt: string;
13
15
  description: string | null;
14
16
  tenantId: string;
15
17
  projectId: string;
16
- createdAt: string;
17
- updatedAt: string;
18
18
  props: {
19
19
  [x: string]: unknown;
20
20
  type: "object";
@@ -66,11 +66,11 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
66
66
  declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
67
67
  id: string;
68
68
  name: string;
69
+ createdAt: string;
70
+ updatedAt: string;
69
71
  description: string | null;
70
72
  tenantId: string;
71
73
  projectId: string;
72
- createdAt: string;
73
- updatedAt: string;
74
74
  props: {
75
75
  [x: string]: unknown;
76
76
  type: "object";
@@ -141,11 +141,11 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
141
141
  artifactComponentId: string;
142
142
  }) => Promise<{
143
143
  id: string;
144
+ createdAt: string;
144
145
  tenantId: string;
145
146
  projectId: string;
146
- agentId: string;
147
- createdAt: string;
148
147
  subAgentId: string;
148
+ agentId: string;
149
149
  artifactComponentId: string;
150
150
  }>;
151
151
  declare const removeArtifactComponentFromAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -184,11 +184,11 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
184
184
  artifactComponentId: string;
185
185
  }) => Promise<{
186
186
  id: string;
187
+ createdAt: string;
187
188
  tenantId: string;
188
189
  projectId: string;
189
- agentId: string;
190
- createdAt: string;
191
190
  subAgentId: string;
191
+ agentId: string;
192
192
  artifactComponentId: string;
193
193
  } | null>;
194
194
  /**
@@ -9,11 +9,11 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
9
9
  id: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
+ createdAt: string;
13
+ updatedAt: string;
12
14
  tenantId: string;
13
15
  projectId: string;
14
16
  agentId: string;
15
- createdAt: string;
16
- updatedAt: string;
17
17
  headersSchema: unknown;
18
18
  contextVariables: Record<string, ContextFetchDefinition> | null;
19
19
  } | undefined>;
@@ -21,11 +21,11 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
21
21
  scopes: AgentScopeConfig;
22
22
  }) => Promise<{
23
23
  id: string;
24
+ createdAt: string;
25
+ updatedAt: string;
24
26
  tenantId: string;
25
27
  projectId: string;
26
28
  agentId: string;
27
- createdAt: string;
28
- updatedAt: string;
29
29
  headersSchema: unknown;
30
30
  contextVariables: Record<string, ContextFetchDefinition> | null;
31
31
  }[]>;
@@ -43,11 +43,11 @@ 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;
46
48
  tenantId: string;
47
49
  projectId: string;
48
50
  agentId: string;
49
- createdAt: string;
50
- updatedAt: string;
51
51
  headersSchema: unknown;
52
52
  contextVariables: Record<string, ContextFetchDefinition> | null;
53
53
  }>;
@@ -83,11 +83,11 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
83
83
  data: ContextConfigInsert;
84
84
  }) => Promise<{
85
85
  id: string;
86
+ createdAt: string;
87
+ updatedAt: string;
86
88
  tenantId: string;
87
89
  projectId: string;
88
90
  agentId: string;
89
- createdAt: string;
90
- updatedAt: string;
91
91
  headersSchema: unknown;
92
92
  contextVariables: Record<string, ContextFetchDefinition> | null;
93
93
  }>;
@@ -65,11 +65,11 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
65
65
  dataComponentId: string;
66
66
  }) => Promise<{
67
67
  id: string;
68
+ createdAt: string;
68
69
  tenantId: string;
69
70
  projectId: string;
70
- agentId: string;
71
- createdAt: string;
72
71
  subAgentId: string;
72
+ agentId: string;
73
73
  dataComponentId: string;
74
74
  }>;
75
75
  /**
@@ -107,11 +107,11 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
107
107
  dataComponentId: string;
108
108
  }) => Promise<{
109
109
  id: string;
110
+ createdAt: string;
110
111
  tenantId: string;
111
112
  projectId: string;
112
- agentId: string;
113
- createdAt: string;
114
113
  subAgentId: string;
114
+ agentId: string;
115
115
  dataComponentId: string;
116
116
  } | null>;
117
117
  /**
@@ -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;
58
60
  description: string | null;
59
61
  tenantId: string;
60
62
  projectId: string;
61
63
  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;
100
102
  description: string | null;
101
103
  tenantId: string;
102
104
  projectId: string;
103
105
  agentId: string;
104
- createdAt: string;
105
- updatedAt: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -162,16 +162,16 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
162
162
  }> | null;
163
163
  }) => Promise<{
164
164
  id: string;
165
+ createdAt: string;
166
+ updatedAt: string;
165
167
  tenantId: string;
166
168
  projectId: string;
169
+ subAgentId: string;
167
170
  agentId: string;
168
- createdAt: string;
169
- updatedAt: string;
171
+ functionToolId: string;
170
172
  toolPolicies: Record<string, {
171
173
  needsApproval?: boolean;
172
174
  }> | null;
173
- subAgentId: string;
174
- functionToolId: string;
175
175
  }>;
176
176
  /**
177
177
  * Update an agent-function tool relation
@@ -227,16 +227,16 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
227
227
  }> | null;
228
228
  }) => Promise<{
229
229
  id: string;
230
+ createdAt: string;
231
+ updatedAt: string;
230
232
  tenantId: string;
231
233
  projectId: string;
234
+ subAgentId: string;
232
235
  agentId: string;
233
- createdAt: string;
234
- updatedAt: string;
236
+ functionToolId: string;
235
237
  toolPolicies: Record<string, {
236
238
  needsApproval?: boolean;
237
239
  }> | null;
238
- subAgentId: string;
239
- functionToolId: string;
240
240
  }>;
241
241
  //#endregion
242
242
  export { addFunctionToolToSubAgent, associateFunctionToolWithSubAgent, createFunctionTool, deleteFunctionTool, getFunctionToolById, getFunctionToolsForSubAgent, getSubAgentsUsingFunctionTool, isFunctionToolAssociatedWithSubAgent, listFunctionTools, removeFunctionToolFromSubAgent, updateFunctionTool, updateSubAgentFunctionToolRelation, upsertFunctionTool, upsertSubAgentFunctionToolRelation };
@@ -9,13 +9,13 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
9
9
  }) => Promise<{
10
10
  id: string;
11
11
  name: string;
12
- description: string;
13
- tenantId: string;
14
- projectId: string;
15
12
  createdAt: string;
16
13
  updatedAt: string;
17
14
  metadata: Record<string, string> | null;
15
+ description: string;
18
16
  content: string;
17
+ tenantId: string;
18
+ projectId: string;
19
19
  } | null>;
20
20
  declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
21
21
  scopes: ProjectScopeConfig;
@@ -42,24 +42,24 @@ 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
- description: string;
46
- tenantId: string;
47
- projectId: string;
48
45
  createdAt: string;
49
46
  updatedAt: string;
50
47
  metadata: Record<string, string> | null;
48
+ description: string;
51
49
  content: string;
50
+ tenantId: string;
51
+ projectId: string;
52
52
  }>;
53
53
  declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
54
54
  id: string;
55
55
  name: string;
56
- description: string;
57
- tenantId: string;
58
- projectId: string;
59
56
  createdAt: string;
60
57
  updatedAt: string;
61
58
  metadata: Record<string, string> | null;
59
+ description: string;
62
60
  content: string;
61
+ tenantId: string;
62
+ projectId: string;
63
63
  }>;
64
64
  declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
65
65
  scopes: ProjectScopeConfig;
@@ -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;
94
96
  tenantId: string;
95
97
  projectId: string;
98
+ subAgentId: string;
96
99
  agentId: string;
97
- createdAt: string;
98
- updatedAt: string;
100
+ skillId: string;
99
101
  index: number;
100
102
  alwaysLoaded: boolean;
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
- tenantId: string;
13
- projectId: string;
14
- agentId: string;
15
12
  createdAt: string;
16
13
  updatedAt: string;
17
14
  headers: Record<string, string> | null;
18
- externalAgentId: string;
15
+ tenantId: string;
16
+ projectId: string;
19
17
  subAgentId: string;
18
+ agentId: string;
19
+ externalAgentId: 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
- tenantId: string;
48
- projectId: string;
49
- agentId: string;
50
47
  createdAt: string;
51
48
  updatedAt: string;
52
49
  headers: Record<string, string> | null;
53
- externalAgentId: string;
50
+ tenantId: string;
51
+ projectId: string;
54
52
  subAgentId: string;
53
+ agentId: string;
54
+ externalAgentId: string;
55
55
  }[]>;
56
56
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
59
  id: string;
60
- tenantId: string;
61
- projectId: string;
62
- agentId: string;
63
60
  createdAt: string;
64
61
  updatedAt: string;
65
62
  headers: Record<string, string> | null;
66
- externalAgentId: string;
63
+ tenantId: string;
64
+ projectId: string;
67
65
  subAgentId: string;
66
+ agentId: string;
67
+ externalAgentId: 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
- tenantId: string;
184
- projectId: string;
185
- agentId: string;
186
183
  createdAt: string;
187
184
  updatedAt: string;
188
185
  headers: Record<string, string> | null;
189
- externalAgentId: string;
186
+ tenantId: string;
187
+ projectId: string;
190
188
  subAgentId: string;
189
+ agentId: string;
190
+ externalAgentId: 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
- tenantId: string;
201
- projectId: string;
202
- agentId: string;
203
200
  createdAt: string;
204
201
  updatedAt: string;
205
202
  headers: Record<string, string> | null;
206
- externalAgentId: string;
203
+ tenantId: string;
204
+ projectId: string;
207
205
  subAgentId: string;
206
+ agentId: string;
207
+ externalAgentId: 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
- tenantId: string;
222
- projectId: string;
223
- agentId: string;
224
221
  createdAt: string;
225
222
  updatedAt: string;
226
223
  headers: Record<string, string> | null;
227
- externalAgentId: string;
224
+ tenantId: string;
225
+ projectId: string;
228
226
  subAgentId: string;
227
+ agentId: string;
228
+ externalAgentId: string;
229
229
  }>;
230
230
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
231
231
  scopes: SubAgentScopeConfig;
@@ -9,11 +9,11 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
9
9
  relationId: string;
10
10
  }) => Promise<{
11
11
  id: string;
12
+ createdAt: string;
13
+ updatedAt: string;
12
14
  tenantId: string;
13
15
  projectId: string;
14
16
  agentId: string;
15
- createdAt: string;
16
- updatedAt: string;
17
17
  sourceSubAgentId: string;
18
18
  targetSubAgentId: string | null;
19
19
  relationType: string | null;
@@ -44,11 +44,11 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
44
44
  scopes: SubAgentScopeConfig;
45
45
  }) => Promise<{
46
46
  id: string;
47
+ createdAt: string;
48
+ updatedAt: string;
47
49
  tenantId: string;
48
50
  projectId: string;
49
51
  agentId: string;
50
- createdAt: string;
51
- updatedAt: string;
52
52
  sourceSubAgentId: string;
53
53
  targetSubAgentId: string | null;
54
54
  relationType: string | null;
@@ -57,11 +57,11 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
57
57
  scopes: AgentScopeConfig;
58
58
  }) => Promise<{
59
59
  id: string;
60
+ createdAt: string;
61
+ updatedAt: string;
60
62
  tenantId: string;
61
63
  projectId: string;
62
64
  agentId: string;
63
- createdAt: string;
64
- updatedAt: string;
65
65
  sourceSubAgentId: string;
66
66
  targetSubAgentId: string | null;
67
67
  relationType: string | null;
@@ -126,11 +126,11 @@ 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;
129
131
  tenantId: string;
130
132
  projectId: string;
131
133
  agentId: string;
132
- createdAt: string;
133
- updatedAt: string;
134
134
  sourceSubAgentId: string;
135
135
  targetSubAgentId: string | null;
136
136
  relationType: string | null;
@@ -145,11 +145,11 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
145
145
  relationType: string;
146
146
  }) => Promise<{
147
147
  id: string;
148
+ createdAt: string;
149
+ updatedAt: string;
148
150
  tenantId: string;
149
151
  projectId: string;
150
152
  agentId: string;
151
- createdAt: string;
152
- updatedAt: string;
153
153
  sourceSubAgentId: string;
154
154
  targetSubAgentId: string | null;
155
155
  relationType: string | null;
@@ -159,11 +159,11 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
159
159
  */
160
160
  declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
161
161
  id: string;
162
+ createdAt: string;
163
+ updatedAt: string;
162
164
  tenantId: string;
163
165
  projectId: string;
164
166
  agentId: string;
165
- createdAt: string;
166
- updatedAt: string;
167
167
  sourceSubAgentId: string;
168
168
  targetSubAgentId: string | null;
169
169
  relationType: string | null;
@@ -204,17 +204,17 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
204
204
  };
205
205
  }) => Promise<{
206
206
  id: string;
207
+ createdAt: string;
208
+ updatedAt: string;
209
+ headers: Record<string, string> | null;
207
210
  tenantId: string;
208
211
  projectId: string;
212
+ subAgentId: string;
209
213
  agentId: string;
210
- createdAt: string;
211
- updatedAt: string;
212
214
  toolId: string;
213
- headers: Record<string, string> | null;
214
215
  toolPolicies: Record<string, {
215
216
  needsApproval?: boolean;
216
217
  }> | null;
217
- subAgentId: string;
218
218
  selectedTools: string[] | null;
219
219
  }>;
220
220
  declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
@@ -248,17 +248,17 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
248
248
  relationId: string;
249
249
  }) => Promise<{
250
250
  id: string;
251
+ createdAt: string;
252
+ updatedAt: string;
253
+ headers: Record<string, string> | null;
251
254
  tenantId: string;
252
255
  projectId: string;
256
+ subAgentId: string;
253
257
  agentId: string;
254
- createdAt: string;
255
- updatedAt: string;
256
258
  toolId: string;
257
- headers: Record<string, string> | null;
258
259
  toolPolicies: Record<string, {
259
260
  needsApproval?: boolean;
260
261
  }> | null;
261
- subAgentId: string;
262
262
  selectedTools: string[] | null;
263
263
  } | undefined>;
264
264
  declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {