@cimulate/copilot-widget 1.32.0 → 1.32.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/CHANGELOG.md +4 -0
- package/dist/cimulate-copilot-widget.es.js +5087 -5067
- package/dist/cimulate-copilot-widget.umd.js +29 -29
- package/dist/copilot.es.js +5085 -5065
- package/dist/copilot.umd.js +29 -29
- package/dist/messaging.es.js +7508 -7450
- package/dist/messaging.umd.js +34 -34
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
`@cimulate/copilot-widget` follows [Semantic Versioning](https://semver.org/). Each entry is a released `package.json` version (deployed on merge to `master`), newest first.
|
|
4
4
|
|
|
5
|
+
## 1.32.1 — 2026-08-28
|
|
6
|
+
|
|
7
|
+
- The widget now minimizes on same-tab product navigation (viewports ≤576px) whenever cart management is not supported, so the storefront PDP isn't covered on mobile. This is default behavior requiring no storefront configuration. The widget self-restores minimized state after the navigation via its own one-shot `sessionStorage` key. This applies to every product link that leaves the page — carousel tiles, the product detail card title, and the comparison table names; when cart management is supported those render an in-widget PDP instead and do not navigate or minimize. Modified or non-primary clicks (⌘/Ctrl/Shift/Alt or middle-click) open a new tab and do not minimize.
|
|
8
|
+
|
|
5
9
|
## 1.32.0 — 2026-08-28
|
|
6
10
|
|
|
7
11
|
- Added `getAuthLinkKey()` for retrieving a single-use auth link key for the current conversation, so hosts can bridge a guest shopper's session (e.g. a SLAS/commerce session) into the conversation and let the agent inherit the shopper's identity and cart. Exposed both to React hosts via `useMessaging().getAuthLinkKey()` and to script-tag/CDN hosts via `window.CimulateMessaging.getAuthLinkKey()`. The key is single-use: each call mints a fresh key the server invalidates on redemption, so callers must request a new one rather than caching or retrying with a consumed key. The CDN export is async and rejects (rather than throwing synchronously) when called before the widget is ready. Requires `@cimulate/agentforce-sdk` 1.3.0, which adds the underlying auth-link-key v2 retrieval.
|