@empathyco/x-components 3.0.0-alpha.351 → 3.0.0-alpha.352
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
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.0-alpha.352](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.351...@empathyco/x-components@3.0.0-alpha.352) (2023-04-18)
|
|
7
|
+
|
|
8
|
+
### Documentation
|
|
9
|
+
|
|
10
|
+
- **integration:** add information about sessionId duration (#1139)
|
|
11
|
+
([ef879fc](https://github.com/empathyco/x/commit/ef879fc4df6673cadd5a72d9e62d98f644c4e39f))
|
|
12
|
+
|
|
13
|
+
# Change Log
|
|
14
|
+
|
|
15
|
+
All notable changes to this project will be documented in this file. See
|
|
16
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
17
|
+
|
|
6
18
|
## [3.0.0-alpha.351](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.350...@empathyco/x-components@3.0.0-alpha.351) (2023-04-17)
|
|
7
19
|
|
|
8
20
|
### Features
|
|
@@ -248,9 +248,16 @@ If page reload is not triggered after accepting cookies, update the `consent` pa
|
|
|
248
248
|
|
|
249
249
|
</br>
|
|
250
250
|
|
|
251
|
-
Although cookie acceptance is bound to the generation of the `
|
|
251
|
+
Although cookie acceptance is bound to the generation of the `sessionId` in local storage, Empathy
|
|
252
252
|
does **not use any cookies** in its libraries.
|
|
253
253
|
|
|
254
|
+
<br/>
|
|
255
|
+
|
|
256
|
+
The `sessionId` lasts until there are 30 minutes of inactivity. However, every time the shopper
|
|
257
|
+
interacts with the commerce search (e.g. queries, clicks, etc.), the session expiration time is
|
|
258
|
+
reset by adding 30 minutes from the time of that interaction. After 30 minutes of shopper
|
|
259
|
+
inactivity, a new `sessionId` is generated.
|
|
260
|
+
|
|
254
261
|
:::
|
|
255
262
|
|
|
256
263
|
### Callbacks and Interface X events types
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empathyco/x-components",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.352",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
"access": "public",
|
|
144
144
|
"directory": "dist"
|
|
145
145
|
},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "c1f89840786d1551a97ee23a0f2652225f0aaee3"
|
|
147
147
|
}
|