@inkeep/agents-run-api 0.0.0-dev-20250913005011 → 0.0.0-dev-20250913005901

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
@@ -9007,7 +9007,8 @@ function createExecutionHono(serverConfig, credentialStores) {
9007
9007
  let conversationId;
9008
9008
  if (c.req.header("content-type")?.includes("application/json")) {
9009
9009
  try {
9010
- const body = await c.req.json();
9010
+ const cloned = c.req.raw.clone();
9011
+ const body = await cloned.json().catch(() => null);
9011
9012
  conversationId = body?.conversationId;
9012
9013
  } catch (_) {
9013
9014
  logger23.debug("Conversation ID not found in JSON body");
package/dist/index.js CHANGED
@@ -8664,7 +8664,8 @@ function createExecutionHono(serverConfig, credentialStores) {
8664
8664
  let conversationId;
8665
8665
  if (c.req.header("content-type")?.includes("application/json")) {
8666
8666
  try {
8667
- const body = await c.req.json();
8667
+ const cloned = c.req.raw.clone();
8668
+ const body = await cloned.json().catch(() => null);
8668
8669
  conversationId = body?.conversationId;
8669
8670
  } catch (_) {
8670
8671
  logger23.debug("Conversation ID not found in JSON body");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-run-api",
3
- "version": "0.0.0-dev-20250913005011",
3
+ "version": "0.0.0-dev-20250913005901",
4
4
  "description": "Agents Run API for Inkeep Agent Framework - handles chat, agent execution, and streaming",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -43,7 +43,7 @@
43
43
  "traverse": "^0.6.11",
44
44
  "ts-pattern": "^5.7.1",
45
45
  "zod": "^4.1.5",
46
- "@inkeep/agents-core": "^0.0.0-dev-20250913005011"
46
+ "@inkeep/agents-core": "^0.0.0-dev-20250913005901"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@hono/vite-dev-server": "^0.20.1",