coveo.analytics 2.28.4 → 2.28.5

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.
@@ -34,7 +34,7 @@ export interface FacetStateRequest {
34
34
  valuePosition: number;
35
35
  displayValue: string;
36
36
  facetType: 'specific' | 'dateRange' | 'numericalRange' | 'hierarchical';
37
- state: 'selected' | 'idle';
37
+ state: 'selected' | 'idle' | 'excluded';
38
38
  facetPosition: number;
39
39
  title: string;
40
40
  start?: string;
@@ -1 +1 @@
1
- export declare const libVersion = "2.28.4";
1
+ export declare const libVersion = "2.28.5";
@@ -596,7 +596,7 @@ function sha1(bytes) {
596
596
  const v5 = v35('v5', 0x50, sha1);
597
597
  var uuidv5 = v5;
598
598
 
599
- const libVersion = "2.28.4" ;
599
+ const libVersion = "2.28.5" ;
600
600
 
601
601
  const getFormattedLocation = (location) => `${location.protocol}//${location.hostname}${location.pathname.indexOf('/') === 0 ? location.pathname : `/${location.pathname}`}${location.search}`;
602
602
 
package/dist/library.js CHANGED
@@ -731,7 +731,7 @@ function sha1(bytes) {
731
731
  const v5 = v35('v5', 0x50, sha1);
732
732
  var uuidv5 = v5;
733
733
 
734
- var libVersion = "2.28.4" ;
734
+ var libVersion = "2.28.5" ;
735
735
 
736
736
  var getFormattedLocation = function (location) {
737
737
  return "".concat(location.protocol, "//").concat(location.hostname).concat(location.pathname.indexOf('/') === 0 ? location.pathname : "/".concat(location.pathname)).concat(location.search);
@@ -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.4" ;
661
+ const libVersion = "2.28.5" ;
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.4",
3
+ "version": "2.28.5",
4
4
  "description": "📈 Coveo analytics client (node and browser compatible) ",
5
5
  "main": "dist/library.js",
6
6
  "module": "dist/library.es.js",
package/src/events.ts CHANGED
@@ -46,7 +46,7 @@ export interface FacetStateRequest {
46
46
  valuePosition: number;
47
47
  displayValue: string;
48
48
  facetType: 'specific' | 'dateRange' | 'numericalRange' | 'hierarchical';
49
- state: 'selected' | 'idle';
49
+ state: 'selected' | 'idle' | 'excluded';
50
50
  facetPosition: number;
51
51
  title: string;
52
52
  start?: string;