@inkeep/agents-api 0.0.0-dev-20260413050848 → 0.0.0-dev-20260413152429
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/.well-known/workflow/v1/manifest.json +33 -33
- package/dist/createApp.d.ts +2 -2
- package/dist/data/db/runDbClient.d.ts +2 -2
- package/dist/data-reconciliation/handlers/sub-agents.d.ts +2 -2
- package/dist/data-reconciliation/handlers/tools.d.ts +2 -2
- package/dist/domains/evals/routes/index.d.ts +2 -2
- package/dist/domains/evals/workflow/routes.d.ts +2 -2
- package/dist/domains/manage/routes/authLookup.d.ts +2 -2
- package/dist/domains/manage/routes/availableAgents.d.ts +2 -2
- package/dist/domains/manage/routes/feedback.d.ts +2 -2
- package/dist/domains/manage/routes/index.d.ts +2 -2
- package/dist/domains/manage/routes/invitations.d.ts +2 -2
- package/dist/domains/manage/routes/mcpCatalog.js +146 -42
- package/dist/domains/manage/routes/passwordResetLinks.d.ts +2 -2
- package/dist/domains/manage/routes/signoz.d.ts +2 -2
- package/dist/domains/manage/routes/users.d.ts +2 -2
- package/dist/domains/mcp/routes/mcp.d.ts +2 -2
- package/dist/domains/run/agents/relationTools.d.ts +2 -2
- package/dist/domains/run/routes/auth.d.ts +2 -2
- package/dist/domains/run/types/chat.d.ts +3 -3
- package/dist/domains/run/workflow/steps/scheduledTriggerSteps.d.ts +6 -6
- package/dist/env.d.ts +2 -2
- package/dist/factory.d.ts +340 -340
- package/dist/index.d.ts +338 -338
- package/dist/middleware/evalsAuth.d.ts +2 -2
- package/dist/middleware/manageAuth.d.ts +3 -3
- package/dist/middleware/projectConfig.d.ts +3 -3
- package/dist/middleware/requireEntitlement.d.ts +2 -2
- package/dist/middleware/requirePermission.d.ts +2 -2
- package/dist/middleware/runAuth.d.ts +4 -4
- package/dist/middleware/sessionAuth.d.ts +3 -3
- package/dist/middleware/tenantAccess.d.ts +2 -2
- package/dist/middleware/tracing.d.ts +3 -3
- package/package.json +5 -5
|
@@ -102,8 +102,8 @@ declare const VercelMessagePartSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
102
102
|
declare const VercelMessageSchema: z.ZodObject<{
|
|
103
103
|
role: z.ZodEnum<{
|
|
104
104
|
function: "function";
|
|
105
|
-
user: "user";
|
|
106
105
|
system: "system";
|
|
106
|
+
user: "user";
|
|
107
107
|
assistant: "assistant";
|
|
108
108
|
tool: "tool";
|
|
109
109
|
}>;
|
|
@@ -177,8 +177,8 @@ type ContentItem = z.infer<typeof ContentItemSchema>;
|
|
|
177
177
|
declare const MessageSchema: z.ZodObject<{
|
|
178
178
|
role: z.ZodEnum<{
|
|
179
179
|
function: "function";
|
|
180
|
-
user: "user";
|
|
181
180
|
system: "system";
|
|
181
|
+
user: "user";
|
|
182
182
|
assistant: "assistant";
|
|
183
183
|
tool: "tool";
|
|
184
184
|
}>;
|
|
@@ -210,8 +210,8 @@ declare const ChatCompletionRequestSchema: z.ZodObject<{
|
|
|
210
210
|
messages: z.ZodArray<z.ZodObject<{
|
|
211
211
|
role: z.ZodEnum<{
|
|
212
212
|
function: "function";
|
|
213
|
-
user: "user";
|
|
214
213
|
system: "system";
|
|
214
|
+
user: "user";
|
|
215
215
|
assistant: "assistant";
|
|
216
216
|
tool: "tool";
|
|
217
217
|
}>;
|
|
@@ -74,7 +74,7 @@ declare function createInvocationIdempotentStep(params: {
|
|
|
74
74
|
projectId: string;
|
|
75
75
|
tenantId: string;
|
|
76
76
|
id: string;
|
|
77
|
-
status: "completed" | "pending" | "
|
|
77
|
+
status: "completed" | "pending" | "running" | "failed" | "cancelled";
|
|
78
78
|
ref?: {
|
|
79
79
|
type: "commit" | "tag" | "branch";
|
|
80
80
|
name: string;
|
|
@@ -120,7 +120,7 @@ declare function markRunningStep(params: {
|
|
|
120
120
|
projectId: string;
|
|
121
121
|
tenantId: string;
|
|
122
122
|
id: string;
|
|
123
|
-
status: "completed" | "pending" | "
|
|
123
|
+
status: "completed" | "pending" | "running" | "failed" | "cancelled";
|
|
124
124
|
ref?: {
|
|
125
125
|
type: "commit" | "tag" | "branch";
|
|
126
126
|
name: string;
|
|
@@ -153,7 +153,7 @@ declare function addConversationIdStep(params: {
|
|
|
153
153
|
projectId: string;
|
|
154
154
|
tenantId: string;
|
|
155
155
|
id: string;
|
|
156
|
-
status: "completed" | "pending" | "
|
|
156
|
+
status: "completed" | "pending" | "running" | "failed" | "cancelled";
|
|
157
157
|
ref?: {
|
|
158
158
|
type: "commit" | "tag" | "branch";
|
|
159
159
|
name: string;
|
|
@@ -184,7 +184,7 @@ declare function markCompletedStep(params: {
|
|
|
184
184
|
projectId: string;
|
|
185
185
|
tenantId: string;
|
|
186
186
|
id: string;
|
|
187
|
-
status: "completed" | "pending" | "
|
|
187
|
+
status: "completed" | "pending" | "running" | "failed" | "cancelled";
|
|
188
188
|
ref?: {
|
|
189
189
|
type: "commit" | "tag" | "branch";
|
|
190
190
|
name: string;
|
|
@@ -215,7 +215,7 @@ declare function markFailedStep(params: {
|
|
|
215
215
|
projectId: string;
|
|
216
216
|
tenantId: string;
|
|
217
217
|
id: string;
|
|
218
|
-
status: "completed" | "pending" | "
|
|
218
|
+
status: "completed" | "pending" | "running" | "failed" | "cancelled";
|
|
219
219
|
ref?: {
|
|
220
220
|
type: "commit" | "tag" | "branch";
|
|
221
221
|
name: string;
|
|
@@ -265,7 +265,7 @@ declare function resetInvocationToPendingStep(params: {
|
|
|
265
265
|
projectId: string;
|
|
266
266
|
tenantId: string;
|
|
267
267
|
id: string;
|
|
268
|
-
status: "completed" | "pending" | "
|
|
268
|
+
status: "completed" | "pending" | "running" | "failed" | "cancelled";
|
|
269
269
|
ref?: {
|
|
270
270
|
type: "commit" | "tag" | "branch";
|
|
271
271
|
name: string;
|
package/dist/env.d.ts
CHANGED
|
@@ -14,11 +14,11 @@ declare const envSchema: z.ZodObject<{
|
|
|
14
14
|
pentest: "pentest";
|
|
15
15
|
}>>;
|
|
16
16
|
LOG_LEVEL: z.ZodDefault<z.ZodEnum<{
|
|
17
|
+
error: "error";
|
|
17
18
|
trace: "trace";
|
|
18
19
|
debug: "debug";
|
|
19
20
|
info: "info";
|
|
20
21
|
warn: "warn";
|
|
21
|
-
error: "error";
|
|
22
22
|
}>>;
|
|
23
23
|
INKEEP_AGENTS_MANAGE_DATABASE_URL: z.ZodString;
|
|
24
24
|
INKEEP_AGENTS_RUN_DATABASE_URL: z.ZodString;
|
|
@@ -78,7 +78,7 @@ declare const envSchema: z.ZodObject<{
|
|
|
78
78
|
declare const env: {
|
|
79
79
|
NODE_ENV: "development" | "production" | "test";
|
|
80
80
|
ENVIRONMENT: "development" | "production" | "test" | "pentest";
|
|
81
|
-
LOG_LEVEL: "
|
|
81
|
+
LOG_LEVEL: "error" | "trace" | "debug" | "info" | "warn";
|
|
82
82
|
INKEEP_AGENTS_MANAGE_DATABASE_URL: string;
|
|
83
83
|
INKEEP_AGENTS_RUN_DATABASE_URL: string;
|
|
84
84
|
INKEEP_AGENTS_API_URL: string;
|