@inkeep/agents-core 0.0.0-dev-20260409191739 → 0.0.0-dev-20260409202031
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-schema.d.ts +108 -108
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/client-exports.d.ts +2 -2
- package/dist/client-exports.js +2 -2
- package/dist/constants/otel-attributes.d.ts +2 -0
- package/dist/constants/otel-attributes.js +2 -0
- package/dist/data-access/index.d.ts +2 -2
- package/dist/data-access/index.js +2 -2
- package/dist/data-access/manage/agentFull.js +23 -3
- package/dist/data-access/manage/agents.d.ts +20 -20
- package/dist/data-access/manage/agents.js +12 -1
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +8 -8
- package/dist/data-access/manage/skills.d.ts +11 -11
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +12 -12
- package/dist/data-access/manage/tools.d.ts +21 -21
- package/dist/data-access/manage/triggerCleanup.js +6 -1
- package/dist/data-access/manage/triggers.d.ts +60 -1
- package/dist/data-access/manage/triggers.js +88 -3
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/apps.d.ts +6 -6
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/feedback.d.ts +4 -4
- package/dist/data-access/runtime/messages.d.ts +21 -21
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
- package/dist/data-access/runtime/scheduledTriggerUsers.d.ts +1 -1
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/data-access/runtime/triggerInvocations.d.ts +2 -0
- package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +583 -447
- package/dist/db/manage/manage-schema.js +43 -2
- package/dist/db/runtime/runtime-schema.d.ts +443 -405
- package/dist/db/runtime/runtime-schema.js +4 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +4 -4
- package/dist/utils/error.d.ts +51 -51
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas/skills.d.ts +58 -58
- package/dist/validation/schemas.d.ts +2238 -2044
- package/dist/validation/schemas.js +35 -13
- package/drizzle/manage/0018_gorgeous_captain_america.sql +14 -0
- package/drizzle/manage/meta/0018_snapshot.json +3884 -0
- package/drizzle/manage/meta/_journal.json +7 -0
- package/drizzle/runtime/0035_many_steel_serpent.sql +3 -0
- package/drizzle/runtime/meta/0035_snapshot.json +5321 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ import { createSubAgentRelation, deleteAgentRelationsByAgent, deleteAgentToolRel
|
|
|
12
12
|
import { deleteSubAgent, listSubAgents, upsertSubAgent } from "./subAgents.js";
|
|
13
13
|
import { deleteSubAgentTeamAgentRelation, getSubAgentTeamAgentRelationsByAgent, upsertSubAgentTeamAgentRelation } from "./subAgentTeamAgentRelations.js";
|
|
14
14
|
import { upsertSubAgentToolRelation } from "./tools.js";
|
|
15
|
-
import { deleteTrigger, listTriggers, upsertTrigger } from "./triggers.js";
|
|
15
|
+
import { deleteTrigger, listTriggers, setTriggerUsers, upsertTrigger } from "./triggers.js";
|
|
16
16
|
import { deleteAgent, getAgentById, getFullAgentDefinition, getFullAgentDefinitionWithRelationIds, updateAgent, upsertAgent } from "./agents.js";
|
|
17
17
|
import { associateArtifactComponentWithAgent, deleteAgentArtifactComponentRelationByAgent, upsertAgentArtifactComponentRelation } from "./artifactComponents.js";
|
|
18
18
|
import { associateDataComponentWithAgent, deleteAgentDataComponentRelationByAgent, upsertAgentDataComponentRelation } from "./dataComponents.js";
|
|
@@ -285,6 +285,7 @@ const createFullAgentServerSide = (db) => async (scopes, agentData) => {
|
|
|
285
285
|
agentId: finalAgentId,
|
|
286
286
|
triggerId
|
|
287
287
|
}, "Creating trigger in agent");
|
|
288
|
+
const { runAsUserIds, ...triggerInsertData } = triggerData;
|
|
288
289
|
await upsertTrigger(db)({
|
|
289
290
|
scopes: {
|
|
290
291
|
tenantId,
|
|
@@ -292,13 +293,22 @@ const createFullAgentServerSide = (db) => async (scopes, agentData) => {
|
|
|
292
293
|
agentId: finalAgentId
|
|
293
294
|
},
|
|
294
295
|
data: {
|
|
295
|
-
...
|
|
296
|
+
...triggerInsertData,
|
|
296
297
|
id: triggerId,
|
|
297
298
|
tenantId,
|
|
298
299
|
projectId,
|
|
299
300
|
agentId: finalAgentId
|
|
300
301
|
}
|
|
301
302
|
});
|
|
303
|
+
if (runAsUserIds && runAsUserIds.length > 0) await setTriggerUsers(db)({
|
|
304
|
+
scopes: {
|
|
305
|
+
tenantId,
|
|
306
|
+
projectId,
|
|
307
|
+
agentId: finalAgentId
|
|
308
|
+
},
|
|
309
|
+
triggerId,
|
|
310
|
+
userIds: runAsUserIds
|
|
311
|
+
});
|
|
302
312
|
logger.info({
|
|
303
313
|
agentId: finalAgentId,
|
|
304
314
|
triggerId
|
|
@@ -857,6 +867,7 @@ const updateFullAgentServerSide = (db) => async (scopes, agentData) => {
|
|
|
857
867
|
agentId: finalAgentId,
|
|
858
868
|
triggerId
|
|
859
869
|
}, "Updating trigger in agent");
|
|
870
|
+
const { runAsUserIds, ...triggerInsertData } = triggerData;
|
|
860
871
|
await upsertTrigger(db)({
|
|
861
872
|
scopes: {
|
|
862
873
|
tenantId,
|
|
@@ -864,13 +875,22 @@ const updateFullAgentServerSide = (db) => async (scopes, agentData) => {
|
|
|
864
875
|
agentId: finalAgentId
|
|
865
876
|
},
|
|
866
877
|
data: {
|
|
867
|
-
...
|
|
878
|
+
...triggerInsertData,
|
|
868
879
|
id: triggerId,
|
|
869
880
|
tenantId,
|
|
870
881
|
projectId,
|
|
871
882
|
agentId: finalAgentId
|
|
872
883
|
}
|
|
873
884
|
});
|
|
885
|
+
if (runAsUserIds !== void 0) await setTriggerUsers(db)({
|
|
886
|
+
scopes: {
|
|
887
|
+
tenantId,
|
|
888
|
+
projectId,
|
|
889
|
+
agentId: finalAgentId
|
|
890
|
+
},
|
|
891
|
+
triggerId,
|
|
892
|
+
userIds: runAsUserIds
|
|
893
|
+
});
|
|
874
894
|
logger.info({
|
|
875
895
|
agentId: finalAgentId,
|
|
876
896
|
triggerId
|
|
@@ -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;
|
|
13
14
|
id: string;
|
|
14
15
|
name: string;
|
|
15
16
|
createdAt: string;
|
|
16
17
|
updatedAt: string;
|
|
17
|
-
|
|
18
|
+
projectId: string;
|
|
19
|
+
tenantId: string;
|
|
18
20
|
models: {
|
|
19
21
|
base?: {
|
|
20
22
|
model?: string | undefined;
|
|
@@ -38,10 +40,9 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
38
40
|
stopWhen: {
|
|
39
41
|
transferCountIs?: number | undefined;
|
|
40
42
|
} | null;
|
|
41
|
-
|
|
43
|
+
prompt: string | null;
|
|
42
44
|
defaultSubAgentId: string | null;
|
|
43
45
|
contextConfigId: string | null;
|
|
44
|
-
prompt: string | null;
|
|
45
46
|
statusUpdates: {
|
|
46
47
|
enabled?: boolean | undefined;
|
|
47
48
|
numEvents?: number | undefined;
|
|
@@ -58,16 +59,17 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
58
59
|
}[] | undefined;
|
|
59
60
|
} | null;
|
|
60
61
|
executionMode: "classic" | "durable";
|
|
61
|
-
projectId: string;
|
|
62
62
|
} | null>;
|
|
63
63
|
declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
64
64
|
scopes: AgentScopeConfig;
|
|
65
65
|
}) => Promise<{
|
|
66
|
+
description: string | null;
|
|
66
67
|
id: string;
|
|
67
68
|
name: string;
|
|
68
69
|
createdAt: string;
|
|
69
70
|
updatedAt: string;
|
|
70
|
-
|
|
71
|
+
projectId: string;
|
|
72
|
+
tenantId: string;
|
|
71
73
|
models: {
|
|
72
74
|
base?: {
|
|
73
75
|
model?: string | undefined;
|
|
@@ -91,10 +93,9 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
91
93
|
stopWhen: {
|
|
92
94
|
transferCountIs?: number | undefined;
|
|
93
95
|
} | null;
|
|
94
|
-
|
|
96
|
+
prompt: string | null;
|
|
95
97
|
defaultSubAgentId: string | null;
|
|
96
98
|
contextConfigId: string | null;
|
|
97
|
-
prompt: string | null;
|
|
98
99
|
statusUpdates: {
|
|
99
100
|
enabled?: boolean | undefined;
|
|
100
101
|
numEvents?: number | undefined;
|
|
@@ -111,13 +112,14 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
111
112
|
}[] | undefined;
|
|
112
113
|
} | null;
|
|
113
114
|
executionMode: "classic" | "durable";
|
|
114
|
-
projectId: string;
|
|
115
115
|
defaultSubAgent: {
|
|
116
|
+
description: string | null;
|
|
116
117
|
id: string;
|
|
117
118
|
name: string;
|
|
118
119
|
createdAt: string;
|
|
119
120
|
updatedAt: string;
|
|
120
|
-
|
|
121
|
+
projectId: string;
|
|
122
|
+
tenantId: string;
|
|
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
|
-
tenantId: string;
|
|
145
|
-
prompt: string | null;
|
|
146
|
-
projectId: string;
|
|
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;
|
|
154
155
|
id: string;
|
|
155
156
|
name: string;
|
|
156
157
|
createdAt: string;
|
|
157
158
|
updatedAt: string;
|
|
158
|
-
|
|
159
|
+
projectId: string;
|
|
160
|
+
tenantId: string;
|
|
159
161
|
models: {
|
|
160
162
|
base?: {
|
|
161
163
|
model?: string | undefined;
|
|
@@ -179,10 +181,9 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
179
181
|
stopWhen: {
|
|
180
182
|
transferCountIs?: number | undefined;
|
|
181
183
|
} | null;
|
|
182
|
-
|
|
184
|
+
prompt: string | null;
|
|
183
185
|
defaultSubAgentId: string | null;
|
|
184
186
|
contextConfigId: string | null;
|
|
185
|
-
prompt: string | null;
|
|
186
187
|
statusUpdates: {
|
|
187
188
|
enabled?: boolean | undefined;
|
|
188
189
|
numEvents?: number | undefined;
|
|
@@ -199,7 +200,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
199
200
|
}[] | undefined;
|
|
200
201
|
} | null;
|
|
201
202
|
executionMode: "classic" | "durable";
|
|
202
|
-
projectId: string;
|
|
203
203
|
}[]>;
|
|
204
204
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
205
205
|
scopes: ProjectScopeConfig;
|
|
@@ -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;
|
|
284
285
|
id: string;
|
|
285
286
|
name: string;
|
|
286
287
|
createdAt: string;
|
|
287
288
|
updatedAt: string;
|
|
288
|
-
|
|
289
|
+
projectId: string;
|
|
290
|
+
tenantId: string;
|
|
289
291
|
models: {
|
|
290
292
|
base?: {
|
|
291
293
|
model?: string | undefined;
|
|
@@ -309,10 +311,9 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
309
311
|
stopWhen: {
|
|
310
312
|
transferCountIs?: number | undefined;
|
|
311
313
|
} | null;
|
|
312
|
-
|
|
314
|
+
prompt: string | null;
|
|
313
315
|
defaultSubAgentId: string | null;
|
|
314
316
|
contextConfigId: string | null;
|
|
315
|
-
prompt: string | null;
|
|
316
317
|
statusUpdates: {
|
|
317
318
|
enabled?: boolean | undefined;
|
|
318
319
|
numEvents?: number | undefined;
|
|
@@ -329,7 +330,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
329
330
|
}[] | undefined;
|
|
330
331
|
} | null;
|
|
331
332
|
executionMode: "classic" | "durable";
|
|
332
|
-
projectId: string;
|
|
333
333
|
}>;
|
|
334
334
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
335
335
|
scopes: AgentScopeConfig;
|
|
@@ -16,7 +16,7 @@ import { getAgentRelations, getAgentRelationsByAgent } from "./subAgentRelations
|
|
|
16
16
|
import { getSubAgentById } from "./subAgents.js";
|
|
17
17
|
import { getSubAgentTeamAgentRelationsByAgent } from "./subAgentTeamAgentRelations.js";
|
|
18
18
|
import { listTools } from "./tools.js";
|
|
19
|
-
import { listTriggers } from "./triggers.js";
|
|
19
|
+
import { getTriggerUsersBatch, listTriggers } from "./triggers.js";
|
|
20
20
|
import { and, count, desc, eq, inArray, sql } from "drizzle-orm";
|
|
21
21
|
|
|
22
22
|
//#region src/data-access/manage/agents.ts
|
|
@@ -552,6 +552,15 @@ const getFullAgentDefinitionInternal = (db) => async ({ scopes: { tenantId, proj
|
|
|
552
552
|
count: triggersList.length
|
|
553
553
|
}, "Fetched triggers for agent");
|
|
554
554
|
if (triggersList.length > 0) {
|
|
555
|
+
const triggerIds = triggersList.map((t) => t.id);
|
|
556
|
+
const usersByTrigger = await getTriggerUsersBatch(db)({
|
|
557
|
+
scopes: {
|
|
558
|
+
tenantId,
|
|
559
|
+
projectId,
|
|
560
|
+
agentId
|
|
561
|
+
},
|
|
562
|
+
triggerIds
|
|
563
|
+
});
|
|
555
564
|
const triggersObject = {};
|
|
556
565
|
for (const trigger of triggersList) triggersObject[trigger.id] = {
|
|
557
566
|
id: trigger.id,
|
|
@@ -564,7 +573,9 @@ const getFullAgentDefinitionInternal = (db) => async ({ scopes: { tenantId, proj
|
|
|
564
573
|
authentication: trigger.authentication,
|
|
565
574
|
signingSecretCredentialReferenceId: trigger.signingSecretCredentialReferenceId,
|
|
566
575
|
signatureVerification: trigger.signatureVerification,
|
|
576
|
+
dispatchDelayMs: trigger.dispatchDelayMs,
|
|
567
577
|
runAsUserId: trigger.runAsUserId,
|
|
578
|
+
runAsUserIds: usersByTrigger.get(trigger.id) ?? [],
|
|
568
579
|
createdBy: trigger.createdBy
|
|
569
580
|
};
|
|
570
581
|
result.triggers = triggersObject;
|
|
@@ -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;
|
|
12
13
|
id: string;
|
|
13
14
|
name: string;
|
|
14
15
|
createdAt: string;
|
|
15
16
|
updatedAt: string;
|
|
16
|
-
description: string | null;
|
|
17
|
-
tenantId: string;
|
|
18
17
|
projectId: string;
|
|
18
|
+
tenantId: string;
|
|
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;
|
|
68
69
|
id: string;
|
|
69
70
|
name: string;
|
|
70
71
|
createdAt: string;
|
|
71
72
|
updatedAt: string;
|
|
72
|
-
description: string | null;
|
|
73
|
-
tenantId: string;
|
|
74
73
|
projectId: string;
|
|
74
|
+
tenantId: string;
|
|
75
75
|
props: {
|
|
76
76
|
[x: string]: unknown;
|
|
77
77
|
type: "object";
|
|
@@ -143,8 +143,8 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
143
143
|
}) => Promise<{
|
|
144
144
|
id: string;
|
|
145
145
|
createdAt: string;
|
|
146
|
-
tenantId: string;
|
|
147
146
|
projectId: string;
|
|
147
|
+
tenantId: string;
|
|
148
148
|
agentId: string;
|
|
149
149
|
subAgentId: string;
|
|
150
150
|
artifactComponentId: string;
|
|
@@ -186,8 +186,8 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
|
|
|
186
186
|
}) => Promise<{
|
|
187
187
|
id: string;
|
|
188
188
|
createdAt: string;
|
|
189
|
-
tenantId: string;
|
|
190
189
|
projectId: string;
|
|
190
|
+
tenantId: string;
|
|
191
191
|
agentId: string;
|
|
192
192
|
subAgentId: string;
|
|
193
193
|
artifactComponentId: string;
|
|
@@ -12,11 +12,11 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
-
tenantId: string;
|
|
16
15
|
projectId: string;
|
|
16
|
+
tenantId: string;
|
|
17
|
+
agentId: string;
|
|
17
18
|
headersSchema: unknown;
|
|
18
19
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
19
|
-
agentId: string;
|
|
20
20
|
} | undefined>;
|
|
21
21
|
declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
22
22
|
scopes: AgentScopeConfig;
|
|
@@ -24,11 +24,11 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
24
24
|
id: string;
|
|
25
25
|
createdAt: string;
|
|
26
26
|
updatedAt: string;
|
|
27
|
-
tenantId: string;
|
|
28
27
|
projectId: string;
|
|
28
|
+
tenantId: string;
|
|
29
|
+
agentId: string;
|
|
29
30
|
headersSchema: unknown;
|
|
30
31
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
31
|
-
agentId: string;
|
|
32
32
|
}[]>;
|
|
33
33
|
declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
34
34
|
scopes: AgentScopeConfig;
|
|
@@ -46,11 +46,11 @@ declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
46
46
|
id: string;
|
|
47
47
|
createdAt: string;
|
|
48
48
|
updatedAt: string;
|
|
49
|
-
tenantId: string;
|
|
50
49
|
projectId: string;
|
|
50
|
+
tenantId: string;
|
|
51
|
+
agentId: string;
|
|
51
52
|
headersSchema: unknown;
|
|
52
53
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
53
|
-
agentId: string;
|
|
54
54
|
}>;
|
|
55
55
|
declare const updateContextConfig: (db: AgentsManageDatabaseClient) => (params: {
|
|
56
56
|
scopes: AgentScopeConfig;
|
|
@@ -86,11 +86,11 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
86
86
|
id: string;
|
|
87
87
|
createdAt: string;
|
|
88
88
|
updatedAt: string;
|
|
89
|
-
tenantId: string;
|
|
90
89
|
projectId: string;
|
|
90
|
+
tenantId: string;
|
|
91
|
+
agentId: string;
|
|
91
92
|
headersSchema: unknown;
|
|
92
93
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
93
|
-
agentId: string;
|
|
94
94
|
}>;
|
|
95
95
|
//#endregion
|
|
96
96
|
export { countContextConfigs, createContextConfig, deleteContextConfig, getContextConfigById, hasContextConfig, listContextConfigs, listContextConfigsPaginated, updateContextConfig, upsertContextConfig };
|
|
@@ -67,8 +67,8 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
67
67
|
}) => Promise<{
|
|
68
68
|
id: string;
|
|
69
69
|
createdAt: string;
|
|
70
|
-
tenantId: string;
|
|
71
70
|
projectId: string;
|
|
71
|
+
tenantId: string;
|
|
72
72
|
agentId: string;
|
|
73
73
|
subAgentId: string;
|
|
74
74
|
dataComponentId: string;
|
|
@@ -109,8 +109,8 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
|
|
|
109
109
|
}) => Promise<{
|
|
110
110
|
id: string;
|
|
111
111
|
createdAt: string;
|
|
112
|
-
tenantId: string;
|
|
113
112
|
projectId: string;
|
|
113
|
+
tenantId: string;
|
|
114
114
|
agentId: string;
|
|
115
115
|
subAgentId: string;
|
|
116
116
|
dataComponentId: string;
|
|
@@ -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;
|
|
56
57
|
id: string;
|
|
57
58
|
name: string;
|
|
58
59
|
createdAt: string;
|
|
59
60
|
updatedAt: string;
|
|
60
|
-
description: string | null;
|
|
61
|
-
tenantId: string;
|
|
62
61
|
projectId: string;
|
|
62
|
+
tenantId: string;
|
|
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;
|
|
98
99
|
id: string;
|
|
99
100
|
name: string;
|
|
100
101
|
createdAt: string;
|
|
101
102
|
updatedAt: string;
|
|
102
|
-
description: string | null;
|
|
103
|
-
tenantId: string;
|
|
104
103
|
projectId: string;
|
|
104
|
+
tenantId: string;
|
|
105
105
|
agentId: string;
|
|
106
106
|
functionId: string;
|
|
107
107
|
}>;
|
|
@@ -160,14 +160,14 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
|
|
|
160
160
|
id: string;
|
|
161
161
|
createdAt: string;
|
|
162
162
|
updatedAt: string;
|
|
163
|
-
tenantId: string;
|
|
164
163
|
projectId: string;
|
|
164
|
+
tenantId: string;
|
|
165
165
|
agentId: string;
|
|
166
166
|
subAgentId: string;
|
|
167
|
+
functionToolId: string;
|
|
167
168
|
toolPolicies: Record<string, {
|
|
168
169
|
needsApproval?: boolean;
|
|
169
170
|
}> | null;
|
|
170
|
-
functionToolId: string;
|
|
171
171
|
}>;
|
|
172
172
|
/**
|
|
173
173
|
* Update an agent-function tool relation
|
|
@@ -225,14 +225,14 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
|
|
|
225
225
|
id: string;
|
|
226
226
|
createdAt: string;
|
|
227
227
|
updatedAt: string;
|
|
228
|
-
tenantId: string;
|
|
229
228
|
projectId: string;
|
|
229
|
+
tenantId: string;
|
|
230
230
|
agentId: string;
|
|
231
231
|
subAgentId: string;
|
|
232
|
+
functionToolId: string;
|
|
232
233
|
toolPolicies: Record<string, {
|
|
233
234
|
needsApproval?: boolean;
|
|
234
235
|
}> | null;
|
|
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 };
|
|
@@ -15,15 +15,15 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
15
15
|
scopes: ProjectScopeConfig;
|
|
16
16
|
skillId: string;
|
|
17
17
|
}) => Promise<{
|
|
18
|
+
description: string;
|
|
18
19
|
id: string;
|
|
19
20
|
name: string;
|
|
21
|
+
content: string;
|
|
22
|
+
metadata: Record<string, string> | null;
|
|
20
23
|
createdAt: string;
|
|
21
24
|
updatedAt: string;
|
|
22
|
-
metadata: Record<string, string> | null;
|
|
23
|
-
description: string;
|
|
24
|
-
tenantId: string;
|
|
25
25
|
projectId: string;
|
|
26
|
-
|
|
26
|
+
tenantId: 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;
|
|
113
114
|
id: string;
|
|
114
115
|
name: string;
|
|
116
|
+
content: string;
|
|
117
|
+
metadata: Record<string, string> | null;
|
|
115
118
|
createdAt: string;
|
|
116
119
|
updatedAt: string;
|
|
117
|
-
metadata: Record<string, string> | null;
|
|
118
|
-
description: string;
|
|
119
|
-
tenantId: string;
|
|
120
120
|
projectId: string;
|
|
121
|
-
|
|
121
|
+
tenantId: string;
|
|
122
122
|
}>;
|
|
123
123
|
declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
124
124
|
scopes: ProjectScopeConfig;
|
|
@@ -142,13 +142,13 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
|
|
|
142
142
|
id: string;
|
|
143
143
|
createdAt: string;
|
|
144
144
|
updatedAt: string;
|
|
145
|
-
tenantId: string;
|
|
146
145
|
projectId: string;
|
|
146
|
+
tenantId: string;
|
|
147
147
|
agentId: string;
|
|
148
|
-
|
|
148
|
+
subAgentId: string;
|
|
149
149
|
index: number;
|
|
150
150
|
alwaysLoaded: boolean;
|
|
151
|
-
|
|
151
|
+
skillId: string;
|
|
152
152
|
}>;
|
|
153
153
|
declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
154
154
|
scopes: AgentScopeConfig;
|
|
@@ -12,8 +12,8 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
-
tenantId: string;
|
|
16
15
|
projectId: string;
|
|
16
|
+
tenantId: string;
|
|
17
17
|
agentId: string;
|
|
18
18
|
subAgentId: string;
|
|
19
19
|
headers: Record<string, string> | null;
|
|
@@ -47,8 +47,8 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
|
|
|
47
47
|
id: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
|
-
tenantId: string;
|
|
51
50
|
projectId: string;
|
|
51
|
+
tenantId: string;
|
|
52
52
|
agentId: string;
|
|
53
53
|
subAgentId: string;
|
|
54
54
|
headers: Record<string, string> | null;
|
|
@@ -60,8 +60,8 @@ declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabas
|
|
|
60
60
|
id: string;
|
|
61
61
|
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
|
-
tenantId: string;
|
|
64
63
|
projectId: string;
|
|
64
|
+
tenantId: string;
|
|
65
65
|
agentId: string;
|
|
66
66
|
subAgentId: string;
|
|
67
67
|
headers: Record<string, string> | null;
|
|
@@ -189,8 +189,8 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
189
189
|
id: string;
|
|
190
190
|
createdAt: string;
|
|
191
191
|
updatedAt: string;
|
|
192
|
-
tenantId: string;
|
|
193
192
|
projectId: string;
|
|
193
|
+
tenantId: string;
|
|
194
194
|
agentId: string;
|
|
195
195
|
subAgentId: string;
|
|
196
196
|
headers: Record<string, string> | null;
|
|
@@ -206,8 +206,8 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
|
|
|
206
206
|
id: string;
|
|
207
207
|
createdAt: string;
|
|
208
208
|
updatedAt: string;
|
|
209
|
-
tenantId: string;
|
|
210
209
|
projectId: string;
|
|
210
|
+
tenantId: string;
|
|
211
211
|
agentId: string;
|
|
212
212
|
subAgentId: string;
|
|
213
213
|
headers: Record<string, string> | null;
|
|
@@ -227,8 +227,8 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
227
227
|
id: string;
|
|
228
228
|
createdAt: string;
|
|
229
229
|
updatedAt: string;
|
|
230
|
-
tenantId: string;
|
|
231
230
|
projectId: string;
|
|
231
|
+
tenantId: string;
|
|
232
232
|
agentId: string;
|
|
233
233
|
subAgentId: string;
|
|
234
234
|
headers: Record<string, string> | null;
|
|
@@ -12,8 +12,8 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
-
tenantId: string;
|
|
16
15
|
projectId: string;
|
|
16
|
+
tenantId: string;
|
|
17
17
|
agentId: string;
|
|
18
18
|
sourceSubAgentId: string;
|
|
19
19
|
targetSubAgentId: string | null;
|
|
@@ -47,8 +47,8 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
47
47
|
id: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
|
-
tenantId: string;
|
|
51
50
|
projectId: string;
|
|
51
|
+
tenantId: string;
|
|
52
52
|
agentId: string;
|
|
53
53
|
sourceSubAgentId: string;
|
|
54
54
|
targetSubAgentId: string | null;
|
|
@@ -60,8 +60,8 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
|
|
|
60
60
|
id: string;
|
|
61
61
|
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
|
-
tenantId: string;
|
|
64
63
|
projectId: string;
|
|
64
|
+
tenantId: string;
|
|
65
65
|
agentId: string;
|
|
66
66
|
sourceSubAgentId: string;
|
|
67
67
|
targetSubAgentId: string | null;
|
|
@@ -129,8 +129,8 @@ declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
129
129
|
id: string;
|
|
130
130
|
createdAt: string;
|
|
131
131
|
updatedAt: string;
|
|
132
|
-
tenantId: string;
|
|
133
132
|
projectId: string;
|
|
133
|
+
tenantId: string;
|
|
134
134
|
agentId: string;
|
|
135
135
|
sourceSubAgentId: string;
|
|
136
136
|
targetSubAgentId: string | null;
|
|
@@ -148,8 +148,8 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
|
|
|
148
148
|
id: string;
|
|
149
149
|
createdAt: string;
|
|
150
150
|
updatedAt: string;
|
|
151
|
-
tenantId: string;
|
|
152
151
|
projectId: string;
|
|
152
|
+
tenantId: string;
|
|
153
153
|
agentId: string;
|
|
154
154
|
sourceSubAgentId: string;
|
|
155
155
|
targetSubAgentId: string | null;
|
|
@@ -162,8 +162,8 @@ declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
162
162
|
id: string;
|
|
163
163
|
createdAt: string;
|
|
164
164
|
updatedAt: string;
|
|
165
|
-
tenantId: string;
|
|
166
165
|
projectId: string;
|
|
166
|
+
tenantId: string;
|
|
167
167
|
agentId: string;
|
|
168
168
|
sourceSubAgentId: string;
|
|
169
169
|
targetSubAgentId: string | null;
|
|
@@ -207,16 +207,16 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
|
|
|
207
207
|
id: string;
|
|
208
208
|
createdAt: string;
|
|
209
209
|
updatedAt: string;
|
|
210
|
-
tenantId: string;
|
|
211
210
|
projectId: string;
|
|
211
|
+
tenantId: string;
|
|
212
212
|
agentId: string;
|
|
213
|
-
toolId: string;
|
|
214
213
|
subAgentId: string;
|
|
214
|
+
toolId: string;
|
|
215
215
|
headers: Record<string, string> | null;
|
|
216
|
-
selectedTools: string[] | null;
|
|
217
216
|
toolPolicies: Record<string, {
|
|
218
217
|
needsApproval?: boolean;
|
|
219
218
|
}> | null;
|
|
219
|
+
selectedTools: string[] | null;
|
|
220
220
|
}>;
|
|
221
221
|
declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
222
222
|
scopes: AgentScopeConfig;
|
|
@@ -251,16 +251,16 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
|
|
|
251
251
|
id: string;
|
|
252
252
|
createdAt: string;
|
|
253
253
|
updatedAt: string;
|
|
254
|
-
tenantId: string;
|
|
255
254
|
projectId: string;
|
|
255
|
+
tenantId: string;
|
|
256
256
|
agentId: string;
|
|
257
|
-
toolId: string;
|
|
258
257
|
subAgentId: string;
|
|
258
|
+
toolId: string;
|
|
259
259
|
headers: Record<string, string> | null;
|
|
260
|
-
selectedTools: string[] | null;
|
|
261
260
|
toolPolicies: Record<string, {
|
|
262
261
|
needsApproval?: boolean;
|
|
263
262
|
}> | null;
|
|
263
|
+
selectedTools: string[] | null;
|
|
264
264
|
} | undefined>;
|
|
265
265
|
declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
266
266
|
scopes: SubAgentScopeConfig;
|