@helpai/elements 0.42.0 → 0.42.1

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/index.mjs CHANGED
@@ -1864,7 +1864,7 @@ var AgentTransport = class {
1864
1864
  return res;
1865
1865
  }
1866
1866
  conversationsKey(params) {
1867
- return JSON.stringify(params, Object.keys(params).toSorted());
1867
+ return `${this.locale ?? ""}|${JSON.stringify(params, Object.keys(params).toSorted())}`;
1868
1868
  }
1869
1869
  /**
1870
1870
  * Synchronous read of an ALREADY-RESOLVED, still-fresh cached list (the same
package/package.json CHANGED
@@ -80,5 +80,5 @@
80
80
  ],
81
81
  "type": "module",
82
82
  "types": "./index.d.ts",
83
- "version": "0.42.0"
83
+ "version": "0.42.1"
84
84
  }
package/web-component.mjs CHANGED
@@ -1823,7 +1823,7 @@ var AgentTransport = class {
1823
1823
  return res;
1824
1824
  }
1825
1825
  conversationsKey(params) {
1826
- return JSON.stringify(params, Object.keys(params).toSorted());
1826
+ return `${this.locale ?? ""}|${JSON.stringify(params, Object.keys(params).toSorted())}`;
1827
1827
  }
1828
1828
  /**
1829
1829
  * Synchronous read of an ALREADY-RESOLVED, still-fresh cached list (the same