@inkeep/agents-core 0.0.0-dev-20251125213506 → 0.0.0-dev-20251125221704

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -221718,7 +221718,12 @@ function contextValidationMiddleware(dbClient) {
221718
221718
  const conversationId = body.conversationId || "";
221719
221719
  const headers2 = {};
221720
221720
  c.req.raw.headers.forEach((value, key) => {
221721
- headers2[key.toLowerCase()] = value;
221721
+ const normalizedKey = key.toLowerCase();
221722
+ if (normalizedKey === "x-forwarded-cookie") {
221723
+ headers2["cookie"] = value;
221724
+ } else {
221725
+ headers2[normalizedKey] = value;
221726
+ }
221722
221727
  });
221723
221728
  const credentialStores = c.get("credentialStores");
221724
221729
  const parsedRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.0.0-dev-20251125213506",
3
+ "version": "0.0.0-dev-20251125221704",
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",