@inkeep/agents-core 0.0.0-dev-20260401162145 → 0.0.0-dev-20260401173131
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/data-access/manage/agents.d.ts +37 -37
- 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 +4 -4
- package/dist/data-access/manage/functionTools.d.ts +10 -10
- package/dist/data-access/manage/skills.d.ts +4 -4
- 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 +15 -15
- package/dist/data-access/manage/tools.d.ts +12 -12
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +4 -4
- package/dist/data-access/runtime/apps.d.ts +6 -6
- package/dist/data-access/runtime/conversations.d.ts +16 -16
- package/dist/data-access/runtime/messages.d.ts +12 -12
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
- 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 +376 -376
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +37 -37
- package/dist/validation/schemas.d.ts +2218 -2218
- package/package.json +1 -1
|
@@ -5,25 +5,25 @@ import { organizationClient } from "better-auth/client/plugins";
|
|
|
5
5
|
//#region src/auth/permissions.d.ts
|
|
6
6
|
declare const ac: AccessControl;
|
|
7
7
|
declare const memberRole: {
|
|
8
|
-
authorize<K_1 extends "
|
|
9
|
-
actions: better_auth_plugins4.Subset<"
|
|
8
|
+
authorize<K_1 extends "project" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
|
|
9
|
+
actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
|
|
10
10
|
connector: "OR" | "AND";
|
|
11
11
|
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins4.AuthorizeResponse;
|
|
12
|
-
statements: better_auth_plugins4.Subset<"
|
|
12
|
+
statements: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
|
|
13
13
|
};
|
|
14
14
|
declare const adminRole: {
|
|
15
|
-
authorize<K_1 extends "
|
|
16
|
-
actions: better_auth_plugins4.Subset<"
|
|
15
|
+
authorize<K_1 extends "project" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
|
|
16
|
+
actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
|
|
17
17
|
connector: "OR" | "AND";
|
|
18
18
|
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins4.AuthorizeResponse;
|
|
19
|
-
statements: better_auth_plugins4.Subset<"
|
|
19
|
+
statements: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
|
|
20
20
|
};
|
|
21
21
|
declare const ownerRole: {
|
|
22
|
-
authorize<K_1 extends "
|
|
23
|
-
actions: better_auth_plugins4.Subset<"
|
|
22
|
+
authorize<K_1 extends "project" | "organization" | "member" | "invitation" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key] | {
|
|
23
|
+
actions: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>[key];
|
|
24
24
|
connector: "OR" | "AND";
|
|
25
25
|
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins4.AuthorizeResponse;
|
|
26
|
-
statements: better_auth_plugins4.Subset<"
|
|
26
|
+
statements: better_auth_plugins4.Subset<"project" | "organization" | "member" | "invitation" | "team" | "ac", better_auth_plugins4.Statements>;
|
|
27
27
|
};
|
|
28
28
|
//#endregion
|
|
29
29
|
export { ac, adminRole, memberRole, organizationClient, ownerRole };
|
|
@@ -10,13 +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
|
tenantId: string;
|
|
14
15
|
projectId: string;
|
|
15
16
|
id: string;
|
|
16
17
|
name: string;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
contextConfigId: string | null;
|
|
18
|
+
createdAt: string;
|
|
19
|
+
updatedAt: string;
|
|
20
20
|
models: {
|
|
21
21
|
base?: {
|
|
22
22
|
model?: string | undefined;
|
|
@@ -37,7 +37,12 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
37
37
|
allowedProviders?: string[] | undefined;
|
|
38
38
|
} | undefined;
|
|
39
39
|
} | null;
|
|
40
|
+
stopWhen: {
|
|
41
|
+
transferCountIs?: number | undefined;
|
|
42
|
+
} | null;
|
|
40
43
|
prompt: string | null;
|
|
44
|
+
defaultSubAgentId: string | null;
|
|
45
|
+
contextConfigId: string | null;
|
|
41
46
|
statusUpdates: {
|
|
42
47
|
enabled?: boolean | undefined;
|
|
43
48
|
numEvents?: number | undefined;
|
|
@@ -53,23 +58,18 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
53
58
|
} | undefined;
|
|
54
59
|
}[] | undefined;
|
|
55
60
|
} | null;
|
|
56
|
-
stopWhen: {
|
|
57
|
-
transferCountIs?: number | undefined;
|
|
58
|
-
} | null;
|
|
59
61
|
executionMode: "classic" | "durable";
|
|
60
|
-
createdAt: string;
|
|
61
|
-
updatedAt: 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
|
tenantId: string;
|
|
67
68
|
projectId: string;
|
|
68
69
|
id: string;
|
|
69
70
|
name: string;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
contextConfigId: string | null;
|
|
71
|
+
createdAt: string;
|
|
72
|
+
updatedAt: string;
|
|
73
73
|
models: {
|
|
74
74
|
base?: {
|
|
75
75
|
model?: string | undefined;
|
|
@@ -90,7 +90,12 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
90
90
|
allowedProviders?: string[] | undefined;
|
|
91
91
|
} | undefined;
|
|
92
92
|
} | null;
|
|
93
|
+
stopWhen: {
|
|
94
|
+
transferCountIs?: number | undefined;
|
|
95
|
+
} | null;
|
|
93
96
|
prompt: string | null;
|
|
97
|
+
defaultSubAgentId: string | null;
|
|
98
|
+
contextConfigId: string | null;
|
|
94
99
|
statusUpdates: {
|
|
95
100
|
enabled?: boolean | undefined;
|
|
96
101
|
numEvents?: number | undefined;
|
|
@@ -106,18 +111,16 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
106
111
|
} | undefined;
|
|
107
112
|
}[] | undefined;
|
|
108
113
|
} | null;
|
|
109
|
-
stopWhen: {
|
|
110
|
-
transferCountIs?: number | undefined;
|
|
111
|
-
} | null;
|
|
112
114
|
executionMode: "classic" | "durable";
|
|
113
|
-
createdAt: string;
|
|
114
|
-
updatedAt: string;
|
|
115
115
|
defaultSubAgent: {
|
|
116
|
+
description: string | null;
|
|
116
117
|
tenantId: string;
|
|
117
118
|
projectId: string;
|
|
119
|
+
agentId: string;
|
|
118
120
|
id: string;
|
|
119
121
|
name: string;
|
|
120
|
-
|
|
122
|
+
createdAt: string;
|
|
123
|
+
updatedAt: string;
|
|
121
124
|
models: {
|
|
122
125
|
base?: {
|
|
123
126
|
model?: string | undefined;
|
|
@@ -138,26 +141,23 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
138
141
|
allowedProviders?: string[] | undefined;
|
|
139
142
|
} | undefined;
|
|
140
143
|
} | null;
|
|
141
|
-
prompt: string | null;
|
|
142
144
|
stopWhen: {
|
|
143
145
|
stepCountIs?: number | undefined;
|
|
144
146
|
} | null;
|
|
145
|
-
|
|
146
|
-
updatedAt: string;
|
|
147
|
-
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
|
tenantId: string;
|
|
155
156
|
projectId: string;
|
|
156
157
|
id: string;
|
|
157
158
|
name: string;
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
contextConfigId: string | null;
|
|
159
|
+
createdAt: string;
|
|
160
|
+
updatedAt: string;
|
|
161
161
|
models: {
|
|
162
162
|
base?: {
|
|
163
163
|
model?: string | undefined;
|
|
@@ -178,7 +178,12 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
178
178
|
allowedProviders?: string[] | undefined;
|
|
179
179
|
} | undefined;
|
|
180
180
|
} | null;
|
|
181
|
+
stopWhen: {
|
|
182
|
+
transferCountIs?: number | undefined;
|
|
183
|
+
} | null;
|
|
181
184
|
prompt: string | null;
|
|
185
|
+
defaultSubAgentId: string | null;
|
|
186
|
+
contextConfigId: string | null;
|
|
182
187
|
statusUpdates: {
|
|
183
188
|
enabled?: boolean | undefined;
|
|
184
189
|
numEvents?: number | undefined;
|
|
@@ -194,12 +199,7 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
194
199
|
} | undefined;
|
|
195
200
|
}[] | undefined;
|
|
196
201
|
} | null;
|
|
197
|
-
stopWhen: {
|
|
198
|
-
transferCountIs?: number | undefined;
|
|
199
|
-
} | null;
|
|
200
202
|
executionMode: "classic" | "durable";
|
|
201
|
-
createdAt: string;
|
|
202
|
-
updatedAt: string;
|
|
203
203
|
}[]>;
|
|
204
204
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
205
205
|
scopes: ProjectScopeConfig;
|
|
@@ -281,13 +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
|
tenantId: string;
|
|
285
286
|
projectId: string;
|
|
286
287
|
id: string;
|
|
287
288
|
name: string;
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
contextConfigId: string | null;
|
|
289
|
+
createdAt: string;
|
|
290
|
+
updatedAt: string;
|
|
291
291
|
models: {
|
|
292
292
|
base?: {
|
|
293
293
|
model?: string | undefined;
|
|
@@ -308,7 +308,12 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
308
308
|
allowedProviders?: string[] | undefined;
|
|
309
309
|
} | undefined;
|
|
310
310
|
} | null;
|
|
311
|
+
stopWhen: {
|
|
312
|
+
transferCountIs?: number | undefined;
|
|
313
|
+
} | null;
|
|
311
314
|
prompt: string | null;
|
|
315
|
+
defaultSubAgentId: string | null;
|
|
316
|
+
contextConfigId: string | null;
|
|
312
317
|
statusUpdates: {
|
|
313
318
|
enabled?: boolean | undefined;
|
|
314
319
|
numEvents?: number | undefined;
|
|
@@ -324,12 +329,7 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
324
329
|
} | undefined;
|
|
325
330
|
}[] | undefined;
|
|
326
331
|
} | null;
|
|
327
|
-
stopWhen: {
|
|
328
|
-
transferCountIs?: number | undefined;
|
|
329
|
-
} | null;
|
|
330
332
|
executionMode: "classic" | "durable";
|
|
331
|
-
createdAt: string;
|
|
332
|
-
updatedAt: string;
|
|
333
333
|
}>;
|
|
334
334
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
335
335
|
scopes: AgentScopeConfig;
|
|
@@ -9,11 +9,11 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
9
9
|
scopes: ProjectScopeConfig;
|
|
10
10
|
id: string;
|
|
11
11
|
}) => Promise<{
|
|
12
|
+
description: string | null;
|
|
12
13
|
tenantId: string;
|
|
13
14
|
projectId: string;
|
|
14
15
|
id: string;
|
|
15
16
|
name: string;
|
|
16
|
-
description: string | null;
|
|
17
17
|
createdAt: string;
|
|
18
18
|
updatedAt: string;
|
|
19
19
|
props: {
|
|
@@ -65,11 +65,11 @@ 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
|
tenantId: string;
|
|
69
70
|
projectId: string;
|
|
70
71
|
id: string;
|
|
71
72
|
name: string;
|
|
72
|
-
description: string | null;
|
|
73
73
|
createdAt: string;
|
|
74
74
|
updatedAt: string;
|
|
75
75
|
props: {
|
|
@@ -143,10 +143,10 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
143
143
|
}) => Promise<{
|
|
144
144
|
tenantId: string;
|
|
145
145
|
projectId: string;
|
|
146
|
-
id: string;
|
|
147
|
-
createdAt: string;
|
|
148
146
|
agentId: string;
|
|
149
147
|
subAgentId: string;
|
|
148
|
+
id: string;
|
|
149
|
+
createdAt: string;
|
|
150
150
|
artifactComponentId: string;
|
|
151
151
|
}>;
|
|
152
152
|
declare const removeArtifactComponentFromAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -186,10 +186,10 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
|
|
|
186
186
|
}) => Promise<{
|
|
187
187
|
tenantId: string;
|
|
188
188
|
projectId: string;
|
|
189
|
-
id: string;
|
|
190
|
-
createdAt: string;
|
|
191
189
|
agentId: string;
|
|
192
190
|
subAgentId: string;
|
|
191
|
+
id: string;
|
|
192
|
+
createdAt: string;
|
|
193
193
|
artifactComponentId: string;
|
|
194
194
|
} | null>;
|
|
195
195
|
/**
|
|
@@ -11,10 +11,10 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
11
11
|
}) => Promise<{
|
|
12
12
|
tenantId: string;
|
|
13
13
|
projectId: string;
|
|
14
|
+
agentId: string;
|
|
14
15
|
id: string;
|
|
15
16
|
createdAt: string;
|
|
16
17
|
updatedAt: string;
|
|
17
|
-
agentId: string;
|
|
18
18
|
headersSchema: unknown;
|
|
19
19
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
20
20
|
} | undefined>;
|
|
@@ -23,10 +23,10 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
23
23
|
}) => Promise<{
|
|
24
24
|
tenantId: string;
|
|
25
25
|
projectId: string;
|
|
26
|
+
agentId: string;
|
|
26
27
|
id: string;
|
|
27
28
|
createdAt: string;
|
|
28
29
|
updatedAt: string;
|
|
29
|
-
agentId: string;
|
|
30
30
|
headersSchema: unknown;
|
|
31
31
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
32
32
|
}[]>;
|
|
@@ -45,10 +45,10 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
|
|
|
45
45
|
declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
|
|
46
46
|
tenantId: string;
|
|
47
47
|
projectId: string;
|
|
48
|
+
agentId: string;
|
|
48
49
|
id: string;
|
|
49
50
|
createdAt: string;
|
|
50
51
|
updatedAt: string;
|
|
51
|
-
agentId: string;
|
|
52
52
|
headersSchema: unknown;
|
|
53
53
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
54
54
|
}>;
|
|
@@ -85,10 +85,10 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
85
85
|
}) => Promise<{
|
|
86
86
|
tenantId: string;
|
|
87
87
|
projectId: string;
|
|
88
|
+
agentId: string;
|
|
88
89
|
id: string;
|
|
89
90
|
createdAt: string;
|
|
90
91
|
updatedAt: string;
|
|
91
|
-
agentId: string;
|
|
92
92
|
headersSchema: unknown;
|
|
93
93
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
94
94
|
}>;
|
|
@@ -67,10 +67,10 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
67
67
|
}) => Promise<{
|
|
68
68
|
tenantId: string;
|
|
69
69
|
projectId: string;
|
|
70
|
-
id: string;
|
|
71
|
-
createdAt: string;
|
|
72
70
|
agentId: string;
|
|
73
71
|
subAgentId: string;
|
|
72
|
+
id: string;
|
|
73
|
+
createdAt: string;
|
|
74
74
|
dataComponentId: string;
|
|
75
75
|
}>;
|
|
76
76
|
/**
|
|
@@ -109,10 +109,10 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
|
|
|
109
109
|
}) => Promise<{
|
|
110
110
|
tenantId: string;
|
|
111
111
|
projectId: string;
|
|
112
|
-
id: string;
|
|
113
|
-
createdAt: string;
|
|
114
112
|
agentId: string;
|
|
115
113
|
subAgentId: string;
|
|
114
|
+
id: string;
|
|
115
|
+
createdAt: string;
|
|
116
116
|
dataComponentId: string;
|
|
117
117
|
} | null>;
|
|
118
118
|
/**
|
|
@@ -53,14 +53,14 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
53
53
|
data: FunctionToolApiInsert;
|
|
54
54
|
scopes: AgentScopeConfig;
|
|
55
55
|
}) => Promise<{
|
|
56
|
+
description: string | null;
|
|
56
57
|
tenantId: string;
|
|
57
58
|
projectId: string;
|
|
59
|
+
agentId: string;
|
|
58
60
|
id: string;
|
|
59
61
|
name: string;
|
|
60
|
-
description: string | null;
|
|
61
62
|
createdAt: string;
|
|
62
63
|
updatedAt: string;
|
|
63
|
-
agentId: string;
|
|
64
64
|
functionId: string;
|
|
65
65
|
}>;
|
|
66
66
|
/**
|
|
@@ -95,14 +95,14 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
95
95
|
data: FunctionToolApiInsert;
|
|
96
96
|
scopes: AgentScopeConfig;
|
|
97
97
|
}) => Promise<{
|
|
98
|
+
description: string | null;
|
|
98
99
|
tenantId: string;
|
|
99
100
|
projectId: string;
|
|
101
|
+
agentId: string;
|
|
100
102
|
id: string;
|
|
101
103
|
name: string;
|
|
102
|
-
description: string | null;
|
|
103
104
|
createdAt: string;
|
|
104
105
|
updatedAt: string;
|
|
105
|
-
agentId: string;
|
|
106
106
|
functionId: string;
|
|
107
107
|
}>;
|
|
108
108
|
declare const getFunctionToolsForSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -159,15 +159,15 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
|
|
|
159
159
|
}) => Promise<{
|
|
160
160
|
tenantId: string;
|
|
161
161
|
projectId: string;
|
|
162
|
+
agentId: string;
|
|
163
|
+
subAgentId: string;
|
|
162
164
|
id: string;
|
|
163
165
|
createdAt: string;
|
|
164
166
|
updatedAt: string;
|
|
165
|
-
|
|
167
|
+
functionToolId: string;
|
|
166
168
|
toolPolicies: Record<string, {
|
|
167
169
|
needsApproval?: boolean;
|
|
168
170
|
}> | null;
|
|
169
|
-
subAgentId: string;
|
|
170
|
-
functionToolId: string;
|
|
171
171
|
}>;
|
|
172
172
|
/**
|
|
173
173
|
* Update an agent-function tool relation
|
|
@@ -224,15 +224,15 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
|
|
|
224
224
|
}) => Promise<{
|
|
225
225
|
tenantId: string;
|
|
226
226
|
projectId: string;
|
|
227
|
+
agentId: string;
|
|
228
|
+
subAgentId: string;
|
|
227
229
|
id: string;
|
|
228
230
|
createdAt: string;
|
|
229
231
|
updatedAt: string;
|
|
230
|
-
|
|
232
|
+
functionToolId: string;
|
|
231
233
|
toolPolicies: Record<string, {
|
|
232
234
|
needsApproval?: boolean;
|
|
233
235
|
}> | 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 };
|
|
@@ -15,11 +15,11 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
15
15
|
scopes: ProjectScopeConfig;
|
|
16
16
|
skillId: string;
|
|
17
17
|
}) => Promise<{
|
|
18
|
+
description: string;
|
|
18
19
|
tenantId: string;
|
|
19
20
|
projectId: string;
|
|
20
21
|
id: string;
|
|
21
22
|
name: string;
|
|
22
|
-
description: string;
|
|
23
23
|
createdAt: string;
|
|
24
24
|
updatedAt: string;
|
|
25
25
|
metadata: Record<string, string> | null;
|
|
@@ -110,11 +110,11 @@ 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
|
tenantId: string;
|
|
114
115
|
projectId: string;
|
|
115
116
|
id: string;
|
|
116
117
|
name: string;
|
|
117
|
-
description: string;
|
|
118
118
|
createdAt: string;
|
|
119
119
|
updatedAt: string;
|
|
120
120
|
metadata: Record<string, string> | null;
|
|
@@ -141,13 +141,13 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
|
|
|
141
141
|
}) => Promise<{
|
|
142
142
|
tenantId: string;
|
|
143
143
|
projectId: string;
|
|
144
|
+
agentId: string;
|
|
145
|
+
subAgentId: string;
|
|
144
146
|
id: string;
|
|
145
147
|
createdAt: string;
|
|
146
148
|
updatedAt: string;
|
|
147
|
-
agentId: string;
|
|
148
149
|
index: number;
|
|
149
150
|
alwaysLoaded: boolean;
|
|
150
|
-
subAgentId: string;
|
|
151
151
|
skillId: string;
|
|
152
152
|
}>;
|
|
153
153
|
declare const deleteSubAgentSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -11,13 +11,13 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
|
|
|
11
11
|
}) => Promise<{
|
|
12
12
|
tenantId: string;
|
|
13
13
|
projectId: string;
|
|
14
|
+
agentId: string;
|
|
15
|
+
subAgentId: string;
|
|
14
16
|
id: string;
|
|
15
17
|
createdAt: string;
|
|
16
18
|
updatedAt: string;
|
|
17
|
-
agentId: string;
|
|
18
19
|
headers: Record<string, string> | null;
|
|
19
20
|
externalAgentId: string;
|
|
20
|
-
subAgentId: string;
|
|
21
21
|
} | undefined>;
|
|
22
22
|
declare const listSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
23
23
|
scopes: SubAgentScopeConfig;
|
|
@@ -46,26 +46,26 @@ declare const getSubAgentExternalAgentRelations: (db: AgentsManageDatabaseClient
|
|
|
46
46
|
}) => Promise<{
|
|
47
47
|
tenantId: string;
|
|
48
48
|
projectId: string;
|
|
49
|
+
agentId: string;
|
|
50
|
+
subAgentId: string;
|
|
49
51
|
id: string;
|
|
50
52
|
createdAt: string;
|
|
51
53
|
updatedAt: string;
|
|
52
|
-
agentId: string;
|
|
53
54
|
headers: Record<string, string> | null;
|
|
54
55
|
externalAgentId: string;
|
|
55
|
-
subAgentId: string;
|
|
56
56
|
}[]>;
|
|
57
57
|
declare const getSubAgentExternalAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
58
58
|
scopes: AgentScopeConfig;
|
|
59
59
|
}) => Promise<{
|
|
60
60
|
tenantId: string;
|
|
61
61
|
projectId: string;
|
|
62
|
+
agentId: string;
|
|
63
|
+
subAgentId: string;
|
|
62
64
|
id: string;
|
|
63
65
|
createdAt: string;
|
|
64
66
|
updatedAt: string;
|
|
65
|
-
agentId: string;
|
|
66
67
|
headers: Record<string, string> | null;
|
|
67
68
|
externalAgentId: string;
|
|
68
|
-
subAgentId: string;
|
|
69
69
|
}[]>;
|
|
70
70
|
declare const getSubAgentExternalAgentRelationsByExternalAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
71
71
|
scopes: AgentScopeConfig;
|
|
@@ -188,13 +188,13 @@ declare const createSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
188
188
|
}) => Promise<{
|
|
189
189
|
tenantId: string;
|
|
190
190
|
projectId: string;
|
|
191
|
+
agentId: string;
|
|
192
|
+
subAgentId: string;
|
|
191
193
|
id: string;
|
|
192
194
|
createdAt: string;
|
|
193
195
|
updatedAt: string;
|
|
194
|
-
agentId: string;
|
|
195
196
|
headers: Record<string, string> | null;
|
|
196
197
|
externalAgentId: string;
|
|
197
|
-
subAgentId: string;
|
|
198
198
|
}>;
|
|
199
199
|
/**
|
|
200
200
|
* Check if sub-agent external agent relation exists by params
|
|
@@ -205,13 +205,13 @@ declare const getSubAgentExternalAgentRelationByParams: (db: AgentsManageDatabas
|
|
|
205
205
|
}) => Promise<{
|
|
206
206
|
tenantId: string;
|
|
207
207
|
projectId: string;
|
|
208
|
+
agentId: string;
|
|
209
|
+
subAgentId: string;
|
|
208
210
|
id: string;
|
|
209
211
|
createdAt: string;
|
|
210
212
|
updatedAt: string;
|
|
211
|
-
agentId: string;
|
|
212
213
|
headers: Record<string, string> | null;
|
|
213
214
|
externalAgentId: string;
|
|
214
|
-
subAgentId: string;
|
|
215
215
|
} | undefined>;
|
|
216
216
|
/**
|
|
217
217
|
* Upsert sub-agent external agent relation (create if it doesn't exist, update if it does)
|
|
@@ -226,13 +226,13 @@ declare const upsertSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClie
|
|
|
226
226
|
}) => Promise<{
|
|
227
227
|
tenantId: string;
|
|
228
228
|
projectId: string;
|
|
229
|
+
agentId: string;
|
|
230
|
+
subAgentId: string;
|
|
229
231
|
id: string;
|
|
230
232
|
createdAt: string;
|
|
231
233
|
updatedAt: string;
|
|
232
|
-
agentId: string;
|
|
233
234
|
headers: Record<string, string> | null;
|
|
234
235
|
externalAgentId: string;
|
|
235
|
-
subAgentId: string;
|
|
236
236
|
}>;
|
|
237
237
|
declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
238
238
|
scopes: SubAgentScopeConfig;
|
|
@@ -11,10 +11,10 @@ declare const getAgentRelationById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
11
11
|
}) => Promise<{
|
|
12
12
|
tenantId: string;
|
|
13
13
|
projectId: string;
|
|
14
|
+
agentId: string;
|
|
14
15
|
id: string;
|
|
15
16
|
createdAt: string;
|
|
16
17
|
updatedAt: string;
|
|
17
|
-
agentId: string;
|
|
18
18
|
sourceSubAgentId: string;
|
|
19
19
|
targetSubAgentId: string | null;
|
|
20
20
|
relationType: string | null;
|
|
@@ -46,10 +46,10 @@ declare const getAgentRelations: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
46
46
|
}) => Promise<{
|
|
47
47
|
tenantId: string;
|
|
48
48
|
projectId: string;
|
|
49
|
+
agentId: string;
|
|
49
50
|
id: string;
|
|
50
51
|
createdAt: string;
|
|
51
52
|
updatedAt: string;
|
|
52
|
-
agentId: string;
|
|
53
53
|
sourceSubAgentId: string;
|
|
54
54
|
targetSubAgentId: string | null;
|
|
55
55
|
relationType: string | null;
|
|
@@ -59,10 +59,10 @@ declare const getAgentRelationsByAgent: (db: AgentsManageDatabaseClient) => (par
|
|
|
59
59
|
}) => Promise<{
|
|
60
60
|
tenantId: string;
|
|
61
61
|
projectId: string;
|
|
62
|
+
agentId: string;
|
|
62
63
|
id: string;
|
|
63
64
|
createdAt: string;
|
|
64
65
|
updatedAt: string;
|
|
65
|
-
agentId: string;
|
|
66
66
|
sourceSubAgentId: string;
|
|
67
67
|
targetSubAgentId: string | null;
|
|
68
68
|
relationType: string | null;
|
|
@@ -128,10 +128,10 @@ declare const getRelatedAgentsForAgent: (db: AgentsManageDatabaseClient) => (par
|
|
|
128
128
|
declare const createSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
|
|
129
129
|
tenantId: string;
|
|
130
130
|
projectId: string;
|
|
131
|
+
agentId: string;
|
|
131
132
|
id: string;
|
|
132
133
|
createdAt: string;
|
|
133
134
|
updatedAt: string;
|
|
134
|
-
agentId: string;
|
|
135
135
|
sourceSubAgentId: string;
|
|
136
136
|
targetSubAgentId: string | null;
|
|
137
137
|
relationType: string | null;
|
|
@@ -147,10 +147,10 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
|
|
|
147
147
|
}) => Promise<{
|
|
148
148
|
tenantId: string;
|
|
149
149
|
projectId: string;
|
|
150
|
+
agentId: string;
|
|
150
151
|
id: string;
|
|
151
152
|
createdAt: string;
|
|
152
153
|
updatedAt: string;
|
|
153
|
-
agentId: string;
|
|
154
154
|
sourceSubAgentId: string;
|
|
155
155
|
targetSubAgentId: string | null;
|
|
156
156
|
relationType: string | null;
|
|
@@ -161,10 +161,10 @@ declare const getAgentRelationByParams: (db: AgentsManageDatabaseClient) => (par
|
|
|
161
161
|
declare const upsertSubAgentRelation: (db: AgentsManageDatabaseClient) => (params: SubAgentRelationInsert) => Promise<{
|
|
162
162
|
tenantId: string;
|
|
163
163
|
projectId: string;
|
|
164
|
+
agentId: string;
|
|
164
165
|
id: string;
|
|
165
166
|
createdAt: string;
|
|
166
167
|
updatedAt: string;
|
|
167
|
-
agentId: string;
|
|
168
168
|
sourceSubAgentId: string;
|
|
169
169
|
targetSubAgentId: string | null;
|
|
170
170
|
relationType: string | null;
|
|
@@ -206,16 +206,16 @@ declare const createAgentToolRelation: (db: AgentsManageDatabaseClient) => (para
|
|
|
206
206
|
}) => Promise<{
|
|
207
207
|
tenantId: string;
|
|
208
208
|
projectId: string;
|
|
209
|
+
agentId: string;
|
|
210
|
+
subAgentId: string;
|
|
211
|
+
toolId: string;
|
|
209
212
|
id: string;
|
|
210
213
|
createdAt: string;
|
|
211
214
|
updatedAt: string;
|
|
212
|
-
agentId: string;
|
|
213
|
-
toolId: string;
|
|
214
215
|
headers: Record<string, string> | null;
|
|
215
216
|
toolPolicies: Record<string, {
|
|
216
217
|
needsApproval?: boolean;
|
|
217
218
|
}> | null;
|
|
218
|
-
subAgentId: string;
|
|
219
219
|
selectedTools: string[] | null;
|
|
220
220
|
}>;
|
|
221
221
|
declare const updateAgentToolRelation: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -250,16 +250,16 @@ declare const getAgentToolRelationById: (db: AgentsManageDatabaseClient) => (par
|
|
|
250
250
|
}) => Promise<{
|
|
251
251
|
tenantId: string;
|
|
252
252
|
projectId: string;
|
|
253
|
+
agentId: string;
|
|
254
|
+
subAgentId: string;
|
|
255
|
+
toolId: string;
|
|
253
256
|
id: string;
|
|
254
257
|
createdAt: string;
|
|
255
258
|
updatedAt: string;
|
|
256
|
-
agentId: string;
|
|
257
|
-
toolId: string;
|
|
258
259
|
headers: Record<string, string> | null;
|
|
259
260
|
toolPolicies: Record<string, {
|
|
260
261
|
needsApproval?: boolean;
|
|
261
262
|
}> | null;
|
|
262
|
-
subAgentId: string;
|
|
263
263
|
selectedTools: string[] | null;
|
|
264
264
|
} | undefined>;
|
|
265
265
|
declare const getAgentToolRelationByAgent: (db: AgentsManageDatabaseClient) => (params: {
|