@inkeep/agents-core 0.68.0 → 0.68.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.
- package/dist/auth/auth-schema.d.ts +163 -163
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/auth.js +14 -0
- 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/data-access/index.d.ts +2 -1
- package/dist/data-access/index.js +2 -1
- package/dist/data-access/manage/agents.d.ts +36 -36
- package/dist/data-access/manage/artifactComponents.d.ts +6 -6
- package/dist/data-access/manage/contextConfigs.d.ts +4 -4
- package/dist/data-access/manage/dataComponents.d.ts +2 -2
- package/dist/data-access/manage/functionTools.d.ts +6 -6
- package/dist/data-access/manage/skills.d.ts +10 -10
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +12 -12
- 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/triggers.d.ts +4 -4
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +32 -17
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/feedback.d.ts +6 -6
- package/dist/data-access/runtime/invitationProjectAssignments.d.ts +16 -0
- package/dist/data-access/runtime/invitationProjectAssignments.js +25 -0
- 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 +6 -6
- package/dist/db/manage/manage-schema.d.ts +362 -362
- package/dist/db/runtime/runtime-schema.d.ts +485 -383
- package/dist/db/runtime/runtime-schema.js +13 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.js +4 -3
- package/dist/types/index.d.ts +2 -2
- package/dist/types/utility.d.ts +5 -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 +47 -47
- package/dist/validation/schemas.d.ts +2340 -2242
- package/dist/validation/schemas.js +20 -4
- package/drizzle/runtime/0037_mysterious_gargoyle.sql +10 -0
- package/drizzle/runtime/meta/0037_snapshot.json +5990 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -12,14 +12,11 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
12
12
|
}) => Promise<{
|
|
13
13
|
id: string;
|
|
14
14
|
name: string;
|
|
15
|
+
description: string | null;
|
|
15
16
|
createdAt: string;
|
|
16
17
|
updatedAt: string;
|
|
17
|
-
description: string | null;
|
|
18
|
-
prompt: string | null;
|
|
19
|
-
tenantId: string;
|
|
20
18
|
projectId: string;
|
|
21
|
-
|
|
22
|
-
contextConfigId: string | null;
|
|
19
|
+
tenantId: string;
|
|
23
20
|
models: {
|
|
24
21
|
base?: {
|
|
25
22
|
model?: string | undefined;
|
|
@@ -40,6 +37,12 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
40
37
|
allowedProviders?: string[] | undefined;
|
|
41
38
|
} | undefined;
|
|
42
39
|
} | null;
|
|
40
|
+
stopWhen: {
|
|
41
|
+
transferCountIs?: number | undefined;
|
|
42
|
+
} | null;
|
|
43
|
+
defaultSubAgentId: string | null;
|
|
44
|
+
contextConfigId: string | null;
|
|
45
|
+
prompt: string | null;
|
|
43
46
|
statusUpdates: {
|
|
44
47
|
enabled?: boolean | undefined;
|
|
45
48
|
numEvents?: number | undefined;
|
|
@@ -55,9 +58,6 @@ 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: {
|
|
@@ -65,14 +65,11 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
65
65
|
}) => Promise<{
|
|
66
66
|
id: string;
|
|
67
67
|
name: string;
|
|
68
|
+
description: string | null;
|
|
68
69
|
createdAt: string;
|
|
69
70
|
updatedAt: string;
|
|
70
|
-
description: string | null;
|
|
71
|
-
prompt: string | null;
|
|
72
|
-
tenantId: string;
|
|
73
71
|
projectId: string;
|
|
74
|
-
|
|
75
|
-
contextConfigId: string | null;
|
|
72
|
+
tenantId: string;
|
|
76
73
|
models: {
|
|
77
74
|
base?: {
|
|
78
75
|
model?: string | undefined;
|
|
@@ -93,6 +90,12 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
93
90
|
allowedProviders?: string[] | undefined;
|
|
94
91
|
} | undefined;
|
|
95
92
|
} | null;
|
|
93
|
+
stopWhen: {
|
|
94
|
+
transferCountIs?: number | undefined;
|
|
95
|
+
} | null;
|
|
96
|
+
defaultSubAgentId: string | null;
|
|
97
|
+
contextConfigId: string | null;
|
|
98
|
+
prompt: string | null;
|
|
96
99
|
statusUpdates: {
|
|
97
100
|
enabled?: boolean | undefined;
|
|
98
101
|
numEvents?: number | undefined;
|
|
@@ -108,20 +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
117
|
name: string;
|
|
118
|
+
description: string | null;
|
|
118
119
|
createdAt: string;
|
|
119
120
|
updatedAt: string;
|
|
120
|
-
description: string | null;
|
|
121
|
-
prompt: string | null;
|
|
122
|
-
tenantId: string;
|
|
123
|
-
agentId: string;
|
|
124
121
|
projectId: string;
|
|
122
|
+
tenantId: string;
|
|
125
123
|
models: {
|
|
126
124
|
base?: {
|
|
127
125
|
model?: string | undefined;
|
|
@@ -145,6 +143,8 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
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
|
} | null;
|
|
150
150
|
} | null>;
|
|
@@ -153,14 +153,11 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
153
153
|
}) => Promise<{
|
|
154
154
|
id: string;
|
|
155
155
|
name: string;
|
|
156
|
+
description: string | null;
|
|
156
157
|
createdAt: string;
|
|
157
158
|
updatedAt: string;
|
|
158
|
-
description: string | null;
|
|
159
|
-
prompt: string | null;
|
|
160
|
-
tenantId: string;
|
|
161
159
|
projectId: string;
|
|
162
|
-
|
|
163
|
-
contextConfigId: string | null;
|
|
160
|
+
tenantId: string;
|
|
164
161
|
models: {
|
|
165
162
|
base?: {
|
|
166
163
|
model?: string | undefined;
|
|
@@ -181,6 +178,12 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
181
178
|
allowedProviders?: string[] | undefined;
|
|
182
179
|
} | undefined;
|
|
183
180
|
} | null;
|
|
181
|
+
stopWhen: {
|
|
182
|
+
transferCountIs?: number | undefined;
|
|
183
|
+
} | null;
|
|
184
|
+
defaultSubAgentId: string | null;
|
|
185
|
+
contextConfigId: string | null;
|
|
186
|
+
prompt: string | null;
|
|
184
187
|
statusUpdates: {
|
|
185
188
|
enabled?: boolean | undefined;
|
|
186
189
|
numEvents?: number | undefined;
|
|
@@ -196,9 +199,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
196
199
|
} | undefined;
|
|
197
200
|
}[] | undefined;
|
|
198
201
|
} | null;
|
|
199
|
-
stopWhen: {
|
|
200
|
-
transferCountIs?: number | undefined;
|
|
201
|
-
} | null;
|
|
202
202
|
executionMode: "classic" | "durable";
|
|
203
203
|
}[]>;
|
|
204
204
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -283,14 +283,11 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
|
|
|
283
283
|
declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
|
|
284
284
|
id: string;
|
|
285
285
|
name: string;
|
|
286
|
+
description: string | null;
|
|
286
287
|
createdAt: string;
|
|
287
288
|
updatedAt: string;
|
|
288
|
-
description: string | null;
|
|
289
|
-
prompt: string | null;
|
|
290
|
-
tenantId: string;
|
|
291
289
|
projectId: string;
|
|
292
|
-
|
|
293
|
-
contextConfigId: string | null;
|
|
290
|
+
tenantId: string;
|
|
294
291
|
models: {
|
|
295
292
|
base?: {
|
|
296
293
|
model?: string | undefined;
|
|
@@ -311,6 +308,12 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
311
308
|
allowedProviders?: string[] | undefined;
|
|
312
309
|
} | undefined;
|
|
313
310
|
} | null;
|
|
311
|
+
stopWhen: {
|
|
312
|
+
transferCountIs?: number | undefined;
|
|
313
|
+
} | null;
|
|
314
|
+
defaultSubAgentId: string | null;
|
|
315
|
+
contextConfigId: string | null;
|
|
316
|
+
prompt: string | null;
|
|
314
317
|
statusUpdates: {
|
|
315
318
|
enabled?: boolean | undefined;
|
|
316
319
|
numEvents?: number | undefined;
|
|
@@ -326,9 +329,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
326
329
|
} | undefined;
|
|
327
330
|
}[] | undefined;
|
|
328
331
|
} | null;
|
|
329
|
-
stopWhen: {
|
|
330
|
-
transferCountIs?: number | undefined;
|
|
331
|
-
} | null;
|
|
332
332
|
executionMode: "classic" | "durable";
|
|
333
333
|
}>;
|
|
334
334
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -11,11 +11,11 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
11
11
|
}) => Promise<{
|
|
12
12
|
id: string;
|
|
13
13
|
name: string;
|
|
14
|
+
description: string | null;
|
|
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";
|
|
@@ -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
|
+
description: string | null;
|
|
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,9 +143,9 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
143
143
|
}) => Promise<{
|
|
144
144
|
id: string;
|
|
145
145
|
createdAt: string;
|
|
146
|
+
projectId: string;
|
|
146
147
|
tenantId: string;
|
|
147
148
|
agentId: string;
|
|
148
|
-
projectId: 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
|
+
projectId: string;
|
|
189
190
|
tenantId: string;
|
|
190
191
|
agentId: string;
|
|
191
|
-
projectId: string;
|
|
192
192
|
subAgentId: string;
|
|
193
193
|
artifactComponentId: string;
|
|
194
194
|
} | null>;
|
|
@@ -12,9 +12,9 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
+
projectId: string;
|
|
15
16
|
tenantId: string;
|
|
16
17
|
agentId: string;
|
|
17
|
-
projectId: string;
|
|
18
18
|
headersSchema: unknown;
|
|
19
19
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
20
20
|
} | undefined>;
|
|
@@ -24,9 +24,9 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
24
24
|
id: string;
|
|
25
25
|
createdAt: string;
|
|
26
26
|
updatedAt: string;
|
|
27
|
+
projectId: string;
|
|
27
28
|
tenantId: string;
|
|
28
29
|
agentId: string;
|
|
29
|
-
projectId: string;
|
|
30
30
|
headersSchema: unknown;
|
|
31
31
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
32
32
|
}[]>;
|
|
@@ -46,9 +46,9 @@ declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
46
46
|
id: string;
|
|
47
47
|
createdAt: string;
|
|
48
48
|
updatedAt: string;
|
|
49
|
+
projectId: string;
|
|
49
50
|
tenantId: string;
|
|
50
51
|
agentId: string;
|
|
51
|
-
projectId: string;
|
|
52
52
|
headersSchema: unknown;
|
|
53
53
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
54
54
|
}>;
|
|
@@ -86,9 +86,9 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
86
86
|
id: string;
|
|
87
87
|
createdAt: string;
|
|
88
88
|
updatedAt: string;
|
|
89
|
+
projectId: string;
|
|
89
90
|
tenantId: string;
|
|
90
91
|
agentId: string;
|
|
91
|
-
projectId: string;
|
|
92
92
|
headersSchema: unknown;
|
|
93
93
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
94
94
|
}>;
|
|
@@ -67,9 +67,9 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
67
67
|
}) => Promise<{
|
|
68
68
|
id: string;
|
|
69
69
|
createdAt: string;
|
|
70
|
+
projectId: string;
|
|
70
71
|
tenantId: string;
|
|
71
72
|
agentId: string;
|
|
72
|
-
projectId: 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
|
+
projectId: string;
|
|
112
113
|
tenantId: string;
|
|
113
114
|
agentId: string;
|
|
114
|
-
projectId: 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
|
+
description: string | null;
|
|
58
59
|
createdAt: string;
|
|
59
60
|
updatedAt: string;
|
|
60
|
-
|
|
61
|
+
projectId: string;
|
|
61
62
|
tenantId: string;
|
|
62
63
|
agentId: string;
|
|
63
|
-
projectId: 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
|
+
description: string | null;
|
|
100
101
|
createdAt: string;
|
|
101
102
|
updatedAt: string;
|
|
102
|
-
|
|
103
|
+
projectId: string;
|
|
103
104
|
tenantId: string;
|
|
104
105
|
agentId: string;
|
|
105
|
-
projectId: 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
|
+
projectId: string;
|
|
163
164
|
tenantId: string;
|
|
164
165
|
agentId: string;
|
|
165
|
-
projectId: 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
|
+
projectId: string;
|
|
228
229
|
tenantId: string;
|
|
229
230
|
agentId: string;
|
|
230
|
-
projectId: string;
|
|
231
231
|
subAgentId: string;
|
|
232
232
|
toolPolicies: Record<string, {
|
|
233
233
|
needsApproval?: boolean;
|
|
@@ -17,13 +17,13 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
17
17
|
}) => Promise<{
|
|
18
18
|
id: string;
|
|
19
19
|
name: string;
|
|
20
|
-
createdAt: string;
|
|
21
|
-
updatedAt: string;
|
|
22
|
-
metadata: Record<string, string> | null;
|
|
23
20
|
description: string;
|
|
24
|
-
tenantId: string;
|
|
25
21
|
content: string;
|
|
22
|
+
metadata: Record<string, string> | null;
|
|
23
|
+
createdAt: string;
|
|
24
|
+
updatedAt: string;
|
|
26
25
|
projectId: string;
|
|
26
|
+
tenantId: string;
|
|
27
27
|
} | null>;
|
|
28
28
|
declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
|
|
29
29
|
scopes: ProjectScopeConfig;
|
|
@@ -112,13 +112,13 @@ declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiIn
|
|
|
112
112
|
declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiInsert & WithTenantIdProjectId) => Promise<{
|
|
113
113
|
id: string;
|
|
114
114
|
name: string;
|
|
115
|
-
createdAt: string;
|
|
116
|
-
updatedAt: string;
|
|
117
|
-
metadata: Record<string, string> | null;
|
|
118
115
|
description: string;
|
|
119
|
-
tenantId: string;
|
|
120
116
|
content: string;
|
|
117
|
+
metadata: Record<string, string> | null;
|
|
118
|
+
createdAt: string;
|
|
119
|
+
updatedAt: string;
|
|
121
120
|
projectId: string;
|
|
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
|
+
projectId: string;
|
|
145
146
|
tenantId: string;
|
|
146
147
|
agentId: string;
|
|
147
|
-
projectId: string;
|
|
148
148
|
subAgentId: string;
|
|
149
|
+
skillId: string;
|
|
149
150
|
index: number;
|
|
150
151
|
alwaysLoaded: boolean;
|
|
151
|
-
skillId: string;
|
|
152
152
|
}>;
|
|
153
153
|
declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
154
154
|
scopes: AgentScopeConfig;
|
|
@@ -12,11 +12,11 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
-
|
|
15
|
+
projectId: string;
|
|
16
16
|
tenantId: string;
|
|
17
17
|
agentId: string;
|
|
18
|
-
projectId: string;
|
|
19
18
|
subAgentId: string;
|
|
19
|
+
headers: Record<string, string> | null;
|
|
20
20
|
externalAgentId: string;
|
|
21
21
|
} | undefined>;
|
|
22
22
|
declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -47,11 +47,11 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
|
|
|
47
47
|
id: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
|
-
|
|
50
|
+
projectId: string;
|
|
51
51
|
tenantId: string;
|
|
52
52
|
agentId: string;
|
|
53
|
-
projectId: string;
|
|
54
53
|
subAgentId: string;
|
|
54
|
+
headers: Record<string, string> | null;
|
|
55
55
|
externalAgentId: string;
|
|
56
56
|
}[]>;
|
|
57
57
|
declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -60,11 +60,11 @@ declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabas
|
|
|
60
60
|
id: string;
|
|
61
61
|
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
|
-
|
|
63
|
+
projectId: string;
|
|
64
64
|
tenantId: string;
|
|
65
65
|
agentId: string;
|
|
66
|
-
projectId: string;
|
|
67
66
|
subAgentId: string;
|
|
67
|
+
headers: Record<string, string> | null;
|
|
68
68
|
externalAgentId: string;
|
|
69
69
|
}[]>;
|
|
70
70
|
declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -189,11 +189,11 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
189
189
|
id: string;
|
|
190
190
|
createdAt: string;
|
|
191
191
|
updatedAt: string;
|
|
192
|
-
|
|
192
|
+
projectId: string;
|
|
193
193
|
tenantId: string;
|
|
194
194
|
agentId: string;
|
|
195
|
-
projectId: string;
|
|
196
195
|
subAgentId: string;
|
|
196
|
+
headers: Record<string, string> | null;
|
|
197
197
|
externalAgentId: string;
|
|
198
198
|
}>;
|
|
199
199
|
/**
|
|
@@ -206,11 +206,11 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
|
|
|
206
206
|
id: string;
|
|
207
207
|
createdAt: string;
|
|
208
208
|
updatedAt: string;
|
|
209
|
-
|
|
209
|
+
projectId: string;
|
|
210
210
|
tenantId: string;
|
|
211
211
|
agentId: string;
|
|
212
|
-
projectId: string;
|
|
213
212
|
subAgentId: string;
|
|
213
|
+
headers: Record<string, string> | null;
|
|
214
214
|
externalAgentId: string;
|
|
215
215
|
} | undefined>;
|
|
216
216
|
/**
|
|
@@ -227,11 +227,11 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
227
227
|
id: string;
|
|
228
228
|
createdAt: string;
|
|
229
229
|
updatedAt: string;
|
|
230
|
-
|
|
230
|
+
projectId: string;
|
|
231
231
|
tenantId: string;
|
|
232
232
|
agentId: string;
|
|
233
|
-
projectId: string;
|
|
234
233
|
subAgentId: string;
|
|
234
|
+
headers: Record<string, string> | null;
|
|
235
235
|
externalAgentId: string;
|
|
236
236
|
}>;
|
|
237
237
|
declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -12,9 +12,9 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
+
projectId: string;
|
|
15
16
|
tenantId: string;
|
|
16
17
|
agentId: string;
|
|
17
|
-
projectId: string;
|
|
18
18
|
sourceSubAgentId: string;
|
|
19
19
|
targetSubAgentId: string | null;
|
|
20
20
|
relationType: string | null;
|
|
@@ -47,9 +47,9 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
47
47
|
id: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
|
+
projectId: string;
|
|
50
51
|
tenantId: string;
|
|
51
52
|
agentId: string;
|
|
52
|
-
projectId: string;
|
|
53
53
|
sourceSubAgentId: string;
|
|
54
54
|
targetSubAgentId: string | null;
|
|
55
55
|
relationType: string | null;
|
|
@@ -60,9 +60,9 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
|
|
|
60
60
|
id: string;
|
|
61
61
|
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
|
+
projectId: string;
|
|
63
64
|
tenantId: string;
|
|
64
65
|
agentId: string;
|
|
65
|
-
projectId: string;
|
|
66
66
|
sourceSubAgentId: string;
|
|
67
67
|
targetSubAgentId: string | null;
|
|
68
68
|
relationType: string | null;
|
|
@@ -129,9 +129,9 @@ declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
129
129
|
id: string;
|
|
130
130
|
createdAt: string;
|
|
131
131
|
updatedAt: string;
|
|
132
|
+
projectId: string;
|
|
132
133
|
tenantId: string;
|
|
133
134
|
agentId: string;
|
|
134
|
-
projectId: string;
|
|
135
135
|
sourceSubAgentId: string;
|
|
136
136
|
targetSubAgentId: string | null;
|
|
137
137
|
relationType: string | null;
|
|
@@ -148,9 +148,9 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
|
|
|
148
148
|
id: string;
|
|
149
149
|
createdAt: string;
|
|
150
150
|
updatedAt: string;
|
|
151
|
+
projectId: string;
|
|
151
152
|
tenantId: string;
|
|
152
153
|
agentId: string;
|
|
153
|
-
projectId: string;
|
|
154
154
|
sourceSubAgentId: string;
|
|
155
155
|
targetSubAgentId: string | null;
|
|
156
156
|
relationType: string | null;
|
|
@@ -162,9 +162,9 @@ declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (param
|
|
|
162
162
|
id: string;
|
|
163
163
|
createdAt: string;
|
|
164
164
|
updatedAt: string;
|
|
165
|
+
projectId: string;
|
|
165
166
|
tenantId: string;
|
|
166
167
|
agentId: string;
|
|
167
|
-
projectId: string;
|
|
168
168
|
sourceSubAgentId: string;
|
|
169
169
|
targetSubAgentId: string | null;
|
|
170
170
|
relationType: 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
|
-
|
|
210
|
+
projectId: string;
|
|
211
211
|
tenantId: string;
|
|
212
212
|
agentId: string;
|
|
213
|
-
projectId: string;
|
|
214
213
|
subAgentId: string;
|
|
215
214
|
toolId: string;
|
|
215
|
+
headers: Record<string, string> | null;
|
|
216
|
+
selectedTools: string[] | null;
|
|
216
217
|
toolPolicies: Record<string, {
|
|
217
218
|
needsApproval?: boolean;
|
|
218
219
|
}> | 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
|
-
|
|
254
|
+
projectId: string;
|
|
255
255
|
tenantId: string;
|
|
256
256
|
agentId: string;
|
|
257
|
-
projectId: string;
|
|
258
257
|
subAgentId: string;
|
|
259
258
|
toolId: string;
|
|
259
|
+
headers: Record<string, string> | null;
|
|
260
|
+
selectedTools: string[] | null;
|
|
260
261
|
toolPolicies: Record<string, {
|
|
261
262
|
needsApproval?: boolean;
|
|
262
263
|
}> | null;
|
|
263
|
-
selectedTools: string[] | null;
|
|
264
264
|
} | undefined>;
|
|
265
265
|
declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
266
266
|
scopes: SubAgentScopeConfig;
|
|
@@ -12,11 +12,11 @@ declare const getSubAgentTeamAgentRelationById: (db: AgentsManageDatabaseClient)
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
-
|
|
15
|
+
projectId: string;
|
|
16
16
|
tenantId: string;
|
|
17
17
|
agentId: string;
|
|
18
|
-
projectId: string;
|
|
19
18
|
subAgentId: string;
|
|
19
|
+
headers: Record<string, string> | null;
|
|
20
20
|
targetAgentId: string;
|
|
21
21
|
} | undefined>;
|
|
22
22
|
declare const listSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -47,11 +47,11 @@ declare const getSubAgentTeamAgentRelations: (db: AgentsManageDatabaseClient) =>
|
|
|
47
47
|
id: string;
|
|
48
48
|
createdAt: string;
|
|
49
49
|
updatedAt: string;
|
|
50
|
-
|
|
50
|
+
projectId: string;
|
|
51
51
|
tenantId: string;
|
|
52
52
|
agentId: string;
|
|
53
|
-
projectId: string;
|
|
54
53
|
subAgentId: string;
|
|
54
|
+
headers: Record<string, string> | null;
|
|
55
55
|
targetAgentId: string;
|
|
56
56
|
}[]>;
|
|
57
57
|
declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -60,11 +60,11 @@ declare const getSubAgentTeamAgentRelationsByAgent: (db: AgentsManageDatabaseCli
|
|
|
60
60
|
id: string;
|
|
61
61
|
createdAt: string;
|
|
62
62
|
updatedAt: string;
|
|
63
|
-
|
|
63
|
+
projectId: string;
|
|
64
64
|
tenantId: string;
|
|
65
65
|
agentId: string;
|
|
66
|
-
projectId: string;
|
|
67
66
|
subAgentId: string;
|
|
67
|
+
headers: Record<string, string> | null;
|
|
68
68
|
targetAgentId: string;
|
|
69
69
|
}[]>;
|
|
70
70
|
declare const getSubAgentTeamAgentRelationsByTeamAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -225,11 +225,11 @@ declare const createSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
|
|
|
225
225
|
id: string;
|
|
226
226
|
createdAt: string;
|
|
227
227
|
updatedAt: string;
|
|
228
|
-
|
|
228
|
+
projectId: string;
|
|
229
229
|
tenantId: string;
|
|
230
230
|
agentId: string;
|
|
231
|
-
projectId: string;
|
|
232
231
|
subAgentId: string;
|
|
232
|
+
headers: Record<string, string> | null;
|
|
233
233
|
targetAgentId: string;
|
|
234
234
|
}>;
|
|
235
235
|
/**
|
|
@@ -242,11 +242,11 @@ declare const getSubAgentTeamAgentRelationByParams: (db: AgentsManageDatabaseCli
|
|
|
242
242
|
id: string;
|
|
243
243
|
createdAt: string;
|
|
244
244
|
updatedAt: string;
|
|
245
|
-
|
|
245
|
+
projectId: string;
|
|
246
246
|
tenantId: string;
|
|
247
247
|
agentId: string;
|
|
248
|
-
projectId: string;
|
|
249
248
|
subAgentId: string;
|
|
249
|
+
headers: Record<string, string> | null;
|
|
250
250
|
targetAgentId: string;
|
|
251
251
|
} | undefined>;
|
|
252
252
|
/**
|
|
@@ -263,11 +263,11 @@ declare const upsertSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient)
|
|
|
263
263
|
id: string;
|
|
264
264
|
createdAt: string;
|
|
265
265
|
updatedAt: string;
|
|
266
|
-
|
|
266
|
+
projectId: string;
|
|
267
267
|
tenantId: string;
|
|
268
268
|
agentId: string;
|
|
269
|
-
projectId: string;
|
|
270
269
|
subAgentId: string;
|
|
270
|
+
headers: Record<string, string> | null;
|
|
271
271
|
targetAgentId: string;
|
|
272
272
|
}>;
|
|
273
273
|
declare const updateSubAgentTeamAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
|