@inkeep/agents-manage-api 0.0.0-dev-20260120221941 → 0.0.0-dev-20260120222159

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.
@@ -1,6 +1,6 @@
1
- import * as _inkeep_agents_core1 from "@inkeep/agents-core";
1
+ import * as _inkeep_agents_core0 from "@inkeep/agents-core";
2
2
 
3
3
  //#region src/data/db/dbClient.d.ts
4
- declare const manageDbClient: _inkeep_agents_core1.AgentsManageDatabaseClient;
4
+ declare const manageDbClient: _inkeep_agents_core0.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_core1 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_core1.AgentsRunDatabaseClient;
5
5
  //#endregion
6
6
  export { runDbClient as default };
@@ -1,5 +1,5 @@
1
1
  import { BaseAppVariables } from "../types/app.js";
2
- import * as hono2 from "hono";
2
+ import * as hono3 from "hono";
3
3
 
4
4
  //#region src/middleware/require-permission.d.ts
5
5
  type Permission = {
@@ -9,6 +9,6 @@ declare const requirePermission: <Env$1 extends {
9
9
  Variables: BaseAppVariables;
10
10
  } = {
11
11
  Variables: BaseAppVariables;
12
- }>(permissions: Permission) => hono2.MiddlewareHandler<Env$1, string, {}, Response>;
12
+ }>(permissions: Permission) => hono3.MiddlewareHandler<Env$1, string, {}, Response>;
13
13
  //#endregion
14
14
  export { requirePermission };
@@ -1,6 +1,6 @@
1
- import * as hono3 from "hono";
1
+ import * as hono4 from "hono";
2
2
 
3
3
  //#region src/middleware/session-auth.d.ts
4
- declare const sessionAuth: () => hono3.MiddlewareHandler<any, string, {}, Response>;
4
+ declare const sessionAuth: () => hono4.MiddlewareHandler<any, string, {}, Response>;
5
5
  //#endregion
6
6
  export { sessionAuth };
@@ -1,7 +1,7 @@
1
- import * as hono4 from "hono";
1
+ import * as hono5 from "hono";
2
2
 
3
3
  //#region src/middleware/tenant-access.d.ts
4
- declare const requireTenantAccess: () => hono4.MiddlewareHandler<{
4
+ declare const requireTenantAccess: () => hono5.MiddlewareHandler<{
5
5
  Variables: {
6
6
  userId: string;
7
7
  tenantId: string;
@@ -1,7 +1,7 @@
1
1
  import { OpenAPIHono } from "@hono/zod-openapi";
2
- import * as hono5 from "hono";
2
+ import * as hono2 from "hono";
3
3
 
4
4
  //#region src/routes/conversations.d.ts
5
- declare const app: OpenAPIHono<hono5.Env, {}, "/">;
5
+ declare const app: OpenAPIHono<hono2.Env, {}, "/">;
6
6
  //#endregion
7
7
  export { app as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-manage-api",
3
- "version": "0.0.0-dev-20260120221941",
3
+ "version": "0.0.0-dev-20260120222159",
4
4
  "description": "Agents Manage API for Inkeep Agent Framework - handles CRUD operations and OAuth",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -29,8 +29,8 @@
29
29
  "openid-client": "^6.6.4",
30
30
  "pg": "^8.16.3",
31
31
  "pino": "^9.7.0",
32
- "@inkeep/agents-core": "^0.0.0-dev-20260120221941",
33
- "@inkeep/agents-manage-mcp": "^0.0.0-dev-20260120221941"
32
+ "@inkeep/agents-core": "^0.0.0-dev-20260120222159",
33
+ "@inkeep/agents-manage-mcp": "^0.0.0-dev-20260120222159"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@hono/zod-openapi": "^1.1.5",