@inkeep/agents-manage-api 0.30.4 → 0.31.0

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
@@ -1479,13 +1479,16 @@ app6.openapi(
1479
1479
  });
1480
1480
  }
1481
1481
  await store.set(key, value, metadata ?? {});
1482
- return c.json({
1483
- data: {
1484
- key,
1485
- storeId,
1486
- createdAt: (/* @__PURE__ */ new Date()).toISOString()
1487
- }
1488
- }, 201);
1482
+ return c.json(
1483
+ {
1484
+ data: {
1485
+ key,
1486
+ storeId,
1487
+ createdAt: (/* @__PURE__ */ new Date()).toISOString()
1488
+ }
1489
+ },
1490
+ 201
1491
+ );
1489
1492
  } catch (error) {
1490
1493
  console.error(`Error setting credential in store ${storeId}:`, error);
1491
1494
  throw agentsCore.createApiError({
package/dist/index.js CHANGED
@@ -1475,13 +1475,16 @@ app6.openapi(
1475
1475
  });
1476
1476
  }
1477
1477
  await store.set(key, value, metadata ?? {});
1478
- return c.json({
1479
- data: {
1480
- key,
1481
- storeId,
1482
- createdAt: (/* @__PURE__ */ new Date()).toISOString()
1483
- }
1484
- }, 201);
1478
+ return c.json(
1479
+ {
1480
+ data: {
1481
+ key,
1482
+ storeId,
1483
+ createdAt: (/* @__PURE__ */ new Date()).toISOString()
1484
+ }
1485
+ },
1486
+ 201
1487
+ );
1485
1488
  } catch (error) {
1486
1489
  console.error(`Error setting credential in store ${storeId}:`, error);
1487
1490
  throw createApiError({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-manage-api",
3
- "version": "0.30.4",
3
+ "version": "0.31.0",
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",
@@ -23,7 +23,7 @@
23
23
  "openid-client": "^6.6.4",
24
24
  "pino": "^9.7.0",
25
25
  "zod": "^4.1.11",
26
- "@inkeep/agents-core": "^0.30.4"
26
+ "@inkeep/agents-core": "^0.31.0"
27
27
  },
28
28
  "optionalDependencies": {
29
29
  "keytar": "^7.9.0"