@inkeep/agents-manage-api 0.5.0 → 0.6.4

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/index.cjs CHANGED
@@ -1827,6 +1827,7 @@ app7.openapi(
1827
1827
  const insertData = {
1828
1828
  tenantId,
1829
1829
  projectId,
1830
+ name: body.name,
1830
1831
  graphId: body.graphId,
1831
1832
  ...keyDataWithoutKey,
1832
1833
  expiresAt: body.expiresAt || void 0
@@ -1895,7 +1896,8 @@ app7.openapi(
1895
1896
  scopes: { tenantId, projectId },
1896
1897
  id,
1897
1898
  data: {
1898
- expiresAt: body.expiresAt
1899
+ expiresAt: body.expiresAt,
1900
+ name: body.name
1899
1901
  }
1900
1902
  });
1901
1903
  if (!updatedApiKey) {
package/dist/index.js CHANGED
@@ -1823,6 +1823,7 @@ app7.openapi(
1823
1823
  const insertData = {
1824
1824
  tenantId,
1825
1825
  projectId,
1826
+ name: body.name,
1826
1827
  graphId: body.graphId,
1827
1828
  ...keyDataWithoutKey,
1828
1829
  expiresAt: body.expiresAt || void 0
@@ -1891,7 +1892,8 @@ app7.openapi(
1891
1892
  scopes: { tenantId, projectId },
1892
1893
  id,
1893
1894
  data: {
1894
- expiresAt: body.expiresAt
1895
+ expiresAt: body.expiresAt,
1896
+ name: body.name
1895
1897
  }
1896
1898
  });
1897
1899
  if (!updatedApiKey) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-manage-api",
3
- "version": "0.5.0",
3
+ "version": "0.6.4",
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",
@@ -24,7 +24,7 @@
24
24
  "openid-client": "^6.6.4",
25
25
  "pino": "^9.7.0",
26
26
  "zod": "^4.1.5",
27
- "@inkeep/agents-core": "^0.5.0"
27
+ "@inkeep/agents-core": "^0.6.4"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@hono/vite-dev-server": "^0.20.1",
@@ -60,7 +60,7 @@
60
60
  "scripts": {
61
61
  "dev": "vite",
62
62
  "build": "tsup",
63
- "start": "node dist/server.js",
63
+ "start": "node dist/index.js",
64
64
  "test": "vitest --run",
65
65
  "test:watch": "vitest",
66
66
  "test:coverage": "vitest --run --coverage",