@inkeep/agents-core 0.78.1 → 0.78.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 (31) hide show
  1. package/dist/auth/auth-schema.d.ts +163 -163
  2. package/dist/auth/auth-validation-schemas.d.ts +137 -137
  3. package/dist/auth/auth.js +7 -0
  4. package/dist/auth/permissions.d.ts +9 -9
  5. package/dist/constants/signoz-queries.d.ts +2 -0
  6. package/dist/constants/signoz-queries.js +3 -1
  7. package/dist/data-access/manage/agents.d.ts +32 -32
  8. package/dist/data-access/manage/artifactComponents.d.ts +6 -6
  9. package/dist/data-access/manage/contextConfigs.d.ts +12 -12
  10. package/dist/data-access/manage/dataComponents.d.ts +2 -2
  11. package/dist/data-access/manage/functionTools.d.ts +8 -8
  12. package/dist/data-access/manage/skills.d.ts +6 -6
  13. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
  14. package/dist/data-access/manage/subAgentRelations.d.ts +18 -18
  15. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
  16. package/dist/data-access/manage/subAgents.d.ts +12 -12
  17. package/dist/data-access/manage/tools.d.ts +18 -18
  18. package/dist/data-access/manage/triggers.d.ts +3 -3
  19. package/dist/data-access/runtime/apiKeys.d.ts +8 -8
  20. package/dist/data-access/runtime/apps.d.ts +12 -12
  21. package/dist/data-access/runtime/conversations.d.ts +12 -12
  22. package/dist/data-access/runtime/events.d.ts +2 -2
  23. package/dist/data-access/runtime/messages.d.ts +3 -3
  24. package/dist/data-access/runtime/tasks.d.ts +1 -1
  25. package/dist/db/manage/manage-schema.d.ts +383 -383
  26. package/dist/db/runtime/runtime-schema.d.ts +409 -409
  27. package/dist/types/utility.d.ts +1 -0
  28. package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
  29. package/dist/validation/schemas/skills.d.ts +40 -40
  30. package/dist/validation/schemas.d.ts +2136 -2136
  31. package/package.json +1 -1
package/dist/auth/auth.js CHANGED
@@ -155,6 +155,13 @@ function createAuth(config) {
155
155
  "email",
156
156
  "offline_access"
157
157
  ],
158
+ allowDynamicClientRegistration: true,
159
+ allowUnauthenticatedClientRegistration: true,
160
+ validAudiences: [
161
+ config.baseURL,
162
+ `${config.baseURL}/`,
163
+ `${config.baseURL}/mcp`
164
+ ],
158
165
  customAccessTokenClaims: async ({ user }) => {
159
166
  if (!user) return {};
160
167
  const org = await getInitialOrganization(config.dbClient, user.id);
@@ -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 "project" | "organization" | "invitation" | "member" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
9
- actions: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.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_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
9
+ actions: better_auth_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>[key];
10
10
  connector: "OR" | "AND";
11
11
  } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins7.AuthorizeResponse;
12
- statements: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.Statements>;
12
+ statements: better_auth_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>;
13
13
  };
14
14
  declare const adminRole: {
15
- authorize<K_1 extends "project" | "organization" | "invitation" | "member" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
16
- actions: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.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_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
16
+ actions: better_auth_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>[key];
17
17
  connector: "OR" | "AND";
18
18
  } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins7.AuthorizeResponse;
19
- statements: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.Statements>;
19
+ statements: better_auth_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>;
20
20
  };
21
21
  declare const ownerRole: {
22
- authorize<K_1 extends "project" | "organization" | "invitation" | "member" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
23
- actions: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.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_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>[key] | {
23
+ actions: better_auth_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>[key];
24
24
  connector: "OR" | "AND";
25
25
  } | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins7.AuthorizeResponse;
26
- statements: better_auth_plugins7.Subset<"project" | "organization" | "invitation" | "member" | "team" | "ac", better_auth_plugins7.Statements>;
26
+ statements: better_auth_plugins7.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins7.Statements>;
27
27
  };
28
28
  //#endregion
29
29
  export { ac, adminRole, memberRole, organizationClient, ownerRole };
@@ -95,6 +95,8 @@ declare const QUERY_DEFAULTS: {
95
95
  readonly STEP_INTERVAL: 60;
96
96
  readonly DISABLED: false;
97
97
  readonly LIMIT_UNLIMITED: 10000;
98
+ readonly CONVERSATION_ACTIVITY_PAGE_SIZE: 10000;
99
+ readonly CONVERSATION_ACTIVITY_MAX_PAGES: 10;
98
100
  };
99
101
  //#endregion
100
102
  export { FIELD_CONTEXTS, FIELD_DATA_TYPES, OPERATORS, ORDER_DIRECTIONS, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_TYPES, REQUEST_TYPES, SIGNALS, buildFilterExpression, buildOrExpression };
@@ -120,7 +120,9 @@ const ORDER_DIRECTIONS = {
120
120
  const QUERY_DEFAULTS = {
121
121
  STEP_INTERVAL: 60,
122
122
  DISABLED: false,
123
- LIMIT_UNLIMITED: 1e4
123
+ LIMIT_UNLIMITED: 1e4,
124
+ CONVERSATION_ACTIVITY_PAGE_SIZE: 1e4,
125
+ CONVERSATION_ACTIVITY_MAX_PAGES: 10
124
126
  };
125
127
 
126
128
  //#endregion
@@ -11,14 +11,12 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
11
11
  scopes: AgentScopeConfig;
12
12
  }) => Promise<{
13
13
  id: string;
14
- createdAt: string;
15
14
  name: string;
15
+ description: string | null;
16
+ createdAt: string;
16
17
  updatedAt: string;
17
18
  projectId: string;
18
19
  tenantId: string;
19
- description: string | null;
20
- defaultSubAgentId: string | null;
21
- contextConfigId: string | null;
22
20
  models: {
23
21
  base?: {
24
22
  model?: string | undefined;
@@ -39,7 +37,12 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
39
37
  allowedProviders?: string[] | undefined;
40
38
  } | undefined;
41
39
  } | null;
40
+ stopWhen: {
41
+ transferCountIs?: number | undefined;
42
+ } | null;
42
43
  prompt: string | null;
44
+ defaultSubAgentId: string | null;
45
+ contextConfigId: string | null;
43
46
  statusUpdates: {
44
47
  enabled?: boolean | undefined;
45
48
  numEvents?: number | undefined;
@@ -55,23 +58,18 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
55
58
  } | undefined;
56
59
  }[] | undefined;
57
60
  } | null;
58
- stopWhen: {
59
- transferCountIs?: number | undefined;
60
- } | null;
61
61
  executionMode: "classic" | "durable";
62
62
  } | null>;
63
63
  declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
64
64
  scopes: AgentScopeConfig;
65
65
  }) => Promise<{
66
66
  id: string;
67
- createdAt: string;
68
67
  name: string;
68
+ description: string | null;
69
+ createdAt: string;
69
70
  updatedAt: string;
70
71
  projectId: string;
71
72
  tenantId: string;
72
- description: string | null;
73
- defaultSubAgentId: string | null;
74
- contextConfigId: string | null;
75
73
  models: {
76
74
  base?: {
77
75
  model?: string | undefined;
@@ -92,7 +90,12 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
92
90
  allowedProviders?: string[] | undefined;
93
91
  } | undefined;
94
92
  } | null;
93
+ stopWhen: {
94
+ transferCountIs?: number | undefined;
95
+ } | null;
95
96
  prompt: string | null;
97
+ defaultSubAgentId: string | null;
98
+ contextConfigId: string | null;
96
99
  statusUpdates: {
97
100
  enabled?: boolean | undefined;
98
101
  numEvents?: number | undefined;
@@ -108,19 +111,15 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
108
111
  } | undefined;
109
112
  }[] | undefined;
110
113
  } | null;
111
- stopWhen: {
112
- transferCountIs?: number | undefined;
113
- } | null;
114
114
  executionMode: "classic" | "durable";
115
115
  defaultSubAgent: {
116
116
  id: string;
117
- createdAt: string;
118
117
  name: string;
118
+ description: string | null;
119
+ createdAt: string;
119
120
  updatedAt: string;
120
- agentId: string;
121
121
  projectId: string;
122
122
  tenantId: string;
123
- description: string | null;
124
123
  models: {
125
124
  base?: {
126
125
  model?: string | undefined;
@@ -141,10 +140,11 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
141
140
  allowedProviders?: string[] | undefined;
142
141
  } | undefined;
143
142
  } | null;
144
- prompt: string | null;
145
143
  stopWhen: {
146
144
  stepCountIs?: number | undefined;
147
145
  } | null;
146
+ agentId: string;
147
+ prompt: string | null;
148
148
  conversationHistoryConfig: ConversationHistoryConfig | null;
149
149
  outputContract: {
150
150
  [x: string]: unknown;
@@ -161,14 +161,12 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
161
161
  scopes: ProjectScopeConfig;
162
162
  }) => Promise<{
163
163
  id: string;
164
- createdAt: string;
165
164
  name: string;
165
+ description: string | null;
166
+ createdAt: string;
166
167
  updatedAt: string;
167
168
  projectId: string;
168
169
  tenantId: string;
169
- description: string | null;
170
- defaultSubAgentId: string | null;
171
- contextConfigId: string | null;
172
170
  models: {
173
171
  base?: {
174
172
  model?: string | undefined;
@@ -189,7 +187,12 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
189
187
  allowedProviders?: string[] | undefined;
190
188
  } | undefined;
191
189
  } | null;
190
+ stopWhen: {
191
+ transferCountIs?: number | undefined;
192
+ } | null;
192
193
  prompt: string | null;
194
+ defaultSubAgentId: string | null;
195
+ contextConfigId: string | null;
193
196
  statusUpdates: {
194
197
  enabled?: boolean | undefined;
195
198
  numEvents?: number | undefined;
@@ -205,9 +208,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
205
208
  } | undefined;
206
209
  }[] | undefined;
207
210
  } | null;
208
- stopWhen: {
209
- transferCountIs?: number | undefined;
210
- } | null;
211
211
  executionMode: "classic" | "durable";
212
212
  }[]>;
213
213
  declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
@@ -291,14 +291,12 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
291
291
  }): Promise<AvailableAgentInfo[]>;
292
292
  declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
293
293
  id: string;
294
- createdAt: string;
295
294
  name: string;
295
+ description: string | null;
296
+ createdAt: string;
296
297
  updatedAt: string;
297
298
  projectId: string;
298
299
  tenantId: string;
299
- description: string | null;
300
- defaultSubAgentId: string | null;
301
- contextConfigId: string | null;
302
300
  models: {
303
301
  base?: {
304
302
  model?: string | undefined;
@@ -319,7 +317,12 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
319
317
  allowedProviders?: string[] | undefined;
320
318
  } | undefined;
321
319
  } | null;
320
+ stopWhen: {
321
+ transferCountIs?: number | undefined;
322
+ } | null;
322
323
  prompt: string | null;
324
+ defaultSubAgentId: string | null;
325
+ contextConfigId: string | null;
323
326
  statusUpdates: {
324
327
  enabled?: boolean | undefined;
325
328
  numEvents?: number | undefined;
@@ -335,9 +338,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
335
338
  } | undefined;
336
339
  }[] | undefined;
337
340
  } | null;
338
- stopWhen: {
339
- transferCountIs?: number | undefined;
340
- } | null;
341
341
  executionMode: "classic" | "durable";
342
342
  }>;
343
343
  declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -10,12 +10,12 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
10
10
  id: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- createdAt: string;
14
13
  name: string;
14
+ description: string | null;
15
+ createdAt: string;
15
16
  updatedAt: string;
16
17
  projectId: string;
17
18
  tenantId: string;
18
- description: string | null;
19
19
  props: {
20
20
  [x: string]: unknown;
21
21
  type: "object";
@@ -66,12 +66,12 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
66
66
  }>;
67
67
  declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
68
68
  id: string;
69
- createdAt: string;
70
69
  name: string;
70
+ description: string | null;
71
+ createdAt: string;
71
72
  updatedAt: string;
72
73
  projectId: string;
73
74
  tenantId: string;
74
- description: string | null;
75
75
  props: {
76
76
  [x: string]: unknown;
77
77
  type: "object";
@@ -143,9 +143,9 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
143
143
  }) => Promise<{
144
144
  id: string;
145
145
  createdAt: string;
146
- agentId: string;
147
146
  projectId: string;
148
147
  tenantId: string;
148
+ agentId: string;
149
149
  subAgentId: string;
150
150
  artifactComponentId: string;
151
151
  }>;
@@ -186,9 +186,9 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
186
186
  }) => Promise<{
187
187
  id: string;
188
188
  createdAt: string;
189
- agentId: string;
190
189
  projectId: string;
191
190
  tenantId: string;
191
+ agentId: string;
192
192
  subAgentId: string;
193
193
  artifactComponentId: string;
194
194
  } | null>;
@@ -10,25 +10,25 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
10
10
  id: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
- headersSchema: unknown;
14
- contextVariables: Record<string, ContextFetchDefinition> | null;
15
13
  createdAt: string;
16
14
  updatedAt: string;
17
- agentId: string;
18
15
  projectId: string;
19
16
  tenantId: string;
17
+ agentId: string;
18
+ headersSchema: unknown;
19
+ contextVariables: Record<string, ContextFetchDefinition> | null;
20
20
  } | undefined>;
21
21
  declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
22
22
  scopes: AgentScopeConfig;
23
23
  }) => Promise<{
24
24
  id: string;
25
- headersSchema: unknown;
26
- contextVariables: Record<string, ContextFetchDefinition> | null;
27
25
  createdAt: string;
28
26
  updatedAt: string;
29
- agentId: string;
30
27
  projectId: string;
31
28
  tenantId: string;
29
+ agentId: string;
30
+ headersSchema: unknown;
31
+ contextVariables: Record<string, ContextFetchDefinition> | null;
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
- headersSchema: unknown;
48
- contextVariables: Record<string, ContextFetchDefinition> | null;
49
47
  createdAt: string;
50
48
  updatedAt: string;
51
- agentId: string;
52
49
  projectId: string;
53
50
  tenantId: string;
51
+ agentId: string;
52
+ headersSchema: unknown;
53
+ contextVariables: Record<string, ContextFetchDefinition> | null;
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
- headersSchema: unknown;
88
- contextVariables: Record<string, ContextFetchDefinition> | null;
89
87
  createdAt: string;
90
88
  updatedAt: string;
91
- agentId: string;
92
89
  projectId: string;
93
90
  tenantId: string;
91
+ agentId: string;
92
+ headersSchema: unknown;
93
+ contextVariables: Record<string, ContextFetchDefinition> | null;
94
94
  }>;
95
95
  //#endregion
96
96
  export { countContextConfigs, createContextConfig, deleteContextConfig, getContextConfigById, hasContextConfig, listContextConfigs, listContextConfigsPaginated, updateContextConfig, upsertContextConfig };
@@ -67,9 +67,9 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
67
67
  }) => Promise<{
68
68
  id: string;
69
69
  createdAt: string;
70
- agentId: string;
71
70
  projectId: string;
72
71
  tenantId: string;
72
+ agentId: string;
73
73
  subAgentId: string;
74
74
  dataComponentId: string;
75
75
  }>;
@@ -109,9 +109,9 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
109
109
  }) => Promise<{
110
110
  id: string;
111
111
  createdAt: string;
112
- agentId: string;
113
112
  projectId: string;
114
113
  tenantId: string;
114
+ agentId: 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
- createdAt: string;
58
57
  name: string;
58
+ description: string | null;
59
+ createdAt: string;
59
60
  updatedAt: string;
60
- agentId: string;
61
61
  projectId: string;
62
62
  tenantId: string;
63
- description: string | null;
63
+ agentId: string;
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
- createdAt: string;
100
99
  name: string;
100
+ description: string | null;
101
+ createdAt: string;
101
102
  updatedAt: string;
102
- agentId: string;
103
103
  projectId: string;
104
104
  tenantId: string;
105
- description: string | null;
105
+ agentId: string;
106
106
  functionId: string;
107
107
  }>;
108
108
  declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -160,9 +160,9 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
160
160
  id: string;
161
161
  createdAt: string;
162
162
  updatedAt: string;
163
- agentId: string;
164
163
  projectId: string;
165
164
  tenantId: string;
165
+ agentId: string;
166
166
  subAgentId: string;
167
167
  toolPolicies: Record<string, {
168
168
  needsApproval?: boolean;
@@ -225,9 +225,9 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
225
225
  id: string;
226
226
  createdAt: string;
227
227
  updatedAt: string;
228
- agentId: string;
229
228
  projectId: string;
230
229
  tenantId: string;
230
+ agentId: string;
231
231
  subAgentId: string;
232
232
  toolPolicies: Record<string, {
233
233
  needsApproval?: boolean;
@@ -16,12 +16,12 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
16
16
  skillId: string;
17
17
  }) => Promise<{
18
18
  id: string;
19
- createdAt: string;
20
19
  name: string;
20
+ description: string;
21
+ createdAt: string;
21
22
  updatedAt: string;
22
23
  projectId: string;
23
24
  tenantId: string;
24
- description: string;
25
25
  metadata: Record<string, string> | null;
26
26
  content: string;
27
27
  } | null>;
@@ -111,12 +111,12 @@ interface WithTenantIdProjectId {
111
111
  declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<SkillRecordWithFiles>;
112
112
  declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<{
113
113
  id: string;
114
- createdAt: string;
115
114
  name: string;
115
+ description: string;
116
+ createdAt: string;
116
117
  updatedAt: string;
117
118
  projectId: string;
118
119
  tenantId: string;
119
- description: string;
120
120
  metadata: Record<string, string> | null;
121
121
  content: string;
122
122
  }>;
@@ -142,13 +142,13 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
142
142
  id: string;
143
143
  createdAt: string;
144
144
  updatedAt: string;
145
- agentId: string;
146
145
  projectId: string;
147
146
  tenantId: string;
147
+ agentId: string;
148
148
  subAgentId: string;
149
- skillId: string;
150
149
  index: number;
151
150
  alwaysLoaded: boolean;
151
+ skillId: string;
152
152
  }>;
153
153
  declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
154
154
  scopes: AgentScopeConfig;
@@ -10,13 +10,13 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
10
10
  relationId: string;
11
11
  }) => Promise<{
12
12
  id: string;
13
+ headers: Record<string, string> | null;
13
14
  createdAt: string;
14
15
  updatedAt: string;
15
- agentId: string;
16
16
  projectId: string;
17
17
  tenantId: string;
18
+ agentId: string;
18
19
  subAgentId: string;
19
- headers: Record<string, string> | null;
20
20
  externalAgentId: string;
21
21
  } | undefined>;
22
22
  declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
@@ -45,26 +45,26 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
45
45
  scopes: SubAgentScopeConfig;
46
46
  }) => Promise<{
47
47
  id: string;
48
+ headers: Record<string, string> | null;
48
49
  createdAt: string;
49
50
  updatedAt: string;
50
- agentId: string;
51
51
  projectId: string;
52
52
  tenantId: string;
53
+ agentId: string;
53
54
  subAgentId: string;
54
- headers: Record<string, string> | null;
55
55
  externalAgentId: string;
56
56
  }[]>;
57
57
  declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
58
58
  scopes: AgentScopeConfig;
59
59
  }) => Promise<{
60
60
  id: string;
61
+ headers: Record<string, string> | null;
61
62
  createdAt: string;
62
63
  updatedAt: string;
63
- agentId: string;
64
64
  projectId: string;
65
65
  tenantId: string;
66
+ agentId: string;
66
67
  subAgentId: string;
67
- headers: Record<string, string> | null;
68
68
  externalAgentId: string;
69
69
  }[]>;
70
70
  declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
@@ -187,13 +187,13 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
187
187
  };
188
188
  }) => Promise<{
189
189
  id: string;
190
+ headers: Record<string, string> | null;
190
191
  createdAt: string;
191
192
  updatedAt: string;
192
- agentId: string;
193
193
  projectId: string;
194
194
  tenantId: string;
195
+ agentId: string;
195
196
  subAgentId: string;
196
- headers: Record<string, string> | null;
197
197
  externalAgentId: string;
198
198
  }>;
199
199
  /**
@@ -204,13 +204,13 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
204
204
  externalAgentId: string;
205
205
  }) => Promise<{
206
206
  id: string;
207
+ headers: Record<string, string> | null;
207
208
  createdAt: string;
208
209
  updatedAt: string;
209
- agentId: string;
210
210
  projectId: string;
211
211
  tenantId: string;
212
+ agentId: string;
212
213
  subAgentId: string;
213
- headers: Record<string, string> | null;
214
214
  externalAgentId: string;
215
215
  } | undefined>;
216
216
  /**
@@ -225,13 +225,13 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
225
225
  };
226
226
  }) => Promise<{
227
227
  id: string;
228
+ headers: Record<string, string> | null;
228
229
  createdAt: string;
229
230
  updatedAt: string;
230
- agentId: string;
231
231
  projectId: string;
232
232
  tenantId: string;
233
+ agentId: string;
233
234
  subAgentId: string;
234
- headers: Record<string, string> | null;
235
235
  externalAgentId: string;
236
236
  }>;
237
237
  declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {