@inkeep/agents-core 0.0.0-dev-20260402165145 → 0.0.0-dev-20260402223924
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 +86 -86
- package/dist/auth/auth-validation-schemas.d.ts +137 -137
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/constants/otel-attributes.d.ts +5 -0
- package/dist/constants/otel-attributes.js +7 -2
- package/dist/constants/signoz-queries.d.ts +1 -0
- package/dist/constants/signoz-queries.js +2 -1
- package/dist/data-access/manage/agents.d.ts +32 -32
- 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 +5 -5
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +12 -12
- package/dist/data-access/manage/subAgentRelations.d.ts +16 -16
- 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 +18 -18
- 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 +12 -12
- package/dist/data-access/runtime/conversations.d.ts +4 -4
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/tasks.d.ts +1 -1
- package/dist/db/manage/manage-schema.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +346 -346
- package/dist/utils/retry-client.d.ts +8 -0
- package/dist/utils/retry-client.js +29 -0
- package/dist/utils/work-app-mcp.js +1 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +24 -24
- package/dist/validation/schemas.d.ts +386 -386
- package/package.json +5 -1
package/dist/auth/auth.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { BetterAuthConfig, EmailServiceConfig, OIDCProviderConfig, SAMLProviderC
|
|
|
2
2
|
import { extractCookieDomain, hasCredentialAccount } from "./auth-config-utils.js";
|
|
3
3
|
import * as zod0 from "zod";
|
|
4
4
|
import * as better_auth0 from "better-auth";
|
|
5
|
-
import * as
|
|
5
|
+
import * as better_auth_plugins20 from "better-auth/plugins";
|
|
6
6
|
|
|
7
7
|
//#region src/auth/auth.d.ts
|
|
8
8
|
|
|
@@ -38,10 +38,10 @@ declare function _inferAuthType(): better_auth0.Auth<{
|
|
|
38
38
|
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
39
39
|
}[];
|
|
40
40
|
};
|
|
41
|
-
options:
|
|
41
|
+
options: better_auth_plugins20.BearerOptions | undefined;
|
|
42
42
|
}, {
|
|
43
43
|
id: "oauth-proxy";
|
|
44
|
-
options: NoInfer<
|
|
44
|
+
options: NoInfer<better_auth_plugins20.OAuthProxyOptions>;
|
|
45
45
|
endpoints: {
|
|
46
46
|
oAuthProxy: better_auth0.StrictEndpoint<"/oauth-proxy-callback", {
|
|
47
47
|
method: "GET";
|
|
@@ -93,7 +93,7 @@ declare function _inferAuthType(): better_auth0.Auth<{
|
|
|
93
93
|
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
94
94
|
}[];
|
|
95
95
|
};
|
|
96
|
-
},
|
|
96
|
+
}, better_auth_plugins20.DefaultOrganizationPlugin<{
|
|
97
97
|
schema: {
|
|
98
98
|
invitation: {
|
|
99
99
|
additionalFields: {
|
|
@@ -456,8 +456,8 @@ declare function _inferAuthType(): better_auth0.Auth<{
|
|
|
456
456
|
AUTHENTICATION_REQUIRED: better_auth0.RawError<"AUTHENTICATION_REQUIRED">;
|
|
457
457
|
};
|
|
458
458
|
options: Partial<{
|
|
459
|
-
expiresIn:
|
|
460
|
-
interval:
|
|
459
|
+
expiresIn: better_auth_plugins20.TimeString;
|
|
460
|
+
interval: better_auth_plugins20.TimeString;
|
|
461
461
|
deviceCodeLength: number;
|
|
462
462
|
userCodeLength: number;
|
|
463
463
|
schema: {
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as better_auth_plugins0 from "better-auth/plugins";
|
|
2
2
|
import { AccessControl } from "better-auth/plugins/access";
|
|
3
3
|
import { organizationClient } from "better-auth/client/plugins";
|
|
4
4
|
|
|
5
5
|
//#region src/auth/permissions.d.ts
|
|
6
6
|
declare const ac: AccessControl;
|
|
7
7
|
declare const memberRole: {
|
|
8
|
-
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?:
|
|
9
|
-
actions:
|
|
8
|
+
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key] | {
|
|
9
|
+
actions: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key];
|
|
10
10
|
connector: "OR" | "AND";
|
|
11
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
12
|
-
statements:
|
|
11
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
12
|
+
statements: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>;
|
|
13
13
|
};
|
|
14
14
|
declare const adminRole: {
|
|
15
|
-
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?:
|
|
16
|
-
actions:
|
|
15
|
+
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key] | {
|
|
16
|
+
actions: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key];
|
|
17
17
|
connector: "OR" | "AND";
|
|
18
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
19
|
-
statements:
|
|
18
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
19
|
+
statements: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>;
|
|
20
20
|
};
|
|
21
21
|
declare const ownerRole: {
|
|
22
|
-
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?:
|
|
23
|
-
actions:
|
|
22
|
+
authorize<K_1 extends "organization" | "member" | "invitation" | "project" | "team" | "ac">(request: K_1 extends infer T extends K ? { [key in T]?: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key] | {
|
|
23
|
+
actions: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>[key];
|
|
24
24
|
connector: "OR" | "AND";
|
|
25
|
-
} | undefined } : never, connector?: "OR" | "AND"):
|
|
26
|
-
statements:
|
|
25
|
+
} | undefined } : never, connector?: "OR" | "AND"): better_auth_plugins0.AuthorizeResponse;
|
|
26
|
+
statements: better_auth_plugins0.Subset<"organization" | "member" | "invitation" | "project" | "team" | "ac", better_auth_plugins0.Statements>;
|
|
27
27
|
};
|
|
28
28
|
//#endregion
|
|
29
29
|
export { ac, adminRole, memberRole, organizationClient, ownerRole };
|
|
@@ -17,6 +17,8 @@ declare const SPAN_NAMES: {
|
|
|
17
17
|
readonly COMPRESSOR_SAFE_COMPRESS: "compressor.safe_compress";
|
|
18
18
|
readonly AGENT_MAX_STEPS_REACHED: "agent.max_steps_reached";
|
|
19
19
|
readonly STREAM_FORCE_CLEANUP: "stream.force_cleanup";
|
|
20
|
+
readonly DURABLE_TOOL_EXECUTION: "durable.tool_execution";
|
|
21
|
+
readonly EXECUTION_HANDLER_EXECUTE: "execution_handler.execute";
|
|
20
22
|
};
|
|
21
23
|
declare const AI_OPERATIONS: {
|
|
22
24
|
readonly GENERATE_TEXT: "ai.generateText.doGenerate";
|
|
@@ -72,6 +74,8 @@ declare const SPAN_KEYS: {
|
|
|
72
74
|
readonly TOOL_NAME: "tool.name";
|
|
73
75
|
readonly TOOL_CALL_ID: "tool.callId";
|
|
74
76
|
readonly TOOL_APPROVAL_REASON: "tool.approval.reason";
|
|
77
|
+
readonly TOOL_RESPONSE_CONTENT: "tool.response.content";
|
|
78
|
+
readonly TOOL_RESPONSE_TIMESTAMP: "tool.response.timestamp";
|
|
75
79
|
readonly GEN_AI_USAGE_INPUT_TOKENS: "gen_ai.usage.input_tokens";
|
|
76
80
|
readonly GEN_AI_USAGE_OUTPUT_TOKENS: "gen_ai.usage.output_tokens";
|
|
77
81
|
readonly GEN_AI_COST_ESTIMATED_USD: "gen_ai.cost.estimated_usd";
|
|
@@ -173,6 +177,7 @@ declare const ACTIVITY_TYPES: {
|
|
|
173
177
|
readonly COMPRESSION: "compression";
|
|
174
178
|
readonly MAX_STEPS_REACHED: "max_steps_reached";
|
|
175
179
|
readonly STREAM_LIFETIME_EXCEEDED: "stream_lifetime_exceeded";
|
|
180
|
+
readonly DURABLE_TOOL_EXECUTION: "durable_tool_execution";
|
|
176
181
|
};
|
|
177
182
|
/** Activity Status Values */
|
|
178
183
|
declare const ACTIVITY_STATUS: {
|
|
@@ -16,7 +16,9 @@ const SPAN_NAMES = {
|
|
|
16
16
|
TOOL_APPROVAL_DENIED: "tool.approval_denied",
|
|
17
17
|
COMPRESSOR_SAFE_COMPRESS: "compressor.safe_compress",
|
|
18
18
|
AGENT_MAX_STEPS_REACHED: "agent.max_steps_reached",
|
|
19
|
-
STREAM_FORCE_CLEANUP: "stream.force_cleanup"
|
|
19
|
+
STREAM_FORCE_CLEANUP: "stream.force_cleanup",
|
|
20
|
+
DURABLE_TOOL_EXECUTION: "durable.tool_execution",
|
|
21
|
+
EXECUTION_HANDLER_EXECUTE: "execution_handler.execute"
|
|
20
22
|
};
|
|
21
23
|
const AI_OPERATIONS = {
|
|
22
24
|
GENERATE_TEXT: "ai.generateText.doGenerate",
|
|
@@ -72,6 +74,8 @@ const SPAN_KEYS = {
|
|
|
72
74
|
TOOL_NAME: "tool.name",
|
|
73
75
|
TOOL_CALL_ID: "tool.callId",
|
|
74
76
|
TOOL_APPROVAL_REASON: "tool.approval.reason",
|
|
77
|
+
TOOL_RESPONSE_CONTENT: "tool.response.content",
|
|
78
|
+
TOOL_RESPONSE_TIMESTAMP: "tool.response.timestamp",
|
|
75
79
|
GEN_AI_USAGE_INPUT_TOKENS: "gen_ai.usage.input_tokens",
|
|
76
80
|
GEN_AI_USAGE_OUTPUT_TOKENS: "gen_ai.usage.output_tokens",
|
|
77
81
|
GEN_AI_COST_ESTIMATED_USD: "gen_ai.cost.estimated_usd",
|
|
@@ -172,7 +176,8 @@ const ACTIVITY_TYPES = {
|
|
|
172
176
|
TOOL_APPROVAL_DENIED: "tool_approval_denied",
|
|
173
177
|
COMPRESSION: "compression",
|
|
174
178
|
MAX_STEPS_REACHED: "max_steps_reached",
|
|
175
|
-
STREAM_LIFETIME_EXCEEDED: "stream_lifetime_exceeded"
|
|
179
|
+
STREAM_LIFETIME_EXCEEDED: "stream_lifetime_exceeded",
|
|
180
|
+
DURABLE_TOOL_EXECUTION: "durable_tool_execution"
|
|
176
181
|
};
|
|
177
182
|
/** Activity Status Values */
|
|
178
183
|
const ACTIVITY_STATUS = {
|
|
@@ -73,6 +73,7 @@ declare const QUERY_EXPRESSIONS: {
|
|
|
73
73
|
readonly COMPRESSION: "compression";
|
|
74
74
|
readonly MAX_STEPS_REACHED: "maxStepsReached";
|
|
75
75
|
readonly STREAM_LIFETIME_EXCEEDED: "streamLifetimeExceeded";
|
|
76
|
+
readonly DURABLE_TOOL_EXECUTIONS: "durableToolExecutions";
|
|
76
77
|
};
|
|
77
78
|
/** Query Order Directions */
|
|
78
79
|
declare const ORDER_DIRECTIONS: {
|
|
@@ -95,7 +95,8 @@ const QUERY_EXPRESSIONS = {
|
|
|
95
95
|
AI_LLM_CALLS: "aiLlmCalls",
|
|
96
96
|
COMPRESSION: "compression",
|
|
97
97
|
MAX_STEPS_REACHED: "maxStepsReached",
|
|
98
|
-
STREAM_LIFETIME_EXCEEDED: "streamLifetimeExceeded"
|
|
98
|
+
STREAM_LIFETIME_EXCEEDED: "streamLifetimeExceeded",
|
|
99
|
+
DURABLE_TOOL_EXECUTIONS: "durableToolExecutions"
|
|
99
100
|
};
|
|
100
101
|
/** Query Order Directions */
|
|
101
102
|
const ORDER_DIRECTIONS = {
|
|
@@ -14,9 +14,11 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
14
14
|
name: string;
|
|
15
15
|
createdAt: string;
|
|
16
16
|
updatedAt: string;
|
|
17
|
-
description: string | null;
|
|
18
|
-
projectId: string;
|
|
19
17
|
tenantId: string;
|
|
18
|
+
projectId: string;
|
|
19
|
+
description: string | null;
|
|
20
|
+
defaultSubAgentId: string | null;
|
|
21
|
+
contextConfigId: string | null;
|
|
20
22
|
models: {
|
|
21
23
|
base?: {
|
|
22
24
|
model?: string | undefined;
|
|
@@ -37,11 +39,6 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
37
39
|
allowedProviders?: string[] | undefined;
|
|
38
40
|
} | undefined;
|
|
39
41
|
} | null;
|
|
40
|
-
stopWhen: {
|
|
41
|
-
transferCountIs?: number | undefined;
|
|
42
|
-
} | null;
|
|
43
|
-
defaultSubAgentId: string | null;
|
|
44
|
-
contextConfigId: string | null;
|
|
45
42
|
prompt: string | null;
|
|
46
43
|
statusUpdates: {
|
|
47
44
|
enabled?: boolean | undefined;
|
|
@@ -58,6 +55,9 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
58
55
|
} | undefined;
|
|
59
56
|
}[] | undefined;
|
|
60
57
|
} | 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: {
|
|
@@ -67,9 +67,11 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
67
67
|
name: string;
|
|
68
68
|
createdAt: string;
|
|
69
69
|
updatedAt: string;
|
|
70
|
-
description: string | null;
|
|
71
|
-
projectId: string;
|
|
72
70
|
tenantId: string;
|
|
71
|
+
projectId: string;
|
|
72
|
+
description: string | null;
|
|
73
|
+
defaultSubAgentId: string | null;
|
|
74
|
+
contextConfigId: string | null;
|
|
73
75
|
models: {
|
|
74
76
|
base?: {
|
|
75
77
|
model?: string | undefined;
|
|
@@ -90,11 +92,6 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
90
92
|
allowedProviders?: string[] | undefined;
|
|
91
93
|
} | undefined;
|
|
92
94
|
} | null;
|
|
93
|
-
stopWhen: {
|
|
94
|
-
transferCountIs?: number | undefined;
|
|
95
|
-
} | null;
|
|
96
|
-
defaultSubAgentId: string | null;
|
|
97
|
-
contextConfigId: string | null;
|
|
98
95
|
prompt: string | null;
|
|
99
96
|
statusUpdates: {
|
|
100
97
|
enabled?: boolean | undefined;
|
|
@@ -111,15 +108,19 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
111
108
|
} | undefined;
|
|
112
109
|
}[] | undefined;
|
|
113
110
|
} | 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
118
|
createdAt: string;
|
|
119
119
|
updatedAt: string;
|
|
120
|
-
description: string | null;
|
|
121
|
-
projectId: string;
|
|
122
120
|
tenantId: string;
|
|
121
|
+
projectId: string;
|
|
122
|
+
description: string | null;
|
|
123
|
+
agentId: string;
|
|
123
124
|
models: {
|
|
124
125
|
base?: {
|
|
125
126
|
model?: string | undefined;
|
|
@@ -140,11 +141,10 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
140
141
|
allowedProviders?: string[] | undefined;
|
|
141
142
|
} | undefined;
|
|
142
143
|
} | null;
|
|
144
|
+
prompt: string | null;
|
|
143
145
|
stopWhen: {
|
|
144
146
|
stepCountIs?: number | undefined;
|
|
145
147
|
} | null;
|
|
146
|
-
agentId: string;
|
|
147
|
-
prompt: string | null;
|
|
148
148
|
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
149
149
|
} | null;
|
|
150
150
|
} | null>;
|
|
@@ -155,9 +155,11 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
155
155
|
name: string;
|
|
156
156
|
createdAt: string;
|
|
157
157
|
updatedAt: string;
|
|
158
|
-
description: string | null;
|
|
159
|
-
projectId: string;
|
|
160
158
|
tenantId: string;
|
|
159
|
+
projectId: string;
|
|
160
|
+
description: string | null;
|
|
161
|
+
defaultSubAgentId: string | null;
|
|
162
|
+
contextConfigId: string | null;
|
|
161
163
|
models: {
|
|
162
164
|
base?: {
|
|
163
165
|
model?: string | undefined;
|
|
@@ -178,11 +180,6 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
178
180
|
allowedProviders?: string[] | undefined;
|
|
179
181
|
} | undefined;
|
|
180
182
|
} | null;
|
|
181
|
-
stopWhen: {
|
|
182
|
-
transferCountIs?: number | undefined;
|
|
183
|
-
} | null;
|
|
184
|
-
defaultSubAgentId: string | null;
|
|
185
|
-
contextConfigId: string | null;
|
|
186
183
|
prompt: string | null;
|
|
187
184
|
statusUpdates: {
|
|
188
185
|
enabled?: boolean | undefined;
|
|
@@ -199,6 +196,9 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
199
196
|
} | undefined;
|
|
200
197
|
}[] | undefined;
|
|
201
198
|
} | null;
|
|
199
|
+
stopWhen: {
|
|
200
|
+
transferCountIs?: number | undefined;
|
|
201
|
+
} | null;
|
|
202
202
|
executionMode: "classic" | "durable";
|
|
203
203
|
}[]>;
|
|
204
204
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -285,9 +285,11 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
285
285
|
name: string;
|
|
286
286
|
createdAt: string;
|
|
287
287
|
updatedAt: string;
|
|
288
|
-
description: string | null;
|
|
289
|
-
projectId: string;
|
|
290
288
|
tenantId: string;
|
|
289
|
+
projectId: string;
|
|
290
|
+
description: string | null;
|
|
291
|
+
defaultSubAgentId: string | null;
|
|
292
|
+
contextConfigId: string | null;
|
|
291
293
|
models: {
|
|
292
294
|
base?: {
|
|
293
295
|
model?: string | undefined;
|
|
@@ -308,11 +310,6 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
308
310
|
allowedProviders?: string[] | undefined;
|
|
309
311
|
} | undefined;
|
|
310
312
|
} | null;
|
|
311
|
-
stopWhen: {
|
|
312
|
-
transferCountIs?: number | undefined;
|
|
313
|
-
} | null;
|
|
314
|
-
defaultSubAgentId: string | null;
|
|
315
|
-
contextConfigId: string | null;
|
|
316
313
|
prompt: string | null;
|
|
317
314
|
statusUpdates: {
|
|
318
315
|
enabled?: boolean | undefined;
|
|
@@ -329,6 +326,9 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
329
326
|
} | undefined;
|
|
330
327
|
}[] | undefined;
|
|
331
328
|
} | null;
|
|
329
|
+
stopWhen: {
|
|
330
|
+
transferCountIs?: number | undefined;
|
|
331
|
+
} | null;
|
|
332
332
|
executionMode: "classic" | "durable";
|
|
333
333
|
}>;
|
|
334
334
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
@@ -13,9 +13,9 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
13
13
|
name: string;
|
|
14
14
|
createdAt: string;
|
|
15
15
|
updatedAt: string;
|
|
16
|
-
description: string | null;
|
|
17
|
-
projectId: string;
|
|
18
16
|
tenantId: string;
|
|
17
|
+
projectId: string;
|
|
18
|
+
description: string | null;
|
|
19
19
|
props: {
|
|
20
20
|
[x: string]: unknown;
|
|
21
21
|
type: "object";
|
|
@@ -69,9 +69,9 @@ declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (para
|
|
|
69
69
|
name: string;
|
|
70
70
|
createdAt: string;
|
|
71
71
|
updatedAt: string;
|
|
72
|
-
description: string | null;
|
|
73
|
-
projectId: string;
|
|
74
72
|
tenantId: string;
|
|
73
|
+
projectId: string;
|
|
74
|
+
description: string | null;
|
|
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
|
-
projectId: string;
|
|
147
146
|
tenantId: string;
|
|
147
|
+
projectId: 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
|
-
projectId: string;
|
|
190
189
|
tenantId: string;
|
|
190
|
+
projectId: string;
|
|
191
191
|
agentId: string;
|
|
192
192
|
subAgentId: string;
|
|
193
193
|
artifactComponentId: string;
|
|
@@ -12,8 +12,8 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
-
projectId: string;
|
|
16
15
|
tenantId: string;
|
|
16
|
+
projectId: string;
|
|
17
17
|
agentId: string;
|
|
18
18
|
headersSchema: unknown;
|
|
19
19
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
@@ -24,8 +24,8 @@ declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
24
24
|
id: string;
|
|
25
25
|
createdAt: string;
|
|
26
26
|
updatedAt: string;
|
|
27
|
-
projectId: string;
|
|
28
27
|
tenantId: string;
|
|
28
|
+
projectId: string;
|
|
29
29
|
agentId: string;
|
|
30
30
|
headersSchema: unknown;
|
|
31
31
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
@@ -46,8 +46,8 @@ declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
46
46
|
id: string;
|
|
47
47
|
createdAt: string;
|
|
48
48
|
updatedAt: string;
|
|
49
|
-
projectId: string;
|
|
50
49
|
tenantId: string;
|
|
50
|
+
projectId: string;
|
|
51
51
|
agentId: string;
|
|
52
52
|
headersSchema: unknown;
|
|
53
53
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
@@ -86,8 +86,8 @@ declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params:
|
|
|
86
86
|
id: string;
|
|
87
87
|
createdAt: string;
|
|
88
88
|
updatedAt: string;
|
|
89
|
-
projectId: string;
|
|
90
89
|
tenantId: string;
|
|
90
|
+
projectId: string;
|
|
91
91
|
agentId: string;
|
|
92
92
|
headersSchema: unknown;
|
|
93
93
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
@@ -67,8 +67,8 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
67
67
|
}) => Promise<{
|
|
68
68
|
id: string;
|
|
69
69
|
createdAt: string;
|
|
70
|
-
projectId: string;
|
|
71
70
|
tenantId: string;
|
|
71
|
+
projectId: 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
|
-
projectId: string;
|
|
113
112
|
tenantId: string;
|
|
113
|
+
projectId: string;
|
|
114
114
|
agentId: string;
|
|
115
115
|
subAgentId: string;
|
|
116
116
|
dataComponentId: string;
|
|
@@ -57,9 +57,9 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
57
57
|
name: string;
|
|
58
58
|
createdAt: string;
|
|
59
59
|
updatedAt: string;
|
|
60
|
-
description: string | null;
|
|
61
|
-
projectId: string;
|
|
62
60
|
tenantId: string;
|
|
61
|
+
projectId: string;
|
|
62
|
+
description: string | null;
|
|
63
63
|
agentId: string;
|
|
64
64
|
functionId: string;
|
|
65
65
|
}>;
|
|
@@ -99,9 +99,9 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
99
99
|
name: string;
|
|
100
100
|
createdAt: string;
|
|
101
101
|
updatedAt: string;
|
|
102
|
-
description: string | null;
|
|
103
|
-
projectId: string;
|
|
104
102
|
tenantId: string;
|
|
103
|
+
projectId: string;
|
|
104
|
+
description: string | null;
|
|
105
105
|
agentId: string;
|
|
106
106
|
functionId: string;
|
|
107
107
|
}>;
|
|
@@ -160,8 +160,8 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
|
|
|
160
160
|
id: string;
|
|
161
161
|
createdAt: string;
|
|
162
162
|
updatedAt: string;
|
|
163
|
-
projectId: string;
|
|
164
163
|
tenantId: string;
|
|
164
|
+
projectId: string;
|
|
165
165
|
agentId: string;
|
|
166
166
|
subAgentId: string;
|
|
167
167
|
toolPolicies: Record<string, {
|
|
@@ -225,8 +225,8 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
|
|
|
225
225
|
id: string;
|
|
226
226
|
createdAt: string;
|
|
227
227
|
updatedAt: string;
|
|
228
|
-
projectId: string;
|
|
229
228
|
tenantId: string;
|
|
229
|
+
projectId: string;
|
|
230
230
|
agentId: string;
|
|
231
231
|
subAgentId: string;
|
|
232
232
|
toolPolicies: Record<string, {
|
|
@@ -20,10 +20,10 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
20
20
|
createdAt: string;
|
|
21
21
|
updatedAt: string;
|
|
22
22
|
metadata: Record<string, string> | null;
|
|
23
|
+
tenantId: string;
|
|
24
|
+
projectId: string;
|
|
23
25
|
description: string;
|
|
24
26
|
content: string;
|
|
25
|
-
projectId: string;
|
|
26
|
-
tenantId: string;
|
|
27
27
|
} | null>;
|
|
28
28
|
declare const getSkillByIdWithFiles: (db: AgentsManageDatabaseClient) => (params: {
|
|
29
29
|
scopes: ProjectScopeConfig;
|
|
@@ -115,10 +115,10 @@ declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillApiIn
|
|
|
115
115
|
createdAt: string;
|
|
116
116
|
updatedAt: string;
|
|
117
117
|
metadata: Record<string, string> | null;
|
|
118
|
+
tenantId: string;
|
|
119
|
+
projectId: string;
|
|
118
120
|
description: string;
|
|
119
121
|
content: string;
|
|
120
|
-
projectId: string;
|
|
121
|
-
tenantId: string;
|
|
122
122
|
}>;
|
|
123
123
|
declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
124
124
|
scopes: ProjectScopeConfig;
|
|
@@ -142,8 +142,8 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
|
|
|
142
142
|
id: string;
|
|
143
143
|
createdAt: string;
|
|
144
144
|
updatedAt: string;
|
|
145
|
-
projectId: string;
|
|
146
145
|
tenantId: string;
|
|
146
|
+
projectId: string;
|
|
147
147
|
agentId: string;
|
|
148
148
|
subAgentId: string;
|
|
149
149
|
skillId: string;
|
|
@@ -12,11 +12,11 @@ declare const getSubAgentExternalAgentRelationById: (db: AgentsManageDatabaseCli
|
|
|
12
12
|
id: string;
|
|
13
13
|
createdAt: string;
|
|
14
14
|
updatedAt: string;
|
|
15
|
-
projectId: string;
|
|
16
15
|
tenantId: string;
|
|
16
|
+
projectId: string;
|
|
17
17
|
agentId: string;
|
|
18
|
-
headers: Record<string, string> | null;
|
|
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
|
-
projectId: string;
|
|
51
50
|
tenantId: string;
|
|
51
|
+
projectId: string;
|
|
52
52
|
agentId: string;
|
|
53
|
-
headers: Record<string, string> | null;
|
|
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
|
-
projectId: string;
|
|
64
63
|
tenantId: string;
|
|
64
|
+
projectId: string;
|
|
65
65
|
agentId: string;
|
|
66
|
-
headers: Record<string, string> | null;
|
|
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
|
-
projectId: string;
|
|
193
192
|
tenantId: string;
|
|
193
|
+
projectId: string;
|
|
194
194
|
agentId: string;
|
|
195
|
-
headers: Record<string, string> | null;
|
|
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
|
-
projectId: string;
|
|
210
209
|
tenantId: string;
|
|
210
|
+
projectId: string;
|
|
211
211
|
agentId: string;
|
|
212
|
-
headers: Record<string, string> | null;
|
|
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
|
-
projectId: string;
|
|
231
230
|
tenantId: string;
|
|
231
|
+
projectId: string;
|
|
232
232
|
agentId: string;
|
|
233
|
-
headers: Record<string, string> | null;
|
|
234
233
|
subAgentId: string;
|
|
234
|
+
headers: Record<string, string> | null;
|
|
235
235
|
externalAgentId: string;
|
|
236
236
|
}>;
|
|
237
237
|
declare const updateSubAgentExternalAgentRelation: (db: AgentsManageDatabaseClient) => (params: {
|