coveo.analytics 2.28.16 → 2.28.17
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/browser.mjs +3141 -0
- package/dist/coveoua.browser.js +1 -1
- package/dist/coveoua.debug.js +1 -1
- package/dist/coveoua.js +1 -1
- package/dist/definitions/version.d.ts +1 -1
- package/dist/library.cjs +1 -1
- package/dist/library.mjs +86154 -0
- package/dist/react-native.es.js +1 -1
- package/package.json +7 -3
package/dist/react-native.es.js
CHANGED
|
@@ -658,7 +658,7 @@ const addPageViewToHistory = (pageViewValue) => __awaiter(void 0, void 0, void 0
|
|
|
658
658
|
yield store.addElementAsync(historyElement);
|
|
659
659
|
});
|
|
660
660
|
|
|
661
|
-
const libVersion = "2.28.
|
|
661
|
+
const libVersion = "2.28.17" ;
|
|
662
662
|
|
|
663
663
|
const getFormattedLocation = (location) => `${location.protocol}//${location.hostname}${location.pathname.indexOf('/') === 0 ? location.pathname : `/${location.pathname}`}${location.search}`;
|
|
664
664
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coveo.analytics",
|
|
3
|
-
"version": "2.28.
|
|
3
|
+
"version": "2.28.17",
|
|
4
4
|
"description": "📈 Coveo analytics client (node and browser compatible) ",
|
|
5
5
|
"main": "dist/library.cjs",
|
|
6
6
|
"module": "dist/browser.mjs",
|
|
@@ -67,8 +67,12 @@
|
|
|
67
67
|
"files": [
|
|
68
68
|
"modules/",
|
|
69
69
|
"dist/**/*.d.ts",
|
|
70
|
-
"dist/**/*.
|
|
71
|
-
"dist/**/*.
|
|
70
|
+
"dist/**/*.js",
|
|
71
|
+
"dist/**/*.mjs",
|
|
72
|
+
"dist/**/*.cjs",
|
|
73
|
+
"dist/**/*.js.map",
|
|
74
|
+
"dist/**/*.mjs.map",
|
|
75
|
+
"dist/**/*.cjs.map",
|
|
72
76
|
"src/**/*.ts",
|
|
73
77
|
"react-native/",
|
|
74
78
|
"LICENSE"
|