@inkeep/agents-core 0.0.0-dev-20250913024156 → 0.0.0-dev-20250913032042

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
@@ -8466,7 +8466,7 @@ function contextValidationMiddleware(dbClient) {
8466
8466
  if (!tenantId || !projectId || !graphId) {
8467
8467
  return next();
8468
8468
  }
8469
- const body = await c.req.json();
8469
+ const body = c.get("requestBody") || {};
8470
8470
  const conversationId = body.conversationId || "";
8471
8471
  const headers = {};
8472
8472
  c.req.raw.headers.forEach((value, key) => {
package/dist/index.js CHANGED
@@ -6826,7 +6826,7 @@ function contextValidationMiddleware(dbClient) {
6826
6826
  if (!tenantId || !projectId || !graphId) {
6827
6827
  return next();
6828
6828
  }
6829
- const body = await c.req.json();
6829
+ const body = c.get("requestBody") || {};
6830
6830
  const conversationId = body.conversationId || "";
6831
6831
  const headers = {};
6832
6832
  c.req.raw.headers.forEach((value, key) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.0.0-dev-20250913024156",
3
+ "version": "0.0.0-dev-20250913032042",
4
4
  "description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",