@inkeep/agents-api 0.0.0-dev-20260302211942 → 0.0.0-dev-20260302234522

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.
Files changed (34) hide show
  1. package/dist/.well-known/workflow/v1/manifest.json +14 -14
  2. package/dist/createApp.js +2 -2
  3. package/dist/data/db/manageDbClient.d.ts +2 -2
  4. package/dist/data/db/runDbClient.d.ts +2 -2
  5. package/dist/domains/evals/routes/datasetTriggers.d.ts +2 -2
  6. package/dist/domains/evals/routes/index.d.ts +2 -2
  7. package/dist/domains/evals/workflow/routes.d.ts +2 -2
  8. package/dist/domains/manage/routes/availableAgents.d.ts +2 -2
  9. package/dist/domains/manage/routes/conversations.d.ts +2 -2
  10. package/dist/domains/manage/routes/index.d.ts +2 -2
  11. package/dist/domains/manage/routes/invitations.d.ts +2 -2
  12. package/dist/domains/manage/routes/passwordResetLinks.d.ts +2 -2
  13. package/dist/domains/manage/routes/users.d.ts +2 -2
  14. package/dist/domains/mcp/routes/mcp.d.ts +2 -2
  15. package/dist/domains/run/agents/relationTools.d.ts +2 -2
  16. package/dist/domains/run/tools/distill-conversation-history-tool.d.ts +1 -1
  17. package/dist/domains/run/types/chat.d.ts +4 -4
  18. package/dist/domains/run/workflow/steps/scheduledTriggerSteps.d.ts +5 -5
  19. package/dist/factory.d.ts +322 -322
  20. package/dist/index.d.ts +322 -322
  21. package/dist/middleware/index.d.ts +2 -2
  22. package/dist/middleware/index.js +2 -2
  23. package/dist/middleware/manageAuth.d.ts +10 -6
  24. package/dist/middleware/manageAuth.js +13 -19
  25. package/dist/middleware/projectConfig.d.ts +3 -3
  26. package/dist/middleware/requirePermission.d.ts +2 -2
  27. package/dist/middleware/runAuth.d.ts +4 -4
  28. package/dist/middleware/runAuth.js +5 -0
  29. package/dist/middleware/sessionAuth.d.ts +3 -3
  30. package/dist/middleware/tenantAccess.d.ts +2 -2
  31. package/dist/middleware/tracing.d.ts +3 -3
  32. package/dist/middleware/workAppsAuth.js +4 -4
  33. package/dist/routes/capabilities.js +2 -2
  34. package/package.json +4 -4
@@ -1,20 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
3
  "steps": {
4
- "src/domains/evals/workflow/functions/runDatasetItem.ts": {
5
- "callChatApiStep": {
6
- "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//callChatApiStep"
7
- },
8
- "createRelationStep": {
9
- "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//createRelationStep"
10
- },
11
- "executeEvaluatorStep": {
12
- "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//executeEvaluatorStep"
13
- },
14
- "logStep": {
15
- "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//logStep"
16
- }
17
- },
18
4
  "node_modules/.pnpm/workflow@4.1.0-beta.54_@aws-sdk+client-sts@3.970.0_@nestjs+common@11.1.13_reflect-metad_f85281f2580d7065fc514e637f5f5e1f/node_modules/workflow/dist/internal/builtins.js": {
19
5
  "__builtin_response_array_buffer": {
20
6
  "stepId": "__builtin_response_array_buffer"
@@ -31,6 +17,20 @@
31
17
  "stepId": "step//workflow@4.1.0-beta.54//fetch"
32
18
  }
33
19
  },
20
+ "src/domains/evals/workflow/functions/runDatasetItem.ts": {
21
+ "callChatApiStep": {
22
+ "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//callChatApiStep"
23
+ },
24
+ "createRelationStep": {
25
+ "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//createRelationStep"
26
+ },
27
+ "executeEvaluatorStep": {
28
+ "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//executeEvaluatorStep"
29
+ },
30
+ "logStep": {
31
+ "stepId": "step//./src/domains/evals/workflow/functions/runDatasetItem//logStep"
32
+ }
33
+ },
34
34
  "src/domains/evals/workflow/functions/evaluateConversation.ts": {
35
35
  "executeEvaluatorStep": {
36
36
  "stepId": "step//./src/domains/evals/workflow/functions/evaluateConversation//executeEvaluatorStep"
package/dist/createApp.js CHANGED
@@ -5,7 +5,7 @@ import { workflowRoutes } from "./domains/evals/workflow/routes.js";
5
5
  import { authCorsConfig, defaultCorsConfig, playgroundCorsConfig, runCorsConfig, signozCorsConfig, workAppsCorsConfig } from "./middleware/cors.js";
6
6
  import { errorHandler } from "./middleware/errorHandler.js";
7
7
  import { sessionContext } from "./middleware/sessionAuth.js";
8
- import { manageApiKeyOrSessionAuth } from "./middleware/manageAuth.js";
8
+ import { manageBearerOrSessionAuth } from "./middleware/manageAuth.js";
9
9
  import { runApiKeyAuth, runApiKeyAuthExcept } from "./middleware/runAuth.js";
10
10
  import { requireTenantAccess } from "./middleware/tenantAccess.js";
11
11
  import { workAppsAuth } from "./middleware/workAppsAuth.js";
@@ -112,7 +112,7 @@ function createAgentsHono(config) {
112
112
  app.use("*", sessionContext());
113
113
  app.route("/", healthChecksHandler);
114
114
  app.route("/", workflowProcessHandler);
115
- app.use("/manage/tenants/*", manageApiKeyOrSessionAuth());
115
+ app.use("/manage/tenants/*", manageBearerOrSessionAuth());
116
116
  app.use("/manage/tenants/:tenantId/*", requireTenantAccess());
117
117
  app.use("*", async (_c, next) => {
118
118
  await next();
@@ -1,6 +1,6 @@
1
- import * as _inkeep_agents_core0 from "@inkeep/agents-core";
1
+ import * as _inkeep_agents_core2 from "@inkeep/agents-core";
2
2
 
3
3
  //#region src/data/db/manageDbClient.d.ts
4
- declare const manageDbClient: _inkeep_agents_core0.AgentsManageDatabaseClient;
4
+ declare const manageDbClient: _inkeep_agents_core2.AgentsManageDatabaseClient;
5
5
  //#endregion
6
6
  export { manageDbClient as default };
@@ -1,6 +1,6 @@
1
- import * as _inkeep_agents_core0 from "@inkeep/agents-core";
1
+ import * as _inkeep_agents_core3 from "@inkeep/agents-core";
2
2
 
3
3
  //#region src/data/db/runDbClient.d.ts
4
- declare const runDbClient: _inkeep_agents_core0.AgentsRunDatabaseClient;
4
+ declare const runDbClient: _inkeep_agents_core3.AgentsRunDatabaseClient;
5
5
  //#endregion
6
6
  export { runDbClient as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono6 from "hono";
2
+ import * as hono9 from "hono";
3
3
 
4
4
  //#region src/domains/evals/routes/datasetTriggers.d.ts
5
- declare const app: OpenAPIHono<hono6.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono9.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono12 from "hono";
2
+ import * as hono10 from "hono";
3
3
 
4
4
  //#region src/domains/evals/routes/index.d.ts
5
- declare const app: OpenAPIHono<hono12.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono10.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { Hono } from "hono";
2
- import * as hono_types8 from "hono/types";
2
+ import * as hono_types9 from "hono/types";
3
3
 
4
4
  //#region src/domains/evals/workflow/routes.d.ts
5
- declare const workflowRoutes: Hono<hono_types8.BlankEnv, hono_types8.BlankSchema, "/">;
5
+ declare const workflowRoutes: Hono<hono_types9.BlankEnv, hono_types9.BlankSchema, "/">;
6
6
  //#endregion
7
7
  export { workflowRoutes };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono17 from "hono";
2
+ import * as hono1 from "hono";
3
3
 
4
4
  //#region src/domains/manage/routes/availableAgents.d.ts
5
- declare const app: OpenAPIHono<hono17.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono1.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono18 from "hono";
2
+ import * as hono2 from "hono";
3
3
 
4
4
  //#region src/domains/manage/routes/conversations.d.ts
5
- declare const app: OpenAPIHono<hono18.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono2.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono16 from "hono";
2
+ import * as hono18 from "hono";
3
3
 
4
4
  //#region src/domains/manage/routes/index.d.ts
5
- declare const app: OpenAPIHono<hono16.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono18.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,10 +1,10 @@
1
1
  import { ManageAppVariables } from "../../../types/app.js";
2
2
  import { Hono } from "hono";
3
- import * as hono_types6 from "hono/types";
3
+ import * as hono_types11 from "hono/types";
4
4
 
5
5
  //#region src/domains/manage/routes/invitations.d.ts
6
6
  declare const invitationsRoutes: Hono<{
7
7
  Variables: ManageAppVariables;
8
- }, hono_types6.BlankSchema, "/">;
8
+ }, hono_types11.BlankSchema, "/">;
9
9
  //#endregion
10
10
  export { invitationsRoutes as default };
@@ -1,10 +1,10 @@
1
1
  import { ManageAppVariables } from "../../../types/app.js";
2
2
  import { Hono } from "hono";
3
- import * as hono_types7 from "hono/types";
3
+ import * as hono_types12 from "hono/types";
4
4
 
5
5
  //#region src/domains/manage/routes/passwordResetLinks.d.ts
6
6
  declare const passwordResetLinksRoutes: Hono<{
7
7
  Variables: ManageAppVariables;
8
- }, hono_types7.BlankSchema, "/">;
8
+ }, hono_types12.BlankSchema, "/">;
9
9
  //#endregion
10
10
  export { passwordResetLinksRoutes as default };
@@ -1,10 +1,10 @@
1
1
  import { ManageAppVariables } from "../../../types/app.js";
2
2
  import { Hono } from "hono";
3
- import * as hono_types12 from "hono/types";
3
+ import * as hono_types6 from "hono/types";
4
4
 
5
5
  //#region src/domains/manage/routes/users.d.ts
6
6
  declare const usersRoutes: Hono<{
7
7
  Variables: ManageAppVariables;
8
- }, hono_types12.BlankSchema, "/">;
8
+ }, hono_types6.BlankSchema, "/">;
9
9
  //#endregion
10
10
  export { usersRoutes as default };
@@ -1,7 +1,7 @@
1
1
  import { Hono } from "hono";
2
- import * as hono_types10 from "hono/types";
2
+ import * as hono_types7 from "hono/types";
3
3
 
4
4
  //#region src/domains/mcp/routes/mcp.d.ts
5
- declare const app: Hono<hono_types10.BlankEnv, hono_types10.BlankSchema, "/">;
5
+ declare const app: Hono<hono_types7.BlankEnv, hono_types7.BlankSchema, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,6 +1,6 @@
1
1
  import { AgentConfig, DelegateRelation } from "./Agent.js";
2
2
  import { InternalRelation } from "../utils/project.js";
3
- import * as _inkeep_agents_core2 from "@inkeep/agents-core";
3
+ import * as _inkeep_agents_core0 from "@inkeep/agents-core";
4
4
  import { CredentialStoreRegistry, FullExecutionContext } from "@inkeep/agents-core";
5
5
  import * as ai0 from "ai";
6
6
 
@@ -44,7 +44,7 @@ declare function createDelegateToAgentTool({
44
44
  message: string;
45
45
  }, {
46
46
  toolCallId: any;
47
- result: _inkeep_agents_core2.Message | _inkeep_agents_core2.Task;
47
+ result: _inkeep_agents_core0.Message | _inkeep_agents_core0.Task;
48
48
  }>;
49
49
  /**
50
50
  * Parameters for building a transfer relation config
@@ -29,9 +29,9 @@ declare const ConversationHistorySummarySchema: z.ZodObject<{
29
29
  tool_call_id: z.ZodString;
30
30
  content_summary: z.ZodString;
31
31
  relevance: z.ZodEnum<{
32
- low: "low";
33
32
  high: "high";
34
33
  medium: "medium";
34
+ low: "low";
35
35
  }>;
36
36
  }, z.core.$strip>>>;
37
37
  conversation_flow: z.ZodObject<{
@@ -9,9 +9,9 @@ declare const ImageUrlSchema: z.ZodUnion<readonly [z.ZodURL, z.ZodString]>;
9
9
  /** OpenAI-specific image detail level. Has no effect on other providers. */
10
10
  declare const ImageDetailEnum: readonly ["auto", "low", "high"];
11
11
  declare const ImageDetailSchema: z.ZodEnum<{
12
- auto: "auto";
13
- low: "low";
14
12
  high: "high";
13
+ low: "low";
14
+ auto: "auto";
15
15
  }>;
16
16
  type ImageDetail = z.infer<typeof ImageDetailSchema>;
17
17
  declare const ImageContentItemSchema: z.ZodObject<{
@@ -19,9 +19,9 @@ declare const ImageContentItemSchema: z.ZodObject<{
19
19
  image_url: z.ZodObject<{
20
20
  url: z.ZodUnion<readonly [z.ZodURL, z.ZodString]>;
21
21
  detail: z.ZodOptional<z.ZodEnum<{
22
- auto: "auto";
23
- low: "low";
24
22
  high: "high";
23
+ low: "low";
24
+ auto: "auto";
25
25
  }>>;
26
26
  }, z.core.$strip>;
27
27
  }, z.core.$strip>;
@@ -107,7 +107,7 @@ declare function createInvocationIdempotentStep(params: {
107
107
  projectId: string;
108
108
  tenantId: string;
109
109
  id: string;
110
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
110
+ status: "pending" | "completed" | "failed" | "running" | "cancelled";
111
111
  resolvedPayload?: Record<string, unknown> | null | undefined;
112
112
  };
113
113
  alreadyExists: boolean;
@@ -147,7 +147,7 @@ declare function markRunningStep(params: {
147
147
  projectId: string;
148
148
  tenantId: string;
149
149
  id: string;
150
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
150
+ status: "pending" | "completed" | "failed" | "running" | "cancelled";
151
151
  resolvedPayload?: Record<string, unknown> | null | undefined;
152
152
  }>;
153
153
  /**
@@ -174,7 +174,7 @@ declare function addConversationIdStep(params: {
174
174
  projectId: string;
175
175
  tenantId: string;
176
176
  id: string;
177
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
177
+ status: "pending" | "completed" | "failed" | "running" | "cancelled";
178
178
  resolvedPayload?: Record<string, unknown> | null | undefined;
179
179
  } | undefined>;
180
180
  /**
@@ -199,7 +199,7 @@ declare function markCompletedStep(params: {
199
199
  projectId: string;
200
200
  tenantId: string;
201
201
  id: string;
202
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
202
+ status: "pending" | "completed" | "failed" | "running" | "cancelled";
203
203
  resolvedPayload?: Record<string, unknown> | null | undefined;
204
204
  } | undefined>;
205
205
  /**
@@ -224,7 +224,7 @@ declare function markFailedStep(params: {
224
224
  projectId: string;
225
225
  tenantId: string;
226
226
  id: string;
227
- status: "pending" | "failed" | "running" | "completed" | "cancelled";
227
+ status: "pending" | "completed" | "failed" | "running" | "cancelled";
228
228
  resolvedPayload?: Record<string, unknown> | null | undefined;
229
229
  } | undefined>;
230
230
  /**