@inkeep/agents-core 0.65.1 → 0.65.2

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 (40) hide show
  1. package/dist/auth/permissions.d.ts +9 -9
  2. package/dist/data-access/manage/agents.d.ts +30 -30
  3. package/dist/data-access/manage/artifactComponents.d.ts +12 -12
  4. package/dist/data-access/manage/contextConfigs.d.ts +8 -8
  5. package/dist/data-access/manage/dataComponents.d.ts +4 -4
  6. package/dist/data-access/manage/dataComponents.js +1 -1
  7. package/dist/data-access/manage/functionTools.d.ts +14 -14
  8. package/dist/data-access/manage/skills.d.ts +12 -12
  9. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +18 -18
  10. package/dist/data-access/manage/subAgentRelations.d.ts +18 -18
  11. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  12. package/dist/data-access/manage/subAgents.d.ts +18 -18
  13. package/dist/data-access/manage/tools.d.ts +21 -21
  14. package/dist/data-access/manage/triggers.d.ts +2 -2
  15. package/dist/data-access/runtime/apiKeys.d.ts +16 -16
  16. package/dist/data-access/runtime/apps.d.ts +16 -16
  17. package/dist/data-access/runtime/conversations.d.ts +20 -20
  18. package/dist/data-access/runtime/feedback.d.ts +8 -8
  19. package/dist/data-access/runtime/messages.d.ts +18 -18
  20. package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
  21. package/dist/data-access/runtime/tasks.d.ts +5 -5
  22. package/dist/db/manage/manage-client.js +15 -3
  23. package/dist/db/manage/manage-schema.d.ts +449 -449
  24. package/dist/db/runtime/runtime-client.js +7 -1
  25. package/dist/db/runtime/runtime-schema.d.ts +405 -405
  26. package/dist/dolt/merge.js +7 -9
  27. package/dist/dolt/ref-scope.js +9 -3
  28. package/dist/index.d.ts +3 -3
  29. package/dist/index.js +3 -3
  30. package/dist/utils/error.d.ts +58 -52
  31. package/dist/utils/error.js +63 -21
  32. package/dist/utils/index.d.ts +3 -3
  33. package/dist/utils/index.js +3 -3
  34. package/dist/utils/logger.d.ts +21 -2
  35. package/dist/utils/logger.js +67 -11
  36. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  37. package/dist/validation/schemas/skills.d.ts +49 -49
  38. package/dist/validation/schemas.d.ts +803 -803
  39. package/drizzle/runtime/meta/_journal.json +2 -2
  40. package/package.json +1 -1
@@ -5,25 +5,25 @@ import { organizationClient } from "better-auth/client/plugins";
5
5
  //#region src/auth/permissions.d.ts
6
6
  declare const ac: AccessControl;
7
7
  declare const memberRole: {
8
- authorize<K_1 extends "organization" | "project" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
9
- actions: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
8
+ authorize<K_1 extends "project" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
9
+ actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
10
10
  connector: "OR" | "AND";
11
11
  } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins4.AuthorizeResponse;
12
- statements: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
12
+ statements: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
13
13
  };
14
14
  declare const adminRole: {
15
- authorize<K_1 extends "organization" | "project" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
16
- actions: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
15
+ authorize<K_1 extends "project" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
16
+ actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
17
17
  connector: "OR" | "AND";
18
18
  } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins4.AuthorizeResponse;
19
- statements: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
19
+ statements: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
20
20
  };
21
21
  declare const ownerRole: {
22
- authorize<K_1 extends "organization" | "project" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
23
- actions: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
22
+ authorize<K_1 extends "project" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
23
+ actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
24
24
  connector: "OR" | "AND";
25
25
  } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins4.AuthorizeResponse;
26
- statements: better_auth_plugins4.Subset<"organization" | "project" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
26
+ statements: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
27
27
  };
28
28
  //#endregion
29
29
  export { ac, adminRole, memberRole, organizationClient, ownerRole };
@@ -10,11 +10,13 @@ import { PgColumn } from "drizzle-orm/pg-core";
10
10
  declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
11
11
  scopes: AgentScopeConfig;
12
12
  }) => Promise<{
13
- description: string | null;
14
- id: string;
15
13
  tenantId: string;
16
- createdAt: string;
14
+ projectId: string;
15
+ id: string;
17
16
  name: string;
17
+ createdAt: string;
18
+ updatedAt: string;
19
+ description: string | null;
18
20
  models: {
19
21
  base?: {
20
22
  model?: string | undefined;
@@ -38,11 +40,9 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
38
40
  stopWhen: {
39
41
  transferCountIs?: number | undefined;
40
42
  } | null;
41
- updatedAt: string;
42
- projectId: string;
43
+ prompt: string | null;
43
44
  defaultSubAgentId: string | null;
44
45
  contextConfigId: string | null;
45
- prompt: string | null;
46
46
  statusUpdates: {
47
47
  enabled?: boolean | undefined;
48
48
  numEvents?: number | undefined;
@@ -63,11 +63,13 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
63
63
  declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
64
64
  scopes: AgentScopeConfig;
65
65
  }) => Promise<{
66
- description: string | null;
67
- id: string;
68
66
  tenantId: string;
69
- createdAt: string;
67
+ projectId: string;
68
+ id: string;
70
69
  name: string;
70
+ createdAt: string;
71
+ updatedAt: string;
72
+ description: string | null;
71
73
  models: {
72
74
  base?: {
73
75
  model?: string | undefined;
@@ -91,11 +93,9 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
91
93
  stopWhen: {
92
94
  transferCountIs?: number | undefined;
93
95
  } | null;
94
- updatedAt: string;
95
- projectId: string;
96
+ prompt: string | null;
96
97
  defaultSubAgentId: string | null;
97
98
  contextConfigId: string | null;
98
- prompt: string | null;
99
99
  statusUpdates: {
100
100
  enabled?: boolean | undefined;
101
101
  numEvents?: number | undefined;
@@ -113,11 +113,13 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
113
113
  } | null;
114
114
  executionMode: "classic" | "durable";
115
115
  defaultSubAgent: {
116
- description: string | null;
117
- id: string;
118
116
  tenantId: string;
119
- createdAt: string;
117
+ projectId: string;
118
+ id: string;
120
119
  name: string;
120
+ createdAt: string;
121
+ updatedAt: string;
122
+ description: string | null;
121
123
  models: {
122
124
  base?: {
123
125
  model?: string | undefined;
@@ -141,21 +143,21 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
141
143
  stopWhen: {
142
144
  stepCountIs?: number | undefined;
143
145
  } | null;
144
- updatedAt: string;
145
- projectId: string;
146
- prompt: string | null;
147
146
  agentId: string;
147
+ prompt: string | null;
148
148
  conversationHistoryConfig: ConversationHistoryConfig | null;
149
149
  } | null;
150
150
  } | null>;
151
151
  declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
152
152
  scopes: ProjectScopeConfig;
153
153
  }) => Promise<{
154
- description: string | null;
155
- id: string;
156
154
  tenantId: string;
157
- createdAt: string;
155
+ projectId: string;
156
+ id: string;
158
157
  name: string;
158
+ createdAt: string;
159
+ updatedAt: string;
160
+ description: string | null;
159
161
  models: {
160
162
  base?: {
161
163
  model?: string | undefined;
@@ -179,11 +181,9 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
179
181
  stopWhen: {
180
182
  transferCountIs?: number | undefined;
181
183
  } | null;
182
- updatedAt: string;
183
- projectId: string;
184
+ prompt: string | null;
184
185
  defaultSubAgentId: string | null;
185
186
  contextConfigId: string | null;
186
- prompt: string | null;
187
187
  statusUpdates: {
188
188
  enabled?: boolean | undefined;
189
189
  numEvents?: number | undefined;
@@ -281,11 +281,13 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
281
281
  projectIds: string[];
282
282
  }): Promise<AvailableAgentInfo[]>;
283
283
  declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
284
- description: string | null;
285
- id: string;
286
284
  tenantId: string;
287
- createdAt: string;
285
+ projectId: string;
286
+ id: string;
288
287
  name: string;
288
+ createdAt: string;
289
+ updatedAt: string;
290
+ description: string | null;
289
291
  models: {
290
292
  base?: {
291
293
  model?: string | undefined;
@@ -309,11 +311,9 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
309
311
  stopWhen: {
310
312
  transferCountIs?: number | undefined;
311
313
  } | null;
312
- updatedAt: string;
313
- projectId: string;
314
+ prompt: string | null;
314
315
  defaultSubAgentId: string | null;
315
316
  contextConfigId: string | null;
316
- prompt: string | null;
317
317
  statusUpdates: {
318
318
  enabled?: boolean | undefined;
319
319
  numEvents?: number | undefined;
@@ -9,13 +9,13 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
9
9
  scopes: ProjectScopeConfig;
10
10
  id: string;
11
11
  }) => Promise<{
12
- description: string | null;
13
- id: string;
14
12
  tenantId: string;
15
- createdAt: string;
13
+ projectId: string;
14
+ id: string;
16
15
  name: string;
16
+ createdAt: string;
17
17
  updatedAt: string;
18
- projectId: string;
18
+ description: string | null;
19
19
  props: {
20
20
  [x: string]: unknown;
21
21
  type: "object";
@@ -65,13 +65,13 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
65
65
  };
66
66
  }>;
67
67
  declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
68
- description: string | null;
69
- id: string;
70
68
  tenantId: string;
71
- createdAt: string;
69
+ projectId: string;
70
+ id: string;
72
71
  name: string;
72
+ createdAt: string;
73
73
  updatedAt: string;
74
- projectId: string;
74
+ description: string | null;
75
75
  props: {
76
76
  [x: string]: unknown;
77
77
  type: "object";
@@ -141,10 +141,10 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
141
141
  scopes: SubAgentScopeConfig;
142
142
  artifactComponentId: string;
143
143
  }) => Promise<{
144
- id: string;
145
144
  tenantId: string;
146
- createdAt: string;
147
145
  projectId: string;
146
+ id: string;
147
+ createdAt: string;
148
148
  agentId: string;
149
149
  subAgentId: string;
150
150
  artifactComponentId: string;
@@ -184,10 +184,10 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
184
184
  scopes: SubAgentScopeConfig;
185
185
  artifactComponentId: string;
186
186
  }) => Promise<{
187
- id: string;
188
187
  tenantId: string;
189
- createdAt: string;
190
188
  projectId: string;
189
+ id: string;
190
+ createdAt: string;
191
191
  agentId: string;
192
192
  subAgentId: string;
193
193
  artifactComponentId: string;
@@ -9,11 +9,11 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
9
9
  scopes: AgentScopeConfig;
10
10
  id: string;
11
11
  }) => Promise<{
12
- id: string;
13
12
  tenantId: string;
13
+ projectId: string;
14
+ id: string;
14
15
  createdAt: string;
15
16
  updatedAt: string;
16
- projectId: string;
17
17
  agentId: string;
18
18
  headersSchema: unknown;
19
19
  contextVariables: Record<string, ContextFetchDefinition> | null;
@@ -21,11 +21,11 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
21
21
  declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: AgentScopeConfig;
23
23
  }) => Promise<{
24
- id: string;
25
24
  tenantId: string;
25
+ projectId: string;
26
+ id: string;
26
27
  createdAt: string;
27
28
  updatedAt: string;
28
- projectId: string;
29
29
  agentId: string;
30
30
  headersSchema: unknown;
31
31
  contextVariables: Record<string, ContextFetchDefinition> | null;
@@ -43,11 +43,11 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
43
43
  };
44
44
  }>;
45
45
  declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
46
- id: string;
47
46
  tenantId: string;
47
+ projectId: string;
48
+ id: string;
48
49
  createdAt: string;
49
50
  updatedAt: string;
50
- projectId: string;
51
51
  agentId: string;
52
52
  headersSchema: unknown;
53
53
  contextVariables: Record<string, ContextFetchDefinition> | null;
@@ -83,11 +83,11 @@ declare const countContextConfigs: (db: AgentsManageDatabaseClient) => (params:
83
83
  declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params: {
84
84
  data: ContextConfigInsert;
85
85
  }) => Promise<{
86
- id: string;
87
86
  tenantId: string;
87
+ projectId: string;
88
+ id: string;
88
89
  createdAt: string;
89
90
  updatedAt: string;
90
- projectId: string;
91
91
  agentId: string;
92
92
  headersSchema: unknown;
93
93
  contextVariables: Record<string, ContextFetchDefinition> | null;
@@ -65,10 +65,10 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
65
65
  scopes: SubAgentScopeConfig;
66
66
  dataComponentId: string;
67
67
  }) => Promise<{
68
- id: string;
69
68
  tenantId: string;
70
- createdAt: string;
71
69
  projectId: string;
70
+ id: string;
71
+ createdAt: string;
72
72
  agentId: string;
73
73
  subAgentId: string;
74
74
  dataComponentId: string;
@@ -107,10 +107,10 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
107
107
  scopes: SubAgentScopeConfig;
108
108
  dataComponentId: string;
109
109
  }) => Promise<{
110
- id: string;
111
110
  tenantId: string;
112
- createdAt: string;
113
111
  projectId: string;
112
+ id: string;
113
+ createdAt: string;
114
114
  agentId: string;
115
115
  subAgentId: string;
116
116
  dataComponentId: string;
@@ -1,8 +1,8 @@
1
1
  import { dataComponents, subAgentDataComponents } from "../../db/manage/manage-schema.js";
2
2
  import { validatePropsAsJsonSchema } from "../../validation/props-validation.js";
3
3
  import { validateRender } from "../../validation/render-validation.js";
4
- import { generateId } from "../../utils/conversations.js";
5
4
  import { createApiError } from "../../utils/error.js";
5
+ import { generateId } from "../../utils/conversations.js";
6
6
  import { projectScopedWhere, subAgentScopedWhere } from "./scope-helpers.js";
7
7
  import "../../utils/index.js";
8
8
  import { and, count, desc, eq } from "drizzle-orm";
@@ -53,13 +53,13 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
53
53
  data: FunctionToolApiInsert;
54
54
  scopes: AgentScopeConfig;
55
55
  }) => Promise<{
56
- description: string | null;
57
- id: string;
58
56
  tenantId: string;
59
- createdAt: string;
57
+ projectId: string;
58
+ id: string;
60
59
  name: string;
60
+ createdAt: string;
61
61
  updatedAt: string;
62
- projectId: string;
62
+ description: string | null;
63
63
  agentId: string;
64
64
  functionId: string;
65
65
  }>;
@@ -95,13 +95,13 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
95
95
  data: FunctionToolApiInsert;
96
96
  scopes: AgentScopeConfig;
97
97
  }) => Promise<{
98
- description: string | null;
99
- id: string;
100
98
  tenantId: string;
101
- createdAt: string;
99
+ projectId: string;
100
+ id: string;
102
101
  name: string;
102
+ createdAt: string;
103
103
  updatedAt: string;
104
- projectId: string;
104
+ description: string | null;
105
105
  agentId: string;
106
106
  functionId: string;
107
107
  }>;
@@ -157,16 +157,16 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
157
157
  needsApproval?: boolean;
158
158
  }> | null;
159
159
  }) => Promise<{
160
- id: string;
161
160
  tenantId: string;
161
+ projectId: string;
162
+ id: string;
162
163
  createdAt: string;
163
164
  updatedAt: string;
164
- projectId: string;
165
165
  agentId: string;
166
+ subAgentId: string;
166
167
  toolPolicies: Record<string, {
167
168
  needsApproval?: boolean;
168
169
  }> | null;
169
- subAgentId: string;
170
170
  functionToolId: string;
171
171
  }>;
172
172
  /**
@@ -222,16 +222,16 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
222
222
  needsApproval?: boolean;
223
223
  }> | null;
224
224
  }) => Promise<{
225
- id: string;
226
225
  tenantId: string;
226
+ projectId: string;
227
+ id: string;
227
228
  createdAt: string;
228
229
  updatedAt: string;
229
- projectId: string;
230
230
  agentId: string;
231
+ subAgentId: string;
231
232
  toolPolicies: Record<string, {
232
233
  needsApproval?: boolean;
233
234
  }> | null;
234
- subAgentId: string;
235
235
  functionToolId: string;
236
236
  }>;
237
237
  //#endregion
@@ -15,15 +15,15 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
15
15
  scopes: ProjectScopeConfig;
16
16
  skillId: string;
17
17
  }) => Promise<{
18
- description: string;
19
- id: string;
20
18
  tenantId: string;
21
- createdAt: string;
19
+ projectId: string;
20
+ id: string;
22
21
  name: string;
22
+ createdAt: string;
23
+ updatedAt: string;
24
+ description: string;
23
25
  metadata: Record<string, string> | null;
24
26
  content: string;
25
- updatedAt: string;
26
- projectId: string;
27
27
  } | null>;
28
28
  declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
29
29
  scopes: ProjectScopeConfig;
@@ -110,15 +110,15 @@ interface WithTenantIdProjectId {
110
110
  }
111
111
  declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<SkillRecordWithFiles>;
112
112
  declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<{
113
- description: string;
114
- id: string;
115
113
  tenantId: string;
116
- createdAt: string;
114
+ projectId: string;
115
+ id: string;
117
116
  name: string;
117
+ createdAt: string;
118
+ updatedAt: string;
119
+ description: string;
118
120
  metadata: Record<string, string> | null;
119
121
  content: string;
120
- updatedAt: string;
121
- projectId: string;
122
122
  }>;
123
123
  declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
124
124
  scopes: ProjectScopeConfig;
@@ -139,11 +139,11 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
139
139
  index: number;
140
140
  alwaysLoaded?: boolean;
141
141
  }) => Promise<{
142
- id: string;
143
142
  tenantId: string;
143
+ projectId: string;
144
+ id: string;
144
145
  createdAt: string;
145
146
  updatedAt: string;
146
- projectId: string;
147
147
  agentId: string;
148
148
  subAgentId: string;
149
149
  index: number;
@@ -9,15 +9,15 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
9
9
  scopes: SubAgentScopeConfig;
10
10
  relationId: string;
11
11
  }) => Promise<{
12
- id: string;
13
12
  tenantId: string;
13
+ projectId: string;
14
+ id: string;
14
15
  createdAt: string;
15
16
  updatedAt: string;
16
- projectId: string;
17
17
  agentId: string;
18
+ subAgentId: string;
18
19
  headers: Record<string, string> | null;
19
20
  externalAgentId: string;
20
- subAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
23
23
  scopes: SubAgentScopeConfig;
@@ -44,28 +44,28 @@ declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClien
44
44
  declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
- id: string;
48
47
  tenantId: string;
48
+ projectId: string;
49
+ id: string;
49
50
  createdAt: string;
50
51
  updatedAt: string;
51
- projectId: string;
52
52
  agentId: string;
53
+ subAgentId: string;
53
54
  headers: Record<string, string> | null;
54
55
  externalAgentId: string;
55
- subAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
- id: string;
61
60
  tenantId: string;
61
+ projectId: string;
62
+ id: string;
62
63
  createdAt: string;
63
64
  updatedAt: string;
64
- projectId: string;
65
65
  agentId: string;
66
+ subAgentId: string;
66
67
  headers: Record<string, string> | null;
67
68
  externalAgentId: string;
68
- subAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
71
71
  scopes: AgentScopeConfig;
@@ -186,15 +186,15 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
186
186
  headers?: Record<string, string> | null;
187
187
  };
188
188
  }) => Promise<{
189
- id: string;
190
189
  tenantId: string;
190
+ projectId: string;
191
+ id: string;
191
192
  createdAt: string;
192
193
  updatedAt: string;
193
- projectId: string;
194
194
  agentId: string;
195
+ subAgentId: string;
195
196
  headers: Record<string, string> | null;
196
197
  externalAgentId: string;
197
- subAgentId: string;
198
198
  }>;
199
199
  /**
200
200
  * Check if sub-agent external agent relation exists by params
@@ -203,15 +203,15 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
203
203
  scopes: SubAgentScopeConfig;
204
204
  externalAgentId: string;
205
205
  }) => Promise<{
206
- id: string;
207
206
  tenantId: string;
207
+ projectId: string;
208
+ id: string;
208
209
  createdAt: string;
209
210
  updatedAt: string;
210
- projectId: string;
211
211
  agentId: string;
212
+ subAgentId: string;
212
213
  headers: Record<string, string> | null;
213
214
  externalAgentId: string;
214
- subAgentId: string;
215
215
  } | undefined>;
216
216
  /**
217
217
  * Upsert sub-agent external agent relation (create if it doesn't exist, update if it does)
@@ -224,15 +224,15 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
224
224
  headers?: Record<string, string> | null;
225
225
  };
226
226
  }) => Promise<{
227
- id: string;
228
227
  tenantId: string;
228
+ projectId: string;
229
+ id: string;
229
230
  createdAt: string;
230
231
  updatedAt: string;
231
- projectId: string;
232
232
  agentId: string;
233
+ subAgentId: string;
233
234
  headers: Record<string, string> | null;
234
235
  externalAgentId: string;
235
- subAgentId: string;
236
236
  }>;
237
237
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
238
238
  scopes: SubAgentScopeConfig;