coveo.analytics 2.28.23 → 2.28.24

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.
@@ -31,7 +31,6 @@ export interface UserActionsPageViewMetadata {
31
31
  }
32
32
  export interface CreateArticleMetadata {
33
33
  articleType: string;
34
- triggeredBy: string;
35
34
  }
36
35
  export interface InsightInterfaceChangeMetadata extends InterfaceChangeMetadata, CaseMetadata {
37
36
  }
@@ -1 +1 @@
1
- export declare const libVersion = "2.28.23";
1
+ export declare const libVersion = "2.28.24";
package/dist/library.cjs 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.23" ;
734
+ var libVersion = "2.28.24" ;
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);
@@ -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.23" ;
599
+ const libVersion = "2.28.24" ;
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.23" ;
734
+ var libVersion = "2.28.24" ;
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);
package/dist/library.mjs CHANGED
@@ -729,7 +729,7 @@ function sha1(bytes) {
729
729
  const v5 = v35('v5', 0x50, sha1);
730
730
  var uuidv5 = v5;
731
731
 
732
- var libVersion = "2.28.23" ;
732
+ var libVersion = "2.28.24" ;
733
733
 
734
734
  var getFormattedLocation = function (location) {
735
735
  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.23" ;
661
+ const libVersion = "2.28.24" ;
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.23",
3
+ "version": "2.28.24",
4
4
  "description": "📈 Coveo analytics client (node and browser compatible) ",
5
5
  "main": "dist/library.cjs",
6
6
  "module": "dist/browser.mjs",
@@ -1393,7 +1393,6 @@ describe('InsightClient', () => {
1393
1393
  it('should send proper payload for #createArticle', async () => {
1394
1394
  const exampleCreateArticleMetadata = {
1395
1395
  articleType: 'Knowledge__kav',
1396
- triggeredBy: 'CreateArticleButton',
1397
1396
  };
1398
1397
  const expectedMetadata = {
1399
1398
  ...exampleCreateArticleMetadata,
@@ -72,7 +72,6 @@ export interface UserActionsPageViewMetadata {
72
72
 
73
73
  export interface CreateArticleMetadata {
74
74
  articleType: string;
75
- triggeredBy: string;
76
75
  }
77
76
 
78
77
  export interface InsightInterfaceChangeMetadata extends InterfaceChangeMetadata, CaseMetadata {}