@levo-so/insights 0.1.81 → 0.1.85
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/constants/storageKeys.d.ts +6 -0
- package/dist/index.js +629 -664
- package/dist/stores/config.d.ts +4 -0
- package/dist/stores/events.d.ts +9 -8
- package/dist/stores/session.d.ts +19 -0
- package/dist/stores.js +2 -14
- package/dist/textSelection-DJ23SrA-.js +558 -0
- package/dist/tracking/scrollBehavior.d.ts +2 -1
- package/dist/types/options.d.ts +1 -1
- package/package.json +7 -7
- package/dist/legacy/index.d.ts +0 -71
- package/dist/textSelection-CnZdywep.js +0 -583
- package/dist/utils/lock.d.ts +0 -20
|
@@ -19,4 +19,10 @@ export declare const STORAGE_KEYS: {
|
|
|
19
19
|
readonly mode: "lv_aud_mode";
|
|
20
20
|
/** Key to store session data **/
|
|
21
21
|
readonly session: "lv_insights_session";
|
|
22
|
+
/**
|
|
23
|
+
* sessionStorage key for identification flags (isIdentified).
|
|
24
|
+
* Stored separately in sessionStorage so it resets when the browser session
|
|
25
|
+
* ends, preventing stale isIdentified from blocking /welcome across restarts.
|
|
26
|
+
*/
|
|
27
|
+
readonly session_flags: "lv_insights_sf";
|
|
22
28
|
};
|