@inkeep/agents-core 0.0.0-dev-20260324170433 → 0.0.0-dev-20260324185007
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.
- package/dist/auth/auth.js +2 -2
- package/dist/data-access/manage/agents.d.ts +42 -42
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +18 -18
- package/dist/data-access/manage/skills.d.ts +13 -13
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +28 -28
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +18 -18
- package/dist/data-access/manage/tools.d.ts +24 -24
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +14 -14
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +18 -18
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +449 -449
- package/dist/db/runtime/runtime-schema.d.ts +332 -332
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/validation/schemas.d.ts +398 -398
- package/package.json +2 -2
package/dist/auth/auth.js
CHANGED
|
@@ -99,7 +99,7 @@ function createAuth(config) {
|
|
|
99
99
|
plugins: [
|
|
100
100
|
bearer(),
|
|
101
101
|
dash(),
|
|
102
|
-
lastLoginMethod({ customResolveMethod
|
|
102
|
+
lastLoginMethod({ customResolveMethod(ctx) {
|
|
103
103
|
const path = ctx.path;
|
|
104
104
|
if (path === "/sign-in/email" || path === "/sign-up/email") return "email";
|
|
105
105
|
if (path.startsWith("/callback/") || path.startsWith("/oauth2/callback/")) return ctx.params?.id || ctx.params?.providerId || path.split("/").pop() || null;
|
|
@@ -109,7 +109,7 @@ function createAuth(config) {
|
|
|
109
109
|
} }),
|
|
110
110
|
sso({
|
|
111
111
|
organizationProvisioning: { disabled: true },
|
|
112
|
-
|
|
112
|
+
async provisionUser({ user, provider }) {
|
|
113
113
|
if (!provider.organizationId) return;
|
|
114
114
|
if (!await shouldAutoProvision(config.dbClient, user, provider)) return;
|
|
115
115
|
await instance.api.addMember({ body: {
|
|
@@ -12,13 +12,11 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
12
12
|
}) => Promise<{
|
|
13
13
|
id: string;
|
|
14
14
|
name: string;
|
|
15
|
-
createdAt: string;
|
|
16
|
-
updatedAt: string;
|
|
17
15
|
description: string | null;
|
|
18
|
-
projectId: string;
|
|
19
|
-
tenantId: string;
|
|
20
16
|
defaultSubAgentId: string | null;
|
|
21
|
-
|
|
17
|
+
tenantId: string;
|
|
18
|
+
projectId: string;
|
|
19
|
+
prompt: string | null;
|
|
22
20
|
models: {
|
|
23
21
|
base?: {
|
|
24
22
|
model?: string | undefined;
|
|
@@ -33,7 +31,12 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
33
31
|
providerOptions?: Record<string, any> | undefined;
|
|
34
32
|
} | undefined;
|
|
35
33
|
} | null;
|
|
36
|
-
|
|
34
|
+
stopWhen: {
|
|
35
|
+
transferCountIs?: number | undefined;
|
|
36
|
+
} | null;
|
|
37
|
+
createdAt: string;
|
|
38
|
+
updatedAt: string;
|
|
39
|
+
contextConfigId: string | null;
|
|
37
40
|
statusUpdates: {
|
|
38
41
|
enabled?: boolean | undefined;
|
|
39
42
|
numEvents?: number | undefined;
|
|
@@ -49,22 +52,17 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
49
52
|
} | undefined;
|
|
50
53
|
}[] | undefined;
|
|
51
54
|
} | null;
|
|
52
|
-
stopWhen: {
|
|
53
|
-
transferCountIs?: number | undefined;
|
|
54
|
-
} | null;
|
|
55
55
|
} | null>;
|
|
56
56
|
declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
57
57
|
scopes: AgentScopeConfig;
|
|
58
58
|
}) => Promise<{
|
|
59
59
|
id: string;
|
|
60
60
|
name: string;
|
|
61
|
-
createdAt: string;
|
|
62
|
-
updatedAt: string;
|
|
63
61
|
description: string | null;
|
|
64
|
-
projectId: string;
|
|
65
|
-
tenantId: string;
|
|
66
62
|
defaultSubAgentId: string | null;
|
|
67
|
-
|
|
63
|
+
tenantId: string;
|
|
64
|
+
projectId: string;
|
|
65
|
+
prompt: string | null;
|
|
68
66
|
models: {
|
|
69
67
|
base?: {
|
|
70
68
|
model?: string | undefined;
|
|
@@ -79,7 +77,12 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
79
77
|
providerOptions?: Record<string, any> | undefined;
|
|
80
78
|
} | undefined;
|
|
81
79
|
} | null;
|
|
82
|
-
|
|
80
|
+
stopWhen: {
|
|
81
|
+
transferCountIs?: number | undefined;
|
|
82
|
+
} | null;
|
|
83
|
+
createdAt: string;
|
|
84
|
+
updatedAt: string;
|
|
85
|
+
contextConfigId: string | null;
|
|
83
86
|
statusUpdates: {
|
|
84
87
|
enabled?: boolean | undefined;
|
|
85
88
|
numEvents?: number | undefined;
|
|
@@ -95,18 +98,15 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
95
98
|
} | undefined;
|
|
96
99
|
}[] | undefined;
|
|
97
100
|
} | null;
|
|
98
|
-
stopWhen: {
|
|
99
|
-
transferCountIs?: number | undefined;
|
|
100
|
-
} | null;
|
|
101
101
|
defaultSubAgent: {
|
|
102
102
|
id: string;
|
|
103
103
|
name: string;
|
|
104
|
-
createdAt: string;
|
|
105
|
-
updatedAt: string;
|
|
106
104
|
description: string | null;
|
|
107
|
-
agentId: string;
|
|
108
|
-
projectId: string;
|
|
109
105
|
tenantId: string;
|
|
106
|
+
projectId: string;
|
|
107
|
+
agentId: string;
|
|
108
|
+
prompt: string | null;
|
|
109
|
+
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
110
110
|
models: {
|
|
111
111
|
base?: {
|
|
112
112
|
model?: string | undefined;
|
|
@@ -121,11 +121,11 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
121
121
|
providerOptions?: Record<string, any> | undefined;
|
|
122
122
|
} | undefined;
|
|
123
123
|
} | null;
|
|
124
|
-
prompt: string | null;
|
|
125
124
|
stopWhen: {
|
|
126
125
|
stepCountIs?: number | undefined;
|
|
127
126
|
} | null;
|
|
128
|
-
|
|
127
|
+
createdAt: string;
|
|
128
|
+
updatedAt: string;
|
|
129
129
|
} | null;
|
|
130
130
|
} | null>;
|
|
131
131
|
declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -133,13 +133,11 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
133
133
|
}) => Promise<{
|
|
134
134
|
id: string;
|
|
135
135
|
name: string;
|
|
136
|
-
createdAt: string;
|
|
137
|
-
updatedAt: string;
|
|
138
136
|
description: string | null;
|
|
139
|
-
projectId: string;
|
|
140
|
-
tenantId: string;
|
|
141
137
|
defaultSubAgentId: string | null;
|
|
142
|
-
|
|
138
|
+
tenantId: string;
|
|
139
|
+
projectId: string;
|
|
140
|
+
prompt: string | null;
|
|
143
141
|
models: {
|
|
144
142
|
base?: {
|
|
145
143
|
model?: string | undefined;
|
|
@@ -154,7 +152,12 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
154
152
|
providerOptions?: Record<string, any> | undefined;
|
|
155
153
|
} | undefined;
|
|
156
154
|
} | null;
|
|
157
|
-
|
|
155
|
+
stopWhen: {
|
|
156
|
+
transferCountIs?: number | undefined;
|
|
157
|
+
} | null;
|
|
158
|
+
createdAt: string;
|
|
159
|
+
updatedAt: string;
|
|
160
|
+
contextConfigId: string | null;
|
|
158
161
|
statusUpdates: {
|
|
159
162
|
enabled?: boolean | undefined;
|
|
160
163
|
numEvents?: number | undefined;
|
|
@@ -170,9 +173,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
170
173
|
} | undefined;
|
|
171
174
|
}[] | undefined;
|
|
172
175
|
} | null;
|
|
173
|
-
stopWhen: {
|
|
174
|
-
transferCountIs?: number | undefined;
|
|
175
|
-
} | null;
|
|
176
176
|
}[]>;
|
|
177
177
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
178
178
|
scopes: ProjectScopeConfig;
|
|
@@ -249,13 +249,11 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
|
|
|
249
249
|
declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
|
|
250
250
|
id: string;
|
|
251
251
|
name: string;
|
|
252
|
-
createdAt: string;
|
|
253
|
-
updatedAt: string;
|
|
254
252
|
description: string | null;
|
|
255
|
-
projectId: string;
|
|
256
|
-
tenantId: string;
|
|
257
253
|
defaultSubAgentId: string | null;
|
|
258
|
-
|
|
254
|
+
tenantId: string;
|
|
255
|
+
projectId: string;
|
|
256
|
+
prompt: string | null;
|
|
259
257
|
models: {
|
|
260
258
|
base?: {
|
|
261
259
|
model?: string | undefined;
|
|
@@ -270,7 +268,12 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
270
268
|
providerOptions?: Record<string, any> | undefined;
|
|
271
269
|
} | undefined;
|
|
272
270
|
} | null;
|
|
273
|
-
|
|
271
|
+
stopWhen: {
|
|
272
|
+
transferCountIs?: number | undefined;
|
|
273
|
+
} | null;
|
|
274
|
+
createdAt: string;
|
|
275
|
+
updatedAt: string;
|
|
276
|
+
contextConfigId: string | null;
|
|
274
277
|
statusUpdates: {
|
|
275
278
|
enabled?: boolean | undefined;
|
|
276
279
|
numEvents?: number | undefined;
|
|
@@ -286,9 +289,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
286
289
|
} | undefined;
|
|
287
290
|
}[] | undefined;
|
|
288
291
|
} | null;
|
|
289
|
-
stopWhen: {
|
|
290
|
-
transferCountIs?: number | undefined;
|
|
291
|
-
} | null;
|
|
292
292
|
}>;
|
|
293
293
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
294
294
|
scopes: AgentScopeConfig;
|
|
@@ -11,11 +11,11 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
11
11
|
}) => Promise<{
|
|
12
12
|
id: string;
|
|
13
13
|
name: string;
|
|
14
|
-
createdAt: string;
|
|
15
|
-
updatedAt: string;
|
|
16
14
|
description: string | null;
|
|
17
|
-
projectId: string;
|
|
18
15
|
tenantId: string;
|
|
16
|
+
projectId: string;
|
|
17
|
+
createdAt: string;
|
|
18
|
+
updatedAt: string;
|
|
19
19
|
props: {
|
|
20
20
|
[x: string]: unknown;
|
|
21
21
|
type: "object";
|
|
@@ -67,11 +67,11 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
|
|
|
67
67
|
declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
|
|
68
68
|
id: string;
|
|
69
69
|
name: string;
|
|
70
|
-
createdAt: string;
|
|
71
|
-
updatedAt: string;
|
|
72
70
|
description: string | null;
|
|
73
|
-
projectId: string;
|
|
74
71
|
tenantId: string;
|
|
72
|
+
projectId: string;
|
|
73
|
+
createdAt: string;
|
|
74
|
+
updatedAt: string;
|
|
75
75
|
props: {
|
|
76
76
|
[x: string]: unknown;
|
|
77
77
|
type: "object";
|
|
@@ -142,10 +142,10 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
142
142
|
artifactComponentId: string;
|
|
143
143
|
}) => Promise<{
|
|
144
144
|
id: string;
|
|
145
|
-
createdAt: string;
|
|
146
|
-
agentId: string;
|
|
147
|
-
projectId: string;
|
|
148
145
|
tenantId: string;
|
|
146
|
+
projectId: string;
|
|
147
|
+
agentId: string;
|
|
148
|
+
createdAt: string;
|
|
149
149
|
subAgentId: string;
|
|
150
150
|
artifactComponentId: string;
|
|
151
151
|
}>;
|
|
@@ -185,10 +185,10 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
|
|
|
185
185
|
artifactComponentId: string;
|
|
186
186
|
}) => Promise<{
|
|
187
187
|
id: string;
|
|
188
|
-
createdAt: string;
|
|
189
|
-
agentId: string;
|
|
190
|
-
projectId: string;
|
|
191
188
|
tenantId: string;
|
|
189
|
+
projectId: string;
|
|
190
|
+
agentId: string;
|
|
191
|
+
createdAt: 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
|
+
tenantId: string;
|
|
14
|
+
projectId: string;
|
|
15
|
+
agentId: string;
|
|
13
16
|
createdAt: string;
|
|
14
17
|
updatedAt: string;
|
|
15
18
|
headersSchema: unknown;
|
|
16
19
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
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;
|
|
25
28
|
createdAt: string;
|
|
26
29
|
updatedAt: string;
|
|
27
30
|
headersSchema: unknown;
|
|
28
31
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
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;
|
|
47
50
|
createdAt: string;
|
|
48
51
|
updatedAt: string;
|
|
49
52
|
headersSchema: unknown;
|
|
50
53
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
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;
|
|
87
90
|
createdAt: string;
|
|
88
91
|
updatedAt: string;
|
|
89
92
|
headersSchema: unknown;
|
|
90
93
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
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 };
|
|
@@ -66,10 +66,10 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
66
66
|
dataComponentId: string;
|
|
67
67
|
}) => Promise<{
|
|
68
68
|
id: string;
|
|
69
|
-
createdAt: string;
|
|
70
|
-
agentId: string;
|
|
71
|
-
projectId: string;
|
|
72
69
|
tenantId: string;
|
|
70
|
+
projectId: string;
|
|
71
|
+
agentId: string;
|
|
72
|
+
createdAt: 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
|
-
createdAt: string;
|
|
112
|
-
agentId: string;
|
|
113
|
-
projectId: string;
|
|
114
111
|
tenantId: string;
|
|
112
|
+
projectId: string;
|
|
113
|
+
agentId: string;
|
|
114
|
+
createdAt: string;
|
|
115
115
|
subAgentId: string;
|
|
116
116
|
dataComponentId: string;
|
|
117
117
|
} | null>;
|
|
@@ -55,12 +55,12 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
55
55
|
}) => Promise<{
|
|
56
56
|
id: string;
|
|
57
57
|
name: string;
|
|
58
|
-
createdAt: string;
|
|
59
|
-
updatedAt: string;
|
|
60
58
|
description: string | null;
|
|
61
|
-
agentId: string;
|
|
62
|
-
projectId: string;
|
|
63
59
|
tenantId: string;
|
|
60
|
+
projectId: string;
|
|
61
|
+
agentId: string;
|
|
62
|
+
createdAt: string;
|
|
63
|
+
updatedAt: string;
|
|
64
64
|
functionId: string;
|
|
65
65
|
}>;
|
|
66
66
|
/**
|
|
@@ -97,12 +97,12 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
97
97
|
}) => Promise<{
|
|
98
98
|
id: string;
|
|
99
99
|
name: string;
|
|
100
|
-
createdAt: string;
|
|
101
|
-
updatedAt: string;
|
|
102
100
|
description: string | null;
|
|
103
|
-
agentId: string;
|
|
104
|
-
projectId: string;
|
|
105
101
|
tenantId: string;
|
|
102
|
+
projectId: string;
|
|
103
|
+
agentId: string;
|
|
104
|
+
createdAt: string;
|
|
105
|
+
updatedAt: string;
|
|
106
106
|
functionId: string;
|
|
107
107
|
}>;
|
|
108
108
|
declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -158,16 +158,16 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
|
|
|
158
158
|
}> | null;
|
|
159
159
|
}) => Promise<{
|
|
160
160
|
id: string;
|
|
161
|
+
tenantId: string;
|
|
162
|
+
projectId: string;
|
|
163
|
+
agentId: string;
|
|
161
164
|
createdAt: string;
|
|
162
165
|
updatedAt: string;
|
|
163
|
-
agentId: string;
|
|
164
|
-
projectId: string;
|
|
165
|
-
tenantId: string;
|
|
166
|
-
subAgentId: string;
|
|
167
|
-
functionToolId: string;
|
|
168
166
|
toolPolicies: Record<string, {
|
|
169
167
|
needsApproval?: boolean;
|
|
170
168
|
}> | null;
|
|
169
|
+
subAgentId: string;
|
|
170
|
+
functionToolId: string;
|
|
171
171
|
}>;
|
|
172
172
|
/**
|
|
173
173
|
* Update an agent-function tool relation
|
|
@@ -223,16 +223,16 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
|
|
|
223
223
|
}> | null;
|
|
224
224
|
}) => Promise<{
|
|
225
225
|
id: string;
|
|
226
|
+
tenantId: string;
|
|
227
|
+
projectId: string;
|
|
228
|
+
agentId: string;
|
|
226
229
|
createdAt: string;
|
|
227
230
|
updatedAt: string;
|
|
228
|
-
agentId: string;
|
|
229
|
-
projectId: string;
|
|
230
|
-
tenantId: string;
|
|
231
|
-
subAgentId: string;
|
|
232
|
-
functionToolId: string;
|
|
233
231
|
toolPolicies: Record<string, {
|
|
234
232
|
needsApproval?: boolean;
|
|
235
233
|
}> | null;
|
|
234
|
+
subAgentId: string;
|
|
235
|
+
functionToolId: string;
|
|
236
236
|
}>;
|
|
237
237
|
//#endregion
|
|
238
238
|
export { addFunctionToolToSubAgent, associateFunctionToolWithSubAgent, createFunctionTool, deleteFunctionTool, getFunctionToolById, getFunctionToolsForSubAgent, getSubAgentsUsingFunctionTool, isFunctionToolAssociatedWithSubAgent, listFunctionTools, removeFunctionToolFromSubAgent, updateFunctionTool, updateSubAgentFunctionToolRelation, upsertFunctionTool, upsertSubAgentFunctionToolRelation };
|
|
@@ -10,12 +10,12 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
10
10
|
}) => Promise<{
|
|
11
11
|
id: string;
|
|
12
12
|
name: string;
|
|
13
|
+
description: string;
|
|
14
|
+
tenantId: string;
|
|
15
|
+
projectId: string;
|
|
13
16
|
createdAt: string;
|
|
14
17
|
updatedAt: string;
|
|
15
18
|
metadata: Record<string, string> | null;
|
|
16
|
-
description: string;
|
|
17
|
-
projectId: string;
|
|
18
|
-
tenantId: string;
|
|
19
19
|
content: string;
|
|
20
20
|
} | null>;
|
|
21
21
|
declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -43,23 +43,23 @@ declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
43
43
|
declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
|
|
44
44
|
id: string;
|
|
45
45
|
name: string;
|
|
46
|
+
description: string;
|
|
47
|
+
tenantId: string;
|
|
48
|
+
projectId: string;
|
|
46
49
|
createdAt: string;
|
|
47
50
|
updatedAt: string;
|
|
48
51
|
metadata: Record<string, string> | null;
|
|
49
|
-
description: string;
|
|
50
|
-
projectId: string;
|
|
51
|
-
tenantId: string;
|
|
52
52
|
content: string;
|
|
53
53
|
}>;
|
|
54
54
|
declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
|
|
55
55
|
id: string;
|
|
56
56
|
name: string;
|
|
57
|
+
description: string;
|
|
58
|
+
tenantId: string;
|
|
59
|
+
projectId: string;
|
|
57
60
|
createdAt: string;
|
|
58
61
|
updatedAt: string;
|
|
59
62
|
metadata: Record<string, string> | null;
|
|
60
|
-
description: string;
|
|
61
|
-
projectId: string;
|
|
62
|
-
tenantId: string;
|
|
63
63
|
content: string;
|
|
64
64
|
}>;
|
|
65
65
|
declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -92,14 +92,14 @@ 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;
|
|
95
98
|
createdAt: string;
|
|
96
99
|
updatedAt: string;
|
|
97
|
-
agentId: string;
|
|
98
|
-
projectId: string;
|
|
99
|
-
tenantId: string;
|
|
100
|
-
subAgentId: string;
|
|
101
100
|
index: number;
|
|
102
101
|
alwaysLoaded: boolean;
|
|
102
|
+
subAgentId: string;
|
|
103
103
|
skillId: string;
|
|
104
104
|
}>;
|
|
105
105
|
declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -10,14 +10,14 @@ 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;
|
|
13
16
|
createdAt: string;
|
|
14
17
|
updatedAt: string;
|
|
15
18
|
headers: Record<string, string> | null;
|
|
16
|
-
agentId: string;
|
|
17
|
-
projectId: string;
|
|
18
|
-
tenantId: string;
|
|
19
|
-
subAgentId: string;
|
|
20
19
|
externalAgentId: string;
|
|
20
|
+
subAgentId: string;
|
|
21
21
|
} | undefined>;
|
|
22
22
|
declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
23
23
|
scopes: SubAgentScopeConfig;
|
|
@@ -45,27 +45,27 @@ 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;
|
|
48
51
|
createdAt: string;
|
|
49
52
|
updatedAt: string;
|
|
50
53
|
headers: Record<string, string> | null;
|
|
51
|
-
agentId: string;
|
|
52
|
-
projectId: string;
|
|
53
|
-
tenantId: string;
|
|
54
|
-
subAgentId: string;
|
|
55
54
|
externalAgentId: string;
|
|
55
|
+
subAgentId: string;
|
|
56
56
|
}[]>;
|
|
57
57
|
declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
58
58
|
scopes: AgentScopeConfig;
|
|
59
59
|
}) => Promise<{
|
|
60
60
|
id: string;
|
|
61
|
+
tenantId: string;
|
|
62
|
+
projectId: string;
|
|
63
|
+
agentId: string;
|
|
61
64
|
createdAt: string;
|
|
62
65
|
updatedAt: string;
|
|
63
66
|
headers: Record<string, string> | null;
|
|
64
|
-
agentId: string;
|
|
65
|
-
projectId: string;
|
|
66
|
-
tenantId: string;
|
|
67
|
-
subAgentId: string;
|
|
68
67
|
externalAgentId: string;
|
|
68
|
+
subAgentId: string;
|
|
69
69
|
}[]>;
|
|
70
70
|
declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
71
71
|
scopes: AgentScopeConfig;
|
|
@@ -181,14 +181,14 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
181
181
|
};
|
|
182
182
|
}) => Promise<{
|
|
183
183
|
id: string;
|
|
184
|
+
tenantId: string;
|
|
185
|
+
projectId: string;
|
|
186
|
+
agentId: string;
|
|
184
187
|
createdAt: string;
|
|
185
188
|
updatedAt: string;
|
|
186
189
|
headers: Record<string, string> | null;
|
|
187
|
-
agentId: string;
|
|
188
|
-
projectId: string;
|
|
189
|
-
tenantId: string;
|
|
190
|
-
subAgentId: string;
|
|
191
190
|
externalAgentId: string;
|
|
191
|
+
subAgentId: string;
|
|
192
192
|
}>;
|
|
193
193
|
/**
|
|
194
194
|
* Check if sub-agent external agent relation exists by params
|
|
@@ -198,14 +198,14 @@ 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;
|
|
201
204
|
createdAt: string;
|
|
202
205
|
updatedAt: string;
|
|
203
206
|
headers: Record<string, string> | null;
|
|
204
|
-
agentId: string;
|
|
205
|
-
projectId: string;
|
|
206
|
-
tenantId: string;
|
|
207
|
-
subAgentId: string;
|
|
208
207
|
externalAgentId: string;
|
|
208
|
+
subAgentId: string;
|
|
209
209
|
} | undefined>;
|
|
210
210
|
/**
|
|
211
211
|
* Upsert sub-agent external agent relation (create if it doesn't exist, update if it does)
|
|
@@ -219,14 +219,14 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
219
219
|
};
|
|
220
220
|
}) => Promise<{
|
|
221
221
|
id: string;
|
|
222
|
+
tenantId: string;
|
|
223
|
+
projectId: string;
|
|
224
|
+
agentId: string;
|
|
222
225
|
createdAt: string;
|
|
223
226
|
updatedAt: string;
|
|
224
227
|
headers: Record<string, string> | null;
|
|
225
|
-
agentId: string;
|
|
226
|
-
projectId: string;
|
|
227
|
-
tenantId: string;
|
|
228
|
-
subAgentId: string;
|
|
229
228
|
externalAgentId: string;
|
|
229
|
+
subAgentId: string;
|
|
230
230
|
}>;
|
|
231
231
|
declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
232
232
|
scopes: SubAgentScopeConfig;
|