coveo.analytics 2.20.26 → 2.22.1
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/README.md +46 -3
- package/dist/coveoua.browser.js +1 -1
- package/dist/coveoua.browser.js.map +1 -1
- package/dist/coveoua.js +1 -1
- package/dist/coveoua.js.map +1 -1
- package/dist/definitions/client/analytics.d.ts +1 -0
- package/dist/definitions/react-native/index.d.ts +2 -2
- package/dist/definitions/react-native/react-native-runtime.d.ts +12 -3
- package/dist/definitions/react-native/react-native-utils.d.ts +1 -1
- package/dist/definitions/src/react-native/index.d.ts +2 -2
- package/dist/definitions/src/react-native/react-native-runtime.d.ts +12 -3
- package/dist/library.es.js +7 -14
- package/dist/library.js +11 -5
- package/dist/react-native.es.js +2135 -14
- package/package.json +5 -4
- package/react-native/package.json +9 -0
- package/src/client/analytics.ts +6 -3
- package/src/react-native/index.ts +2 -3
- package/src/react-native/react-native-runtime.ts +36 -8
- package/src/react-native/react-native-utils.ts +2 -11
- package/src/react-native/react-native.spec.ts +5 -2
- package/dist/definitions/react-native/react-native-storage.d.ts +0 -6
- package/dist/definitions/src/react-native/react-native-storage.d.ts +0 -6
- package/src/react-native/react-native-storage.ts +0 -14
package/README.md
CHANGED
|
@@ -138,15 +138,58 @@ npm install coveo.analytics isomorphic-fetch
|
|
|
138
138
|
```
|
|
139
139
|
|
|
140
140
|
```js
|
|
141
|
-
import
|
|
142
|
-
import coveoanalytics from 'coveo.analytics';
|
|
141
|
+
import {CoveoAnalyticsClient} from 'coveo.analytics';
|
|
143
142
|
|
|
144
143
|
// Create an API client
|
|
145
|
-
const client = new
|
|
144
|
+
const client = new CoveoAnalyticsClient({token: 'YOUR_API_KEY'});
|
|
146
145
|
// Send your event
|
|
147
146
|
client.sendCustomEvent({
|
|
148
147
|
eventType: 'dog',
|
|
149
148
|
eventValue: 'Hello! Yes! This is Dog!',
|
|
149
|
+
language: 'en',
|
|
150
|
+
});
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
## Using React Native
|
|
154
|
+
|
|
155
|
+
Since React Native does not run inside a browser, it cannot use cookies or the local/session storage that modern browsers provide.
|
|
156
|
+
You must provide your own Storage implementation. Thankfully, there exist multiple packages to store data:
|
|
157
|
+
|
|
158
|
+
- [React native community AsyncStorage](https://github.com/react-native-async-storage/async-storage) (recommended)
|
|
159
|
+
- [React native AsyncStorage](https://reactnative.dev/docs/asyncstorage) (deprecated)
|
|
160
|
+
- [Expo Secure Store](https://docs.expo.dev/versions/latest/sdk/securestore/)
|
|
161
|
+
|
|
162
|
+
```js
|
|
163
|
+
import {CoveoAnalyticsClient, ReactNativeRuntime} from 'coveo.analytics/react-native';
|
|
164
|
+
// Use any React native storage library or implement your own.
|
|
165
|
+
import AsyncStorage from '@react-native-async-storage/async-storage';
|
|
166
|
+
|
|
167
|
+
// Sample storage class
|
|
168
|
+
class ReactNativeStorage implements WebStorage {
|
|
169
|
+
async getItem(key: string) {
|
|
170
|
+
return AsyncStorage.getItem(key);
|
|
171
|
+
}
|
|
172
|
+
async setItem(key: string, data: string) {
|
|
173
|
+
return AsyncStorage.setItem(key, data);
|
|
174
|
+
}
|
|
175
|
+
async removeItem(key: string) {
|
|
176
|
+
AsyncStorage.removeItem(key);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// Create an API client
|
|
181
|
+
const client = new CoveoAnalyticsClient({
|
|
182
|
+
token: 'YOUR_API_KEY'
|
|
183
|
+
runtimeEnvironment: ReactNativeRuntime({
|
|
184
|
+
token: 'YOUR_API_KEY'
|
|
185
|
+
storage: new ReactNativeStorage(),
|
|
186
|
+
}),
|
|
187
|
+
});
|
|
188
|
+
// Send your event
|
|
189
|
+
client.sendCustomEvent({
|
|
190
|
+
eventType: 'dog',
|
|
191
|
+
eventValue: 'Hello! Yes! This is Dog!',
|
|
192
|
+
language: 'en'
|
|
150
193
|
});
|
|
151
194
|
```
|
|
152
195
|
|
package/dist/coveoua.browser.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var coveoua=function(){"use strict";var M=function(e,t){return(M=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])})(e,t)};function q(e,t){function n(){this.constructor=e}M(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var o,h=function(){return(h=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e}).apply(this,arguments)};function g(e,t){var n={};for(o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,o=Object.getOwnPropertySymbols(e);r<o.length;r++)t.indexOf(o[r])<0&&Object.prototype.propertyIsEnumerable.call(e,o[r])&&(n[o[r]]=e[o[r]]);return n}function f(e,s,a,c){return new(a=a||Promise)(function(n,t){function r(e){try{i(c.next(e))}catch(e){t(e)}}function o(e){try{i(c.throw(e))}catch(e){t(e)}}function i(e){var t;e.done?n(e.value):((t=e.value)instanceof a?t:new a(function(e){e(t)})).then(r,o)}i((c=c.apply(e,s||[])).next())})}function m(r,o){var i,s,a,c={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]},e={next:t(0),throw:t(1),return:t(2)};return"function"==typeof Symbol&&(e[Symbol.iterator]=function(){return this}),e;function t(n){return function(e){var t=[n,e];if(i)throw new TypeError("Generator is already executing.");for(;c;)try{if(i=1,s&&(a=2&t[0]?s.return:t[0]?s.throw||((a=s.return)&&a.call(s),0):s.next)&&!(a=a.call(s,t[1])).done)return a;switch(s=0,(t=a?[2&t[0],a.value]:t)[0]){case 0:case 1:a=t;break;case 4:return c.label++,{value:t[1],done:!1};case 5:c.label++,s=t[1],t=[0];continue;case 7:t=c.ops.pop(),c.trys.pop();continue;default:if(!(a=0<(a=c.trys).length&&a[a.length-1])&&(6===t[0]||2===t[0])){c=0;continue}if(3===t[0]&&(!a||t[1]>a[0]&&t[1]<a[3])){c.label=t[1];break}if(6===t[0]&&c.label<a[1]){c.label=a[1],a=t;break}if(a&&c.label<a[2]){c.label=a[2],c.ops.push(t);break}a[2]&&c.ops.pop(),c.trys.pop();continue}t=o.call(r,c)}catch(e){t=[6,e],s=0}finally{i=a=0}if(5&t[0])throw t[1];return{value:t[0]?t[1]:void 0,done:!0}}}}function c(){for(var e=0,t=0,n=arguments.length;t<n;t++)e+=arguments[t].length;for(var r=Array(e),o=0,t=0;t<n;t++)for(var i=arguments[t],s=0,a=i.length;s<a;s++,o++)r[o]=i[s];return r}function _(){return"undefined"!=typeof navigator}function N(){return"undefined"!=typeof document}function Q(){try{return"undefined"!=typeof localStorage}catch(e){return}}function B(){return _()&&navigator.cookieEnabled}function H(){return"undefined"!=typeof crypto&&void 0!==crypto.getRandomValues}(e=o=o||{}).search="search",e.click="click",e.custom="custom",e.view="view",e.collect="collect";var U=[o.click,o.custom,o.search,o.view],j=(i.set=function(e,t,n){var r,n=n?((o=new Date).setTime(o.getTime()+n),"; expires="+o.toGMTString()):"",o=location.hostname;-1===o.indexOf(".")?document.cookie=e+"="+t+n+"; path=/":((r=o.split(".")).shift(),Y({name:e,value:t,expires:n,domain:"."+r.join(".")}),null!=i.get(e)&&i.get(e)==t||Y({name:e,value:t,expires:n,domain:"."+o}))},i.get=function(e){for(var t=e+"=",n=document.cookie.split(";"),r=0;r<n.length;r++){var o=n[r];if(0==(o=o.replace(/^\s+/,"")).indexOf(t))return o.substring(t.length,o.length)}return null},i.erase=function(e){i.set(e,"",-1)},i);function i(){}function Y(e){var t=e.name,n=e.value,r=e.expires,e=e.domain;document.cookie=t+"="+n+r+"; path=/; domain="+e+"; SameSite=Lax"}function z(){return Q()?localStorage:B()?new K:function(){try{return"undefined"!=typeof sessionStorage}catch(e){return}}()?sessionStorage:new r}n.prototype.getItem=function(e){return j.get(""+n.prefix+e)},n.prototype.removeItem=function(e){j.erase(""+n.prefix+e)},n.prototype.setItem=function(e,t){j.set(""+n.prefix+e,t)},n.prefix="coveo_";var K=n;function n(){}$.prototype.getItem=function(e){return localStorage.getItem(e)||this.cookieStorage.getItem(e)},$.prototype.removeItem=function(e){this.cookieStorage.removeItem(e),localStorage.removeItem(e)},$.prototype.setItem=function(e,t){localStorage.setItem(e,t),this.cookieStorage.setItem(e,t)};var W=$;function $(){this.cookieStorage=new K}G.prototype.getItem=function(e){return null},G.prototype.removeItem=function(e){},G.prototype.setItem=function(e,t){};var r=G;function G(){}var e=Object.freeze({__proto__:null,preferredStorage:null,getAvailableStorage:z,CookieStorage:K,CookieAndLocalStorage:W,NullStorage:r}),J="__coveo.analytics.history",X=(t.prototype.addElement=function(e){e.internalTime=(new Date).getTime(),e=this.cropQueryElement(this.stripEmptyQuery(e));var t=this.getHistoryWithInternalTime();null!=t?this.isValidEntry(e)&&this.setHistory([e].concat(t)):this.setHistory([e])},t.prototype.addElementAsync=function(n){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return n.internalTime=(new Date).getTime(),n=this.cropQueryElement(this.stripEmptyQuery(n)),[4,this.getHistoryWithInternalTimeAsync()];case 1:return null!=(t=e.sent())?this.isValidEntry(n)&&this.setHistory([n].concat(t)):this.setHistory([n]),[2]}})})},t.prototype.getHistory=function(){var e=this.getHistoryWithInternalTime();return this.stripEmptyQueries(this.stripInternalTime(e))},t.prototype.getHistoryAsync=function(){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return[4,this.getHistoryWithInternalTimeAsync()];case 1:return t=e.sent(),[2,this.stripEmptyQueries(this.stripInternalTime(t))]}})})},t.prototype.getHistoryWithInternalTime=function(){try{var e=this.store.getItem(J);return e&&"string"==typeof e?JSON.parse(e):[]}catch(e){return[]}},t.prototype.getHistoryWithInternalTimeAsync=function(){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,this.store.getItem(J)];case 1:return(t=e.sent())?[2,JSON.parse(t)]:[2,[]];case 2:return e.sent(),[2,[]];case 3:return[2]}})})},t.prototype.setHistory=function(e){try{this.store.setItem(J,JSON.stringify(e.slice(0,20)))}catch(e){}},t.prototype.clear=function(){try{this.store.removeItem(J)}catch(e){}},t.prototype.getMostRecentElement=function(){var e=this.getHistoryWithInternalTime();return null!=e?e.sort(function(e,t){return(t.internalTime||0)-(e.internalTime||0)})[0]:null},t.prototype.cropQueryElement=function(e){return e.name&&e.value&&"query"===e.name.toLowerCase()&&(e.value=e.value.slice(0,75)),e},t.prototype.isValidEntry=function(e){var t=this.getMostRecentElement();return!t||t.value!=e.value||6e4<(e.internalTime||0)-(t.internalTime||0)},t.prototype.stripInternalTime=function(e){return e.map(function(e){return{name:e.name,time:e.time,value:e.value}})},t.prototype.stripEmptyQuery=function(e){var t=e.name,n=e.time,r=e.value;return t&&"string"==typeof r&&"query"===t.toLowerCase()&&""===r.trim()?{name:t,time:n}:e},t.prototype.stripEmptyQueries=function(e){var t=this;return e.map(function(e){return t.stripEmptyQuery(e)})},t);function t(e){this.store=e||z()}function s(e){return e?(Number(e)^function(e){if(H())return crypto.getRandomValues(e);for(var t=0,n=0;t<e.length;t++){if((t&3)===0)n=Math.random()*4294967296;e[t]=n>>>((t&3)<<3)&255}return e}(new Uint8Array(1))[0]%16>>Number(e)/4).toString(16):(""+1e7+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,s)}function Z(e,a,c){var t=e.impressions.reduce(function(e,t,n){return h(h({},e),(o=a,i=n,s=c,u(r=t).reduce(function(e,t){var n="il"+(o+1)+s+(i+1)+(ue[t]||t);return h(h({},e),((e={})[n]=r[t],e))},{})));var r,o,i,s},{});return e.listName&&(t["il"+(a+1)+"nm"]=e.listName),t}function ee(e){return-1!==Pe.indexOf(e)}function te(e){return"custom"===e}function ne(a){return u(a).reduce(function(e,t){n=t,r=void 0,c(Ie).every(function(e){return r=null==(e=e.exec(n))?void 0:e[1],!Boolean(r)});var n,r,o,i,s=r;return h(h({},e),s?(o=s,i=a[t],u(i).reduce(function(e,t){return h(h({},e),((e={})[""+o+t]=i[t],e))},{})):((e={})[t]=a[t],e))},{})}var re=Object.freeze({__proto__:null,STORE_KEY:J,MAX_NUMBER_OF_HISTORY_ELEMENTS:20,MIN_THRESHOLD_FOR_DUPLICATE_VALUE:6e4,MAX_VALUE_SIZE:75,HistoryStore:X,default:X}),oe=function(r){return f(void 0,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return t=new X,n={name:"PageView",value:r,time:JSON.stringify(new Date)},[4,t.addElementAsync(n)];case 1:return e.sent(),[2]}})})},u=Object.keys,ie={id:"svc_ticket_id",subject:"svc_ticket_subject",description:"svc_ticket_description",category:"svc_ticket_category",productId:"svc_ticket_product_id",custom:"svc_ticket_custom"},a=c(u(ie).map(function(e){return ie[e]})).join("|"),se=new RegExp("^("+a+"$)"),ae=[function(e){return se.test(e)}],ce={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",price:"pr",quantity:"qt",coupon:"cc",position:"ps",group:"group"},ue={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",position:"ps",price:"pr",group:"group"},p={action:"pa",list:"pal",listSource:"pls"},pe={id:"ti",revenue:"tr",tax:"tt",shipping:"ts",coupon:"tcc",affiliation:"ta",step:"cos",option:"col"},le={id:"quoteId",affiliation:"quoteAffiliation"},de={id:"reviewId",rating:"reviewRating",comment:"reviewComment"},he={add:p,bookmark_add:p,bookmark_remove:p,click:p,checkout:p,checkout_option:p,detail:p,impression:p,remove:p,refund:h(h({},p),pe),purchase:h(h({},p),pe),quickview:p,quote:h(h({},p),le),review:h(h({},p),de)},a=u(ce).map(function(e){return ce[e]}),l=u(ue).map(function(e){return ue[e]}),d=u(p).map(function(e){return p[e]}),ge=u(pe).map(function(e){return pe[e]}),fe=u(de).map(function(e){return de[e]}),me=u(le).map(function(e){return le[e]}),a=c(a,["custom"]).join("|"),l=c(l,["custom"]).join("|"),ve="(pr[0-9]+)",ye="(il[0-9]+pi[0-9]+)",Se=new RegExp("^"+ve+"("+a+")$"),ke=new RegExp("^("+ye+"("+l+"))|(il[0-9]+nm)$"),Ee=new RegExp("^("+d.join("|")+")$"),we=new RegExp("^("+ge.join("|")+")$"),a=new RegExp("^"+ve+"custom$"),l=new RegExp("^"+ye+"custom$"),Ce=new RegExp("^("+c(["loyaltyCardId","loyaltyTier","thirdPartyPersona","companyName","favoriteStore","storeName","userIndustry","userRole","userDepartment","businessUnit"],fe,me).join("|")+")$"),be=[function(e){return ke.test(e)},function(e){return Se.test(e)},function(e){return Ee.test(e)},function(e){return we.test(e)},function(e){return Ce.test(e)}],Ie=[a,l],d=h(h(h(h({},{anonymizeIp:"aip"}),{eventCategory:"ec",eventAction:"ea",eventLabel:"el",eventValue:"ev",page:"dp",visitorId:"cid",clientId:"cid",userId:"uid",currencyCode:"cu"}),{hitType:"t",pageViewId:"pid",encoding:"de",location:"dl",referrer:"dr",screenColor:"sd",screenResolution:"sr",title:"dt",userAgent:"ua",language:"ul",eventId:"z",time:"tm"}),["contentId","contentIdKey","contentType","searchHub","tab","searchUid","permanentId","contentLocale"].reduce(function(e,t){return h(h({},e),((e={})[t]=t,e))},{})),Re=h(h({},d),{svcAction:"svc_action",svcActionData:"svc_action_data"}),Pe=u(Re).map(function(e){return Re[e]}),xe=(v.prototype.sendEvent=function(u,p){return f(this,void 0,void 0,function(){var t,n,r,o,i,s,a,c;return m(this,function(e){switch(e.label){case 0:if(navigator.sendBeacon)return n=this.opts,t=n.baseUrl,n=n.preprocessRequest,r=this.encodeForEventType(u,p),[4,this.getQueryParamsForEventType(u)];throw new Error('navigator.sendBeacon is not supported in this browser. Consider adding a polyfill like "sendbeacon-polyfill".');case 1:return(o=e.sent(),o={url:t+"/analytics/"+u+"?"+o,body:new Blob([r],{type:"application/x-www-form-urlencoded"})},a=[h({},o)],n)?[4,n(o,"analyticsBeacon")]:[3,3];case 2:return c=e.sent(),[3,4];case 3:c={},e.label=4;case 4:return o=h.apply(void 0,a.concat([c])),i=o.url,s=o.body,console.log('Sending beacon for "'+u+'" with: ',JSON.stringify(p)),navigator.sendBeacon(i,s),[2]}})})},v.prototype.deleteHttpCookieVisitorId=function(){return Promise.resolve()},v.prototype.encodeForEventType=function(e,t){return this.isEventTypeLegacy(e)?this.encodeForLegacyType(e,t):this.encodeForFormUrlEncoded(h({access_token:this.opts.token},t))},v.prototype.getQueryParamsForEventType=function(r){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=this.opts,t=n.token,[4,n.visitorIdProvider.getCurrentVisitorId()];case 1:return n=e.sent(),[2,[t&&this.isEventTypeLegacy(r)?"access_token="+t:"",n?"visitorId="+n:"","discardVisitInfo=true"].filter(function(e){return!!e}).join("&")]}})})},v.prototype.isEventTypeLegacy=function(e){return-1!==[o.click,o.custom,o.search,o.view].indexOf(e)},v.prototype.encodeForLegacyType=function(e,t){return e+"Event="+encodeURIComponent(JSON.stringify(t))},v.prototype.encodeForFormUrlEncoded=function(t){var n=this;return Object.keys(t).filter(function(e){return!!t[e]}).map(function(e){return encodeURIComponent(e)+"="+encodeURIComponent(n.encodeValue(t[e]))}).join("&")},v.prototype.encodeValue=function(e){return"number"==typeof e||"string"==typeof e||"boolean"==typeof e?e:JSON.stringify(e)},v);function v(e){this.opts=e}Ae.prototype.sendEvent=function(e,t){return f(this,void 0,void 0,function(){return m(this,function(e){return[2,Promise.resolve()]})})},Ae.prototype.deleteHttpCookieVisitorId=function(){return f(this,void 0,void 0,function(){return m(this,function(e){return[2,Promise.resolve()]})})};var Fe=Ae;function Ae(){}var Te=window.fetch,Le=(y.prototype.sendEvent=function(l,d){return f(this,void 0,void 0,function(){var t,n,r,o,i,s,a,c,u,p;return m(this,function(e){switch(e.label){case 0:return(r=this.opts,t=r.baseUrl,n=r.visitorIdProvider,r=r.preprocessRequest,this.shouldAppendVisitorId(l))?[4,this.getVisitorIdParam()]:[3,2];case 1:return o=e.sent(),[3,3];case 2:o="",e.label=3;case 3:return(i={url:t+"/analytics/"+l+o,credentials:"include",mode:"cors",headers:this.getHeaders(),method:"POST",body:JSON.stringify(d)},a=[h({},i)],r)?[4,r(i,"analyticsFetch")]:[3,5];case 4:return c=e.sent(),[3,6];case 5:c={},e.label=6;case 6:return i=h.apply(void 0,a.concat([c])),p=i.url,s=g(i,["url"]),[4,Te(p,s)];case 7:return(u=e.sent()).ok?[4,u.json()]:[3,9];case 8:return(p=e.sent()).visitorId&&n.setCurrentVisitorId(p.visitorId),[2,p];case 9:try{u.json()}catch(e){}throw console.error('An error has occured when sending the "'+l+'" event.',u,d),new Error('An error has occurred when sending the "'+l+'" event. Check the console logs for more details.')}})})},y.prototype.deleteHttpCookieVisitorId=function(){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return t=this.opts.baseUrl,[4,Te(t+"/analytics/visit",{headers:this.getHeaders(),method:"DELETE"})];case 1:return e.sent(),[2]}})})},y.prototype.shouldAppendVisitorId=function(e){return-1!==[o.click,o.custom,o.search,o.view].indexOf(e)},y.prototype.getVisitorIdParam=function(){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return[4,this.opts.visitorIdProvider.getCurrentVisitorId()];case 1:return[2,(t=e.sent())?"?visitor="+t:""]}})})},y.prototype.getHeaders=function(){var e=this.opts.token;return h(h({},e?{Authorization:"Bearer "+e}:{}),{"Content-Type":"application/json"})},y);function y(e){this.opts=e}var Oe=function(e,o){var i=this;Q()&&B()?this.storage=new W:Q()?this.storage=localStorage:(console.warn("BrowserRuntime detected no valid storage available.",this),this.storage=new r),this.client=new Le(e),this.beaconClient=new xe(e),window.addEventListener("beforeunload",function(){for(var e=0,t=o();e<t.length;e++){var n=t[e],r=n.eventType,n=n.payload;i.beaconClient.sendEvent(r,n)}})},De=function(e,t){this.storage=t||new r,this.client=new Le(e)},Ve=function(){this.storage=new r,this.client=new Fe};var Me=["1",1,"yes",!0];function S(){return _()&&[navigator.globalPrivacyControl,navigator.doNotTrack,navigator.msDoNotTrack,window.doNotTrack].some(function(e){return-1!==Me.indexOf(e)})}var ge=Object.freeze({__proto__:null,doNotTrack:S,default:S}),qe={default:"https://analytics.cloud.coveo.com/rest/ua",production:"https://analytics.cloud.coveo.com/rest/ua",hipaa:"https://analyticshipaa.cloud.coveo.com/rest/ua"},k=(Object.defineProperty(E.prototype,"defaultOptions",{get:function(){return{endpoint:qe.default,token:"",version:"v15",beforeSendHooks:[],afterSendHooks:[]}},enumerable:!1,configurable:!0}),E.prototype.initRuntime=function(e){var t=this;return"undefined"!=typeof window&&N()?new Oe(e,function(){var e=c(t.bufferedRequests);return t.bufferedRequests=[],e}):("undefined"!=typeof navigator&&"ReactNative"==navigator.product&&console.warn("\n We've detected you're using React Native but have not provided the corresponding runtime, \n for an optimal experience please install @react-native-async-storage/async-storage and instantiate \n your analytics client as follows:\n \n import {ReactNativeRuntime} from 'coveo.analytics/src/react-native';\n \n const analytics = new CoveoAnalyticsClient({\n ...your options,\n runtimeEnvironment: new ReactNativeRuntime({\n baseUrl: '...',\n });\n })\n "),new De(e))},Object.defineProperty(E.prototype,"storage",{get:function(){return this.runtime.storage},enumerable:!1,configurable:!0}),E.prototype.determineVisitorId=function(){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,this.storage.getItem("visitorId")];case 1:return[2,e.sent()||s()];case 2:return t=e.sent(),console.log("Could not get visitor ID from the current runtime environment storage. Using a random ID instead.",t),[2,s()];case 3:return[2]}})})},E.prototype.getCurrentVisitorId=function(){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return this.visitorId?[3,3]:[4,this.determineVisitorId()];case 1:return t=e.sent(),[4,this.setCurrentVisitorId(t)];case 2:e.sent(),e.label=3;case 3:return[2,this.visitorId]}})})},E.prototype.setCurrentVisitorId=function(t){return f(this,void 0,void 0,function(){return m(this,function(e){switch(e.label){case 0:return this.visitorId=t,[4,this.storage.setItem("visitorId",t)];case 1:return e.sent(),[2]}})})},E.prototype.getParameters=function(t){for(var n=[],e=1;e<arguments.length;e++)n[e-1]=arguments[e];return f(this,void 0,void 0,function(){return m(this,function(e){switch(e.label){case 0:return[4,this.resolveParameters.apply(this,c([t],n))];case 1:return[2,e.sent()]}})})},E.prototype.getPayload=function(n){for(var r=[],e=1;e<arguments.length;e++)r[e-1]=arguments[e];return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return[4,this.resolveParameters.apply(this,c([n],r))];case 1:return t=e.sent(),[4,this.resolvePayloadForParameters(n,t)];case 2:return[2,e.sent()]}})})},Object.defineProperty(E.prototype,"currentVisitorId",{get:function(){return"string"!=typeof(this.visitorId||this.storage.getItem("visitorId"))&&this.setCurrentVisitorId(s()),this.visitorId},set:function(e){this.visitorId=e,this.storage.setItem("visitorId",e)},enumerable:!1,configurable:!0}),E.prototype.resolveParameters=function(c){for(var u=[],e=1;e<arguments.length;e++)u[e-1]=arguments[e];return f(this,void 0,void 0,function(){var t,n,i,r,o,s,a=this;return m(this,function(e){switch(e.label){case 0:return t=this.eventTypeMapping[c]||{},o=t.variableLengthArgumentsNames,n=void 0===o?[]:o,o=t.addVisitorIdParameter,i=void 0!==o&&o,o=t.usesMeasurementProtocol,r=void 0!==o&&o,o=t.addClientIdParameter,s=void 0!==o&&o,[4,[function(e){return 0<n.length?a.parseVariableArgumentsPayload(n,e):e[0]},function(o){return f(a,void 0,void 0,function(){var t,n,r;return m(this,function(e){switch(e.label){case 0:return(t=[h({},o)],n={},i)?[4,this.getCurrentVisitorId()]:[3,2];case 1:return r=e.sent(),[3,3];case 2:r="",e.label=3;case 3:return[2,h.apply(void 0,t.concat([(n.visitorId=r,n)]))]}})})},function(r){return f(a,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return s?(t=[h({},r)],n={},[4,this.getCurrentVisitorId()]):[3,2];case 1:return[2,h.apply(void 0,t.concat([(n.clientId=e.sent(),n)]))];case 2:return[2,r]}})})},function(e){return r?a.ensureAnonymousUserWhenUsingApiKey(e):e},function(e){return a.beforeSendHooks.reduce(function(n,r){return f(a,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return[4,n];case 1:return t=e.sent(),[4,r(c,t)];case 2:return[2,e.sent()]}})})},e)}].reduce(function(n,r){return f(a,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return[4,n];case 1:return t=e.sent(),[4,r(t)];case 2:return[2,e.sent()]}})})},Promise.resolve(u))];case 1:return[2,e.sent()]}})})},E.prototype.resolvePayloadForParameters=function(r,i){return f(this,void 0,void 0,function(){var t,n,o=this;return m(this,function(e){switch(e.label){case 0:return t=(this.eventTypeMapping[r]||{}).usesMeasurementProtocol,n=void 0!==t&&t,[4,[function(e){return o.removeEmptyPayloadValues(e,r)},function(e){return o.validateParams(e)},function(e){return n?(o=!!(r=e).action&&he[r.action]||{},u(r).reduce(function(e,t){var n=o[t]||Re[t]||t;return h(h({},e),((e={})[n]=r[t],e))},{})):e;var r,o},function(e){return n?o.removeUnknownParameters(e):e},function(e){return n?o.processCustomParameters(e):e}].reduce(function(n,r){return f(o,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return[4,n];case 1:return t=e.sent(),[4,r(t)];case 2:return[2,e.sent()]}})})},Promise.resolve(i))];case 1:return[2,e.sent()]}})})},E.prototype.sendEvent=function(o){for(var i=[],e=1;e<arguments.length;e++)i[e-1]=arguments[e];return f(this,void 0,void 0,function(){var t,n,r;return m(this,function(e){switch(e.label){case 0:return t=(this.eventTypeMapping[o]||{}).newEventType,t=void 0===t?o:t,[4,this.resolveParameters.apply(this,c([o],i))];case 1:return n=e.sent(),[4,this.resolvePayloadForParameters(o,n)];case 2:return r=e.sent(),this.bufferedRequests.push({eventType:t,payload:r}),[4,Promise.all(this.afterSendHooks.map(function(e){return e(o,n)}))];case 3:return e.sent(),[4,this.deferExecution()];case 4:return e.sent(),[4,this.sendFromBufferWithFetch()];case 5:return[2,e.sent()]}})})},E.prototype.deferExecution=function(){return new Promise(function(e){return setTimeout(e,0)})},E.prototype.sendFromBufferWithFetch=function(){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){return(n=this.bufferedRequests.shift())?(t=n.eventType,n=n.payload,[2,this.runtime.client.sendEvent(t,n)]):[2]})})},E.prototype.clear=function(){this.storage.removeItem("visitorId"),(new X).clear()},E.prototype.deleteHttpOnlyVisitorId=function(){this.runtime.client.deleteHttpCookieVisitorId()},E.prototype.sendSearchEvent=function(t){return f(this,void 0,void 0,function(){return m(this,function(e){return[2,this.sendEvent(o.search,t)]})})},E.prototype.sendClickEvent=function(t){return f(this,void 0,void 0,function(){return m(this,function(e){return[2,this.sendEvent(o.click,t)]})})},E.prototype.sendCustomEvent=function(t){return f(this,void 0,void 0,function(){return m(this,function(e){return[2,this.sendEvent(o.custom,t)]})})},E.prototype.sendViewEvent=function(t){return f(this,void 0,void 0,function(){return m(this,function(e){return[2,this.sendEvent(o.view,t)]})})},E.prototype.getVisit=function(){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return[4,fetch(this.baseUrl+"/analytics/visit")];case 1:return[4,e.sent().json()];case 2:return t=e.sent(),this.visitorId=t.visitorId,[2,t]}})})},E.prototype.getHealth=function(){return f(this,void 0,void 0,function(){return m(this,function(e){switch(e.label){case 0:return[4,fetch(this.baseUrl+"/analytics/monitoring/health")];case 1:return[4,e.sent().json()];case 2:return[2,e.sent()]}})})},E.prototype.registerBeforeSendEventHook=function(e){this.beforeSendHooks.push(e)},E.prototype.registerAfterSendEventHook=function(e){this.afterSendHooks.push(e)},E.prototype.addEventTypeMapping=function(e,t){this.eventTypeMapping[e]=t},E.prototype.parseVariableArgumentsPayload=function(e,t){for(var n={},r=0,o=t.length;r<o;r++){var i=t[r];if("string"==typeof i)n[e[r]]=i;else if("object"==typeof i)return h(h({},n),i)}return n},E.prototype.isKeyAllowedEmpty=function(e,t){var n;return(n={})[o.search]=["queryText"],-1!==(n[e]||[]).indexOf(t)},E.prototype.removeEmptyPayloadValues=function(n,t){var r=this;return Object.keys(n).filter(function(e){return r.isKeyAllowedEmpty(t,e)||null!=(e=n[e])&&""!==e}).reduce(function(e,t){return h(h({},e),((e={})[t]=n[t],e))},{})},E.prototype.removeUnknownParameters=function(n){return Object.keys(n).filter(function(e){if(t=e,c(be,ae,[ee,te]).some(function(e){return e(t)}))return!0;var t;console.log(e,"is not processed by coveoua")}).reduce(function(e,t){return h(h({},e),((e={})[t]=n[t],e))},{})},E.prototype.processCustomParameters=function(e){var t=e.custom,e=g(e,["custom"]),t=this.lowercaseKeys(t),e=ne(e);return h(h({},t),e)},E.prototype.lowercaseKeys=function(n){return Object.keys(n||{}).reduce(function(e,t){return h(h({},e),((e={})[t.toLowerCase()]=n[t],e))},{})},E.prototype.validateParams=function(e){var t=e.anonymizeIp,e=g(e,["anonymizeIp"]);return void 0!==t&&-1==["0","false","undefined","null","{}","[]",""].indexOf((""+t).toLowerCase())&&(e.anonymizeIp=1),e},E.prototype.ensureAnonymousUserWhenUsingApiKey=function(e){var t,n=e.userId,r=g(e,["userId"]);return null!=(t=this.options.token)&&t.startsWith("xx")&&!n?(r.userId="anonymous",r):e},Object.defineProperty(E.prototype,"baseUrl",{get:function(){var e=this.options,t=e.version,e=e.endpoint,n=-1!==e.indexOf(".cloud.coveo.com");return e+(n?"":"/rest")+"/"+t},enumerable:!1,configurable:!0}),E);function E(e){if(!e)throw new Error("You have to pass options to this constructor");this.options=h(h({},this.defaultOptions),e),this.visitorId="",this.bufferedRequests=[],this.beforeSendHooks=[function(t,n){return f(void 0,void 0,void 0,function(){return m(this,function(e){switch(e.label){case 0:return t!==o.view?[3,2]:[4,oe(n.contentIdValue)];case 1:return e.sent(),[2,h({location:window.location.toString(),referrer:document.referrer,title:document.title},n)];case 2:return[2,n]}})})},function(e,t){return-1!==U.indexOf(e)?h({language:N()?document.documentElement.lang:"unknown",userAgent:_()?navigator.userAgent:"unknown"},t):t}].concat(this.options.beforeSendHooks),this.afterSendHooks=this.options.afterSendHooks,this.eventTypeMapping={};e={baseUrl:this.baseUrl,token:this.options.token,visitorIdProvider:this,preprocessRequest:this.options.preprocessRequest};this.runtime=this.options.runtimeEnvironment||this.initRuntime(e),S()&&(this.clear(),this.runtime.storage=new r)}function _e(e){return e.protocol+"//"+e.hostname+(0===e.pathname.indexOf("/")?e.pathname:"/"+e.pathname)+e.search}var ve=Object.freeze({__proto__:null,Version:"v15",Endpoints:qe,CoveoAnalyticsClient:k,default:k}),w={pageview:"pageview",event:"event"},ye=(C.prototype.setAction=function(e,t){this.action=e,this.actionData=t},C.prototype.clearData=function(){this.clearPluginData(),this.action=void 0,this.actionData={}},C.prototype.getLocationInformation=function(e,t){return h({hitType:e},this.getNextValues(e,t))},C.prototype.updateLocationInformation=function(e,t){this.updateLocationForNextPageView(e,t)},C.prototype.getDefaultContextInformation=function(e){var t={title:document.title,encoding:document.characterSet},n={screenResolution:screen.width+"x"+screen.height,screenColor:screen.colorDepth+"-bit"},r={language:navigator.language,userAgent:navigator.userAgent},o={time:Date.now().toString(),eventId:this.uuidGenerator()};return h(h(h(h({},o),n),r),t)},C.prototype.updateLocationForNextPageView=function(e,t){var t=this.getNextValues(e,t),n=t.pageViewId,r=t.referrer,t=t.location;this.lastReferrer=r,this.pageViewId=n,this.currentLocation=t,e===w.pageview&&(this.nextPageViewId=this.uuidGenerator(),this.hasSentFirstPageView=!0)},C.prototype.getNextValues=function(e,t){return{pageViewId:e===w.pageview?this.nextPageViewId:this.pageViewId,referrer:e===w.pageview&&this.hasSentFirstPageView?this.currentLocation:this.lastReferrer,location:e===w.pageview?this.getCurrentLocationFromPayload(t):this.currentLocation}},C.prototype.getCurrentLocationFromPayload=function(e){return e.page?""+this.currentLocation.split("/").slice(0,3).join("/")+e.page.replace(/^\/?(.*)$/,"/$1"):_e(window.location)},C);function C(e){var t=e.client,e=e.uuidGenerator,e=void 0===e?s:e;this.actionData={},this.client=t,this.uuidGenerator=e,this.pageViewId=e(),this.nextPageViewId=this.pageViewId,this.currentLocation=_e(window.location),this.lastReferrer=document.referrer,this.addHooks()}var Ne,Qe=h({},w),Be=Object.keys(Qe).map(function(e){return Qe[e]});function b(e){var t=e.client,e=e.uuidGenerator,t=Ne.call(this,{client:t,uuidGenerator:void 0===e?s:e})||this;return t.products=[],t.impressions=[],t}q(b,Ne=ye),b.prototype.addHooks=function(){this.addHooksForPageView(),this.addHooksForEvent(),this.addHooksForECEvents()},b.prototype.addProduct=function(e){this.products.push(e)},b.prototype.addImpression=function(e){this.impressions.push(e)},b.prototype.clearPluginData=function(){this.products=[],this.impressions=[]},b.prototype.addHooksForECEvents=function(){var o=this;this.client.registerBeforeSendEventHook(function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];var r=t[0];return-1!==Be.indexOf(e)?o.addECDataToPayload(e,r):r}),this.client.registerAfterSendEventHook(function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];var r=t[0];return-1!==Be.indexOf(e)&&o.updateLocationInformation(e,r),r})},b.prototype.addHooksForPageView=function(){this.client.addEventTypeMapping(Qe.pageview,{newEventType:o.collect,variableLengthArgumentsNames:["page"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},b.prototype.addHooksForEvent=function(){this.client.addEventTypeMapping(Qe.event,{newEventType:o.collect,variableLengthArgumentsNames:["eventCategory","eventAction","eventLabel","eventValue"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},b.prototype.addECDataToPayload=function(e,t){var e=h(h(h(h({},this.getLocationInformation(e,t)),this.getDefaultContextInformation(e)),this.action?{action:this.action}:{}),this.actionData||{}),n=this.getProductPayload(),r=this.getImpressionPayload();return this.clearData(),h(h(h(h({},r),n),e),t)},b.prototype.getProductPayload=function(){var t=this;return this.products.map(function(e){return t.assureProductValidity(e)}).reduce(function(e,t,n){return h(h({},e),(o=n,u(r=t).reduce(function(e,t){var n="pr"+(o+1)+(ce[t]||t);return h(h({},e),((e={})[n]=r[t],e))},{})));var r,o},{})},b.prototype.getImpressionPayload=function(){var n=this;return this.getImpressionsByList().map(function(e){var t=e.impressions,e=g(e,["impressions"]);return h(h({},e),{impressions:t.map(function(e){return n.assureBaseImpressionValidity(e)})})}).reduce(function(e,t,n){return h(h({},e),Z(t,n,"pi"))},{})},b.prototype.assureProductValidity=function(e){var t=e.position,n=g(e,["position"]);return void 0!==t&&t<1?(console.warn("The position for product '"+(e.name||e.id)+"' must be greater than 0 when provided."),n):e},b.prototype.assureBaseImpressionValidity=function(e){var t=e.position,n=g(e,["position"]);return void 0!==t&&t<1?(console.warn("The position for impression '"+(e.name||e.id)+"' must be greater than 0 when provided."),n):e},b.prototype.getImpressionsByList=function(){return this.impressions.reduce(function(e,t){var n=t.list,t=g(t,["list"]),r=e.find(function(e){return e.listName===n});return r?r.impressions.push(t):e.push({listName:n,impressions:[t]}),e},[])},b.Id="ec";var He,Ue=b,je=h({},w),Ye=Object.keys(je).map(function(e){return je[e]}),ze=(q(I,He=ye),I.prototype.addHooks=function(){this.addHooksForEvent(),this.addHooksForPageView(),this.addHooksForSVCEvents()},I.prototype.setTicket=function(e){this.ticket=e},I.prototype.clearPluginData=function(){this.ticket={}},I.prototype.addHooksForSVCEvents=function(){var o=this;this.client.registerBeforeSendEventHook(function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];var r=t[0];return-1!==Ye.indexOf(e)?o.addSVCDataToPayload(e,r):r}),this.client.registerAfterSendEventHook(function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];var r=t[0];return-1!==Ye.indexOf(e)&&o.updateLocationInformation(e,r),r})},I.prototype.addHooksForPageView=function(){this.client.addEventTypeMapping(je.pageview,{newEventType:o.collect,variableLengthArgumentsNames:["page"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},I.prototype.addHooksForEvent=function(){this.client.addEventTypeMapping(je.event,{newEventType:o.collect,variableLengthArgumentsNames:["eventCategory","eventAction","eventLabel","eventValue"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},I.prototype.addSVCDataToPayload=function(e,t){var e=h(h(h(h({},this.getLocationInformation(e,t)),this.getDefaultContextInformation(e)),this.action?{svcAction:this.action}:{}),0<Object.keys(null!=(e=this.actionData)?e:{}).length?{svcActionData:this.actionData}:{}),n=this.getTicketPayload();return this.clearData(),h(h(h({},n),e),t)},I.prototype.getTicketPayload=function(){return r=this.ticket,u(r).filter(function(e){return void 0!==r[e]}).reduce(function(e,t){var n=ie[t]||t;return h(h({},e),((e={})[n]=r[t],e))},{});var r},I.Id="svc",I);function I(e){var t=e.client,e=e.uuidGenerator,t=He.call(this,{client:t,uuidGenerator:void 0===e?s:e})||this;return t.ticket={},t}var Ke=ze,We=(R.prototype.require=function(e,t){var n=this.registeredPluginsMap[e];if(!n)throw new Error('No plugin named "'+e+"\" is currently registered. If you use a custom plugin, use 'provide' first.");this.requiredPlugins[e]=new n(t)},R.prototype.provide=function(e,t){this.registeredPluginsMap[e]=t},R.prototype.clearRequired=function(){this.requiredPlugins={}},R.prototype.execute=function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var o=this.requiredPlugins[e];if(!o)throw new Error('The plugin "'+e+'" is not required. Check that you required it on initialization.');var i=o[t];if(!i)throw new Error('The function "'+t+'" does not exists on the plugin "'+e+'".');if("function"!=typeof i)throw new Error('"'+t+'" of the plugin "'+e+'" is not a function.');return i.apply(o,n)},R.DefaultPlugins=[Ue.Id,Ke.Id],R);function R(){var e;this.registeredPluginsMap=((e={})[Ue.Id]=Ue,e[Ke.Id]=Ke,e),this.requiredPlugins={}}P.prototype.init=function(e,t){var n=this;if(!e)throw new Error("You must pass your token when you call 'init'");if("string"==typeof e?this.client=new k({token:e,endpoint:this.getEndpoint(t)}):this.isAnalyticsClient(e)&&(this.client=e),!this.client)throw new Error("You must pass either your token or a valid object when you call 'init'");var r={client:this.client};this.plugins.clearRequired(),this.getPluginKeys(t).forEach(function(e){return n.plugins.require(e,r)}),this.client.registerBeforeSendEventHook(function(e,t){return h(h({},t),n.params)}),this.client.addEventTypeMapping(o.view,{newEventType:o.view,addClientIdParameter:!0})},P.prototype.isAnalyticsClient=function(e){return"object"==typeof e&&void 0!==e.sendEvent},P.prototype.getPluginKeys=function(e){return"string"!=typeof e&&Array.isArray(null==e?void 0:e.plugins)?e.plugins:We.DefaultPlugins},P.prototype.getEndpoint=function(e){return"string"==typeof e?e||qe.default:null!=e&&e.endpoint?e.endpoint:qe.default},P.prototype.initForProxy=function(e){if(!e)throw new Error("You must pass your endpoint when you call 'initForProxy'");if("string"!=typeof e)throw new Error("You must pass a string as the endpoint parameter when you call 'initForProxy'");this.client=new k({endpoint:e})},P.prototype.set=function(t,e){var n=this;"string"==typeof t?this.params[t]=e:Object.keys(t).map(function(e){n.params[e]=t[e]})},P.prototype.send=function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];var r=t[0],o=t.slice(1);if(void 0===this.client)throw new Error("You must call init before sending an event");if(r)return(e=this.client).sendEvent.apply(e,c([r.toLowerCase()],o));throw new Error('You must provide an event type when calling "send".')},P.prototype.onLoad=function(e){if(void 0===e)throw new Error("You must pass a function when you call 'onLoad'");e()},P.prototype.provide=function(e,t){this.plugins.provide(e,t)},P.prototype.require=function(e,t){if(!this.client)throw new Error("You must call init before requiring a plugin");this.plugins.require(e,h(h({},t),{client:this.client}))},P.prototype.callPlugin=function(e,t){for(var n,r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];(n=this.plugins).execute.apply(n,c([e,t],r))},P.prototype.reset=function(){this.client=void 0,this.plugins=new We,this.params={}};fe=P;function P(){this.plugins=new We,this.params={}}function $e(){return Je.client}function x(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];(o=/^(?:(\w+)\.)?(?:(\w+):)?(\w+)$/.exec(e))[1];var r=o[2],o=o[3],i=Je[o];if(r&&o)return Je.callPlugin.apply(Je,c([r,o],t));if(i)return i.apply(Je,t);throw new Error('The action "'+e+'" does not exist. Available actions: '+["init","set","send","onLoad","callPlugin","reset","require","provide"].join(", ")+".")}var Ge,F,Je=new fe,me=Object.freeze({__proto__:null,CoveoUA:fe,coveoua:Je,getCurrentClient:$e,handleOneAnalyticsEvent:x,default:x}),Xe=((a=Ge=Ge||{}).contextChanged="contextChanged",a.expandToFullUI="expandToFullUI",(l=F=F||{}).interfaceLoad="interfaceLoad",l.interfaceChange="interfaceChange",l.didyoumeanAutomatic="didyoumeanAutomatic",l.didyoumeanClick="didyoumeanClick",l.resultsSort="resultsSort",l.searchboxSubmit="searchboxSubmit",l.searchboxClear="searchboxClear",l.searchboxAsYouType="searchboxAsYouType",l.breadcrumbFacet="breadcrumbFacet",l.breadcrumbResetAll="breadcrumbResetAll",l.documentQuickview="documentQuickview",l.documentOpen="documentOpen",l.omniboxAnalytics="omniboxAnalytics",l.omniboxFromLink="omniboxFromLink",l.searchFromLink="searchFromLink",l.triggerNotify="notify",l.triggerExecute="execute",l.triggerQuery="query",l.undoTriggerQuery="undoQuery",l.triggerRedirect="redirect",l.pagerResize="pagerResize",l.pagerNumber="pagerNumber",l.pagerNext="pagerNext",l.pagerPrevious="pagerPrevious",l.pagerScrolling="pagerScrolling",l.staticFilterClearAll="staticFilterClearAll",l.staticFilterSelect="staticFilterSelect",l.staticFilterDeselect="staticFilterDeselect",l.facetClearAll="facetClearAll",l.facetSearch="facetSearch",l.facetSelect="facetSelect",l.facetSelectAll="facetSelectAll",l.facetDeselect="facetDeselect",l.facetExclude="facetExclude",l.facetUnexclude="facetUnexclude",l.facetUpdateSort="facetUpdateSort",l.facetShowMore="showMoreFacetResults",l.facetShowLess="showLessFacetResults",l.queryError="query",l.queryErrorBack="errorBack",l.queryErrorClear="errorClearQuery",l.queryErrorRetry="errorRetry",l.recommendation="recommendation",l.recommendationInterfaceLoad="recommendationInterfaceLoad",l.recommendationOpen="recommendationOpen",l.likeSmartSnippet="likeSmartSnippet",l.dislikeSmartSnippet="dislikeSmartSnippet",l.expandSmartSnippet="expandSmartSnippet",l.collapseSmartSnippet="collapseSmartSnippet",l.openSmartSnippetFeedbackModal="openSmartSnippetFeedbackModal",l.closeSmartSnippetFeedbackModal="closeSmartSnippetFeedbackModal",l.sendSmartSnippetReason="sendSmartSnippetReason",l.expandSmartSnippetSuggestion="expandSmartSnippetSuggestion",l.collapseSmartSnippetSuggestion="collapseSmartSnippetSuggestion",l.showMoreSmartSnippetSuggestion="showMoreSmartSnippetSuggestion",l.showLessSmartSnippetSuggestion="showLessSmartSnippetSuggestion",l.openSmartSnippetSource="openSmartSnippetSource",l.openSmartSnippetSuggestionSource="openSmartSnippetSuggestionSource",l.openSmartSnippetInlineLink="openSmartSnippetInlineLink",l.openSmartSnippetSuggestionInlineLink="openSmartSnippetSuggestionInlineLink",l.recentQueryClick="recentQueriesClick",l.clearRecentQueries="clearRecentQueries",l.recentResultClick="recentResultClick",l.clearRecentResults="clearRecentResults",l.noResultsBack="noResultsBack",l.showMoreFoldedResults="showMoreFoldedResults",l.showLessFoldedResults="showLessFoldedResults",(d={})[F.triggerNotify]="queryPipelineTriggers",d[F.triggerExecute]="queryPipelineTriggers",d[F.triggerQuery]="queryPipelineTriggers",d[F.triggerRedirect]="queryPipelineTriggers",d[F.queryError]="errors",d[F.queryErrorBack]="errors",d[F.queryErrorClear]="errors",d[F.queryErrorRetry]="errors",d[F.pagerNext]="getMoreResults",d[F.pagerPrevious]="getMoreResults",d[F.pagerNumber]="getMoreResults",d[F.pagerResize]="getMoreResults",d[F.pagerScrolling]="getMoreResults",d[F.facetSearch]="facet",d[F.facetShowLess]="facet",d[F.facetShowMore]="facet",d[F.recommendation]="recommendation",d[F.likeSmartSnippet]="smartSnippet",d[F.dislikeSmartSnippet]="smartSnippet",d[F.expandSmartSnippet]="smartSnippet",d[F.collapseSmartSnippet]="smartSnippet",d[F.openSmartSnippetFeedbackModal]="smartSnippet",d[F.closeSmartSnippetFeedbackModal]="smartSnippet",d[F.sendSmartSnippetReason]="smartSnippet",d[F.expandSmartSnippetSuggestion]="smartSnippetSuggestions",d[F.collapseSmartSnippetSuggestion]="smartSnippetSuggestions",d[F.showMoreSmartSnippetSuggestion]="smartSnippetSuggestions",d[F.showLessSmartSnippetSuggestion]="smartSnippetSuggestions",d[F.clearRecentQueries]="recentQueries",d[F.recentResultClick]="recentlyClickedDocuments",d[F.clearRecentResults]="recentlyClickedDocuments",d[F.showLessFoldedResults]="folding",d[Ge.expandToFullUI]="interface",d),Ze=(A.prototype.getPayload=function(){return Promise.resolve()},A.prototype.getParameters=function(){return Promise.resolve()},A.prototype.sendEvent=function(){return Promise.resolve()},A.prototype.sendSearchEvent=function(){return Promise.resolve()},A.prototype.sendClickEvent=function(){return Promise.resolve()},A.prototype.sendCustomEvent=function(){return Promise.resolve()},A.prototype.sendViewEvent=function(){return Promise.resolve()},A.prototype.getVisit=function(){return Promise.resolve({id:"",visitorId:""})},A.prototype.getHealth=function(){return Promise.resolve({status:""})},A.prototype.registerBeforeSendEventHook=function(){},A.prototype.registerAfterSendEventHook=function(){},A.prototype.addEventTypeMapping=function(){},A);function A(){this.runtime=new Ve,this.currentVisitorId=""}function et(e){var n,e=e.map(function(e){return e.replace(/;/g,"")});return n="",function e(t){var n=t.join(";");return n.length<=256?n:e(t.slice(1))}(e.filter(function(e){var t=e!==n;return n=e,t}))}function tt(e){var t="string"==typeof e.partialQueries?e.partialQueries:et(e.partialQueries),n="string"==typeof e.suggestions?e.suggestions:et(e.suggestions);return h(h({},e),{partialQueries:t,suggestions:n})}L.prototype.disable=function(){this.coveoAnalyticsClient instanceof k&&this.coveoAnalyticsClient.clear(),this.coveoAnalyticsClient=new Ze},L.prototype.enable=function(){this.coveoAnalyticsClient=new k(this.opts)},L.prototype.makeInterfaceLoad=function(){return this.makeSearchEvent(F.interfaceLoad)},L.prototype.logInterfaceLoad=function(){return this.makeInterfaceLoad().log()},L.prototype.makeRecommendationInterfaceLoad=function(){return this.makeSearchEvent(F.recommendationInterfaceLoad)},L.prototype.logRecommendationInterfaceLoad=function(){return this.makeRecommendationInterfaceLoad().log()},L.prototype.makeRecommendation=function(){return this.makeCustomEvent(F.recommendation)},L.prototype.logRecommendation=function(){return this.makeRecommendation().log()},L.prototype.makeRecommendationOpen=function(e,t){return this.makeClickEvent(F.recommendationOpen,e,t)},L.prototype.logRecommendationOpen=function(e,t){return this.makeRecommendationOpen(e,t).log()},L.prototype.makeStaticFilterClearAll=function(e){return this.makeSearchEvent(F.staticFilterClearAll,e)},L.prototype.logStaticFilterClearAll=function(e){return this.makeStaticFilterClearAll(e).log()},L.prototype.makeStaticFilterSelect=function(e){return this.makeSearchEvent(F.staticFilterSelect,e)},L.prototype.logStaticFilterSelect=function(e){return this.makeStaticFilterSelect(e).log()},L.prototype.makeStaticFilterDeselect=function(e){return this.makeSearchEvent(F.staticFilterDeselect,e)},L.prototype.logStaticFilterDeselect=function(e){return this.makeStaticFilterDeselect(e).log()},L.prototype.makeFetchMoreResults=function(){return this.makeCustomEvent(F.pagerScrolling,{type:"getMoreResults"})},L.prototype.logFetchMoreResults=function(){return this.makeFetchMoreResults().log()},L.prototype.makeInterfaceChange=function(e){return this.makeSearchEvent(F.interfaceChange,e)},L.prototype.logInterfaceChange=function(e){return this.makeInterfaceChange(e).log()},L.prototype.makeDidYouMeanAutomatic=function(){return this.makeSearchEvent(F.didyoumeanAutomatic)},L.prototype.logDidYouMeanAutomatic=function(){return this.makeDidYouMeanAutomatic().log()},L.prototype.makeDidYouMeanClick=function(){return this.makeSearchEvent(F.didyoumeanClick)},L.prototype.logDidYouMeanClick=function(){return this.makeDidYouMeanClick().log()},L.prototype.makeResultsSort=function(e){return this.makeSearchEvent(F.resultsSort,e)},L.prototype.logResultsSort=function(e){return this.makeResultsSort(e).log()},L.prototype.makeSearchboxSubmit=function(){return this.makeSearchEvent(F.searchboxSubmit)},L.prototype.logSearchboxSubmit=function(){return this.makeSearchboxSubmit().log()},L.prototype.makeSearchboxClear=function(){return this.makeSearchEvent(F.searchboxClear)},L.prototype.logSearchboxClear=function(){return this.makeSearchboxClear().log()},L.prototype.makeSearchboxAsYouType=function(){return this.makeSearchEvent(F.searchboxAsYouType)},L.prototype.logSearchboxAsYouType=function(){return this.makeSearchboxAsYouType().log()},L.prototype.makeBreadcrumbFacet=function(e){return this.makeSearchEvent(F.breadcrumbFacet,e)},L.prototype.logBreadcrumbFacet=function(e){return this.makeBreadcrumbFacet(e).log()},L.prototype.makeBreadcrumbResetAll=function(){return this.makeSearchEvent(F.breadcrumbResetAll)},L.prototype.logBreadcrumbResetAll=function(){return this.makeBreadcrumbResetAll().log()},L.prototype.makeDocumentQuickview=function(e,t){return this.makeClickEvent(F.documentQuickview,e,t)},L.prototype.logDocumentQuickview=function(e,t){return this.makeDocumentQuickview(e,t).log()},L.prototype.makeDocumentOpen=function(e,t){return this.makeClickEvent(F.documentOpen,e,t)},L.prototype.logDocumentOpen=function(e,t){return this.makeDocumentOpen(e,t).log()},L.prototype.makeOmniboxAnalytics=function(e){return this.makeSearchEvent(F.omniboxAnalytics,tt(e))},L.prototype.logOmniboxAnalytics=function(e){return this.makeOmniboxAnalytics(e).log()},L.prototype.makeOmniboxFromLink=function(e){return this.makeSearchEvent(F.omniboxFromLink,tt(e))},L.prototype.logOmniboxFromLink=function(e){return this.makeOmniboxFromLink(e).log()},L.prototype.makeSearchFromLink=function(){return this.makeSearchEvent(F.searchFromLink)},L.prototype.logSearchFromLink=function(){return this.makeSearchFromLink().log()},L.prototype.makeTriggerNotify=function(e){return this.makeCustomEvent(F.triggerNotify,e)},L.prototype.logTriggerNotify=function(e){return this.makeTriggerNotify(e).log()},L.prototype.makeTriggerExecute=function(e){return this.makeCustomEvent(F.triggerExecute,e)},L.prototype.logTriggerExecute=function(e){return this.makeTriggerExecute(e).log()},L.prototype.makeTriggerQuery=function(){return this.makeCustomEvent(F.triggerQuery,{query:this.provider.getSearchEventRequestPayload().queryText},"queryPipelineTriggers")},L.prototype.logTriggerQuery=function(){return this.makeTriggerQuery().log()},L.prototype.makeUndoTriggerQuery=function(e){return this.makeSearchEvent(F.undoTriggerQuery,e)},L.prototype.logUndoTriggerQuery=function(e){return this.makeUndoTriggerQuery(e).log()},L.prototype.makeTriggerRedirect=function(e){return this.makeCustomEvent(F.triggerRedirect,h(h({},e),{query:this.provider.getSearchEventRequestPayload().queryText}))},L.prototype.logTriggerRedirect=function(e){return this.makeTriggerRedirect(e).log()},L.prototype.makePagerResize=function(e){return this.makeCustomEvent(F.pagerResize,e)},L.prototype.logPagerResize=function(e){return this.makePagerResize(e).log()},L.prototype.makePagerNumber=function(e){return this.makeCustomEvent(F.pagerNumber,e)},L.prototype.logPagerNumber=function(e){return this.makePagerNumber(e).log()},L.prototype.makePagerNext=function(e){return this.makeCustomEvent(F.pagerNext,e)},L.prototype.logPagerNext=function(e){return this.makePagerNext(e).log()},L.prototype.makePagerPrevious=function(e){return this.makeCustomEvent(F.pagerPrevious,e)},L.prototype.logPagerPrevious=function(e){return this.makePagerPrevious(e).log()},L.prototype.makePagerScrolling=function(){return this.makeCustomEvent(F.pagerScrolling)},L.prototype.logPagerScrolling=function(){return this.makePagerScrolling().log()},L.prototype.makeFacetClearAll=function(e){return this.makeSearchEvent(F.facetClearAll,e)},L.prototype.logFacetClearAll=function(e){return this.makeFacetClearAll(e).log()},L.prototype.makeFacetSearch=function(e){return this.makeSearchEvent(F.facetSearch,e)},L.prototype.logFacetSearch=function(e){return this.makeFacetSearch(e).log()},L.prototype.makeFacetSelect=function(e){return this.makeSearchEvent(F.facetSelect,e)},L.prototype.logFacetSelect=function(e){return this.makeFacetSelect(e).log()},L.prototype.makeFacetDeselect=function(e){return this.makeSearchEvent(F.facetDeselect,e)},L.prototype.logFacetDeselect=function(e){return this.makeFacetDeselect(e).log()},L.prototype.makeFacetExclude=function(e){return this.makeSearchEvent(F.facetExclude,e)},L.prototype.logFacetExclude=function(e){return this.makeFacetExclude(e).log()},L.prototype.makeFacetUnexclude=function(e){return this.makeSearchEvent(F.facetUnexclude,e)},L.prototype.logFacetUnexclude=function(e){return this.makeFacetUnexclude(e).log()},L.prototype.makeFacetSelectAll=function(e){return this.makeSearchEvent(F.facetSelectAll,e)},L.prototype.logFacetSelectAll=function(e){return this.makeFacetSelectAll(e).log()},L.prototype.makeFacetUpdateSort=function(e){return this.makeSearchEvent(F.facetUpdateSort,e)},L.prototype.logFacetUpdateSort=function(e){return this.makeFacetUpdateSort(e).log()},L.prototype.makeFacetShowMore=function(e){return this.makeCustomEvent(F.facetShowMore,e)},L.prototype.logFacetShowMore=function(e){return this.makeFacetShowMore(e).log()},L.prototype.makeFacetShowLess=function(e){return this.makeCustomEvent(F.facetShowLess,e)},L.prototype.logFacetShowLess=function(e){return this.makeFacetShowLess(e).log()},L.prototype.makeQueryError=function(e){return this.makeCustomEvent(F.queryError,e)},L.prototype.logQueryError=function(e){return this.makeQueryError(e).log()},L.prototype.makeQueryErrorBack=function(){var e=this;return{description:this.makeDescription(F.queryErrorBack),log:function(){return f(e,void 0,void 0,function(){return m(this,function(e){switch(e.label){case 0:return[4,this.logCustomEvent(F.queryErrorBack)];case 1:return e.sent(),[2,this.logSearchEvent(F.queryErrorBack)]}})})}}},L.prototype.logQueryErrorBack=function(){return this.makeQueryErrorBack().log()},L.prototype.makeQueryErrorRetry=function(){var e=this;return{description:this.makeDescription(F.queryErrorRetry),log:function(){return f(e,void 0,void 0,function(){return m(this,function(e){switch(e.label){case 0:return[4,this.logCustomEvent(F.queryErrorRetry)];case 1:return e.sent(),[2,this.logSearchEvent(F.queryErrorRetry)]}})})}}},L.prototype.logQueryErrorRetry=function(){return this.makeQueryErrorRetry().log()},L.prototype.makeQueryErrorClear=function(){var e=this;return{description:this.makeDescription(F.queryErrorClear),log:function(){return f(e,void 0,void 0,function(){return m(this,function(e){switch(e.label){case 0:return[4,this.logCustomEvent(F.queryErrorClear)];case 1:return e.sent(),[2,this.logSearchEvent(F.queryErrorClear)]}})})}}},L.prototype.logQueryErrorClear=function(){return this.makeQueryErrorClear().log()},L.prototype.makeLikeSmartSnippet=function(){return this.makeCustomEvent(F.likeSmartSnippet)},L.prototype.logLikeSmartSnippet=function(){return this.makeLikeSmartSnippet().log()},L.prototype.makeDislikeSmartSnippet=function(){return this.makeCustomEvent(F.dislikeSmartSnippet)},L.prototype.logDislikeSmartSnippet=function(){return this.makeDislikeSmartSnippet().log()},L.prototype.makeExpandSmartSnippet=function(){return this.makeCustomEvent(F.expandSmartSnippet)},L.prototype.logExpandSmartSnippet=function(){return this.makeExpandSmartSnippet().log()},L.prototype.makeCollapseSmartSnippet=function(){return this.makeCustomEvent(F.collapseSmartSnippet)},L.prototype.logCollapseSmartSnippet=function(){return this.makeCollapseSmartSnippet().log()},L.prototype.makeOpenSmartSnippetFeedbackModal=function(){return this.makeCustomEvent(F.openSmartSnippetFeedbackModal)},L.prototype.logOpenSmartSnippetFeedbackModal=function(){return this.makeOpenSmartSnippetFeedbackModal().log()},L.prototype.makeCloseSmartSnippetFeedbackModal=function(){return this.makeCustomEvent(F.closeSmartSnippetFeedbackModal)},L.prototype.logCloseSmartSnippetFeedbackModal=function(){return this.makeCloseSmartSnippetFeedbackModal().log()},L.prototype.makeSmartSnippetFeedbackReason=function(e,t){return this.makeCustomEvent(F.sendSmartSnippetReason,{reason:e,details:t})},L.prototype.logSmartSnippetFeedbackReason=function(e,t){return this.makeSmartSnippetFeedbackReason(e,t).log()},L.prototype.makeExpandSmartSnippetSuggestion=function(e){return this.makeCustomEvent(F.expandSmartSnippetSuggestion,"documentId"in e?e:{documentId:e})},L.prototype.logExpandSmartSnippetSuggestion=function(e){return this.makeExpandSmartSnippetSuggestion(e).log()},L.prototype.makeCollapseSmartSnippetSuggestion=function(e){return this.makeCustomEvent(F.collapseSmartSnippetSuggestion,"documentId"in e?e:{documentId:e})},L.prototype.logCollapseSmartSnippetSuggestion=function(e){return this.makeCollapseSmartSnippetSuggestion(e).log()},L.prototype.makeShowMoreSmartSnippetSuggestion=function(e){return this.makeCustomEvent(F.showMoreSmartSnippetSuggestion,e)},L.prototype.logShowMoreSmartSnippetSuggestion=function(e){return this.makeShowMoreSmartSnippetSuggestion(e).log()},L.prototype.makeShowLessSmartSnippetSuggestion=function(e){return this.makeCustomEvent(F.showLessSmartSnippetSuggestion,e)},L.prototype.logShowLessSmartSnippetSuggestion=function(e){return this.makeShowLessSmartSnippetSuggestion(e).log()},L.prototype.makeOpenSmartSnippetSource=function(e,t){return this.makeClickEvent(F.openSmartSnippetSource,e,t)},L.prototype.logOpenSmartSnippetSource=function(e,t){return this.makeOpenSmartSnippetSource(e,t).log()},L.prototype.makeOpenSmartSnippetSuggestionSource=function(e,t){return this.makeClickEvent(F.openSmartSnippetSuggestionSource,e,{contentIDKey:t.documentId.contentIdKey,contentIDValue:t.documentId.contentIdValue},t)},L.prototype.logOpenSmartSnippetSuggestionSource=function(e,t){return this.makeOpenSmartSnippetSuggestionSource(e,t).log()},L.prototype.makeOpenSmartSnippetInlineLink=function(e,t){return this.makeClickEvent(F.openSmartSnippetInlineLink,e,{contentIDKey:t.contentIDKey,contentIDValue:t.contentIDValue},t)},L.prototype.logOpenSmartSnippetInlineLink=function(e,t){return this.makeOpenSmartSnippetInlineLink(e,t).log()},L.prototype.makeOpenSmartSnippetSuggestionInlineLink=function(e,t){return this.makeClickEvent(F.openSmartSnippetSuggestionInlineLink,e,{contentIDKey:t.documentId.contentIdKey,contentIDValue:t.documentId.contentIdValue},t)},L.prototype.logOpenSmartSnippetSuggestionInlineLink=function(e,t){return this.makeOpenSmartSnippetSuggestionInlineLink(e,t).log()},L.prototype.makeRecentQueryClick=function(){return this.makeSearchEvent(F.recentQueryClick)},L.prototype.logRecentQueryClick=function(){return this.makeRecentQueryClick().log()},L.prototype.makeClearRecentQueries=function(){return this.makeCustomEvent(F.clearRecentQueries)},L.prototype.logClearRecentQueries=function(){return this.makeClearRecentQueries().log()},L.prototype.makeRecentResultClick=function(e,t){return this.makeCustomEvent(F.recentResultClick,{info:e,identifier:t})},L.prototype.logRecentResultClick=function(e,t){return this.makeRecentResultClick(e,t).log()},L.prototype.makeClearRecentResults=function(){return this.makeCustomEvent(F.clearRecentResults)},L.prototype.logClearRecentResults=function(){return this.makeClearRecentResults().log()},L.prototype.makeNoResultsBack=function(){return this.makeSearchEvent(F.noResultsBack)},L.prototype.logNoResultsBack=function(){return this.makeNoResultsBack().log()},L.prototype.makeShowMoreFoldedResults=function(e,t){return this.makeClickEvent(F.showMoreFoldedResults,e,t)},L.prototype.logShowMoreFoldedResults=function(e,t){return this.makeShowMoreFoldedResults(e,t).log()},L.prototype.makeShowLessFoldedResults=function(){return this.makeCustomEvent(F.showLessFoldedResults)},L.prototype.logShowLessFoldedResults=function(){return this.makeShowLessFoldedResults().log()},L.prototype.makeCustomEvent=function(r,e,o){var t=this,i=(void 0===o&&(o=Xe[r]),h(h({},this.provider.getBaseMetadata()),e));return{description:this.makeDescription(r,e),log:function(){return f(t,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=[{}],[4,this.getBaseCustomEventRequest(i)];case 1:return t=h.apply(void 0,[h.apply(void 0,n.concat([e.sent()])),{eventType:o,eventValue:r}]),[2,this.coveoAnalyticsClient.sendCustomEvent(t)]}})})}}},L.prototype.logCustomEvent=function(e,t,n){return void 0===n&&(n=Xe[e]),this.makeCustomEvent(e,t,n).log()},L.prototype.makeCustomEventWithType=function(r,o,e){var t=this,i=h(h({},this.provider.getBaseMetadata()),e);return{description:{actionCause:r,customData:i},log:function(){return f(t,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=[{}],[4,this.getBaseCustomEventRequest(i)];case 1:return t=h.apply(void 0,[h.apply(void 0,n.concat([e.sent()])),{eventType:o,eventValue:r}]),[2,this.coveoAnalyticsClient.sendCustomEvent(t)]}})})}}},L.prototype.logCustomEventWithType=function(e,t,n){return this.makeCustomEventWithType(e,t,n).log()},L.prototype.logSearchEvent=function(r,o){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=(t=this.coveoAnalyticsClient).sendSearchEvent,[4,this.getBaseSearchEventRequest(r,o)];case 1:return[2,n.apply(t,[e.sent()])]}})})},L.prototype.makeDescription=function(e,t){return{actionCause:e,customData:h(h({},this.provider.getBaseMetadata()),t)}},L.prototype.makeSearchEvent=function(e,t){var n=this;return{description:this.makeDescription(e,t),log:function(){return n.logSearchEvent(e,t)}}},L.prototype.logClickEvent=function(r,o,i,s){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=[h({},o)],[4,this.getBaseEventRequest(h(h({},i),s))];case 1:return t=h.apply(void 0,[h.apply(void 0,n.concat([e.sent()])),{searchQueryUid:this.provider.getSearchUID(),queryPipeline:this.provider.getPipeline(),actionCause:r}]),[2,this.coveoAnalyticsClient.sendClickEvent(t)]}})})},L.prototype.makeClickEvent=function(e,t,n,r){var o=this;return{description:this.makeDescription(e,h(h({},n),r)),log:function(){return o.logClickEvent(e,t,n,r)}}},L.prototype.getBaseSearchEventRequest=function(n,r){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return t=[{}],[4,this.getBaseEventRequest(r)];case 1:return[2,h.apply(void 0,[h.apply(void 0,[h.apply(void 0,t.concat([e.sent()])),this.provider.getSearchEventRequestPayload()]),{searchQueryUid:this.provider.getSearchUID(),queryPipeline:this.provider.getPipeline(),actionCause:n}])]}})})},L.prototype.getBaseCustomEventRequest=function(n){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return t=[{}],[4,this.getBaseEventRequest(n)];case 1:return[2,h.apply(void 0,[h.apply(void 0,t.concat([e.sent()])),{lastSearchQueryUid:this.provider.getSearchUID()}])]}})})},L.prototype.getBaseEventRequest=function(r){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=h(h({},this.provider.getBaseMetadata()),r),t=[h(h({},this.getOrigins()),this.getSplitTestRun())],n={customData:n,language:this.provider.getLanguage(),facetState:this.provider.getFacetState?this.provider.getFacetState():[],anonymous:this.provider.getIsAnonymous()},[4,this.getClientId()];case 1:return[2,h.apply(void 0,t.concat([(n.clientId=e.sent(),n)]))]}})})},L.prototype.getOrigins=function(){var e,t;return{originContext:null==(t=(e=this.provider).getOriginContext)?void 0:t.call(e),originLevel1:this.provider.getOriginLevel1(),originLevel2:this.provider.getOriginLevel2(),originLevel3:this.provider.getOriginLevel3()}},L.prototype.getClientId=function(){return this.coveoAnalyticsClient instanceof k?this.coveoAnalyticsClient.getCurrentVisitorId():void 0},L.prototype.getSplitTestRun=function(){var e=this.provider.getSplitTestRunName?this.provider.getSplitTestRunName():"",t=this.provider.getSplitTestRunVersion?this.provider.getSplitTestRunVersion():"";return h(h({},e&&{splitTestRunName:e}),t&&{splitTestRunVersion:t})};var nt,T,rt,ye=L;function L(e,t){this.opts=e,this.provider=t;t=!1===e.enableAnalytics||S();this.coveoAnalyticsClient=t?new Ze:new k(e)}(a=nt=nt||{}).click="click",a.flowStart="flowStart",(l=T=T||{}).enterInterface="ticket_create_start",l.fieldUpdate="ticket_field_update",l.fieldSuggestionClick="ticket_classification_click",l.suggestionClick="suggestion_click",l.suggestionRate="suggestion_rate",l.nextCaseStep="ticket_next_stage",l.caseCancelled="ticket_cancel",l.caseSolved="ticket_cancel",l.caseCreated="ticket_create",(d=rt=rt||{}).quit="Quit",d.solved="Solved";O.prototype.disable=function(){this.coveoAnalyticsClient instanceof k&&this.coveoAnalyticsClient.clear(),this.coveoAnalyticsClient=new Ze,this.svc=new ze({client:this.coveoAnalyticsClient})},O.prototype.enable=function(){this.coveoAnalyticsClient=new k(this.options),this.svc=new ze({client:this.coveoAnalyticsClient})},O.prototype.logEnterInterface=function(e){return this.svc.setAction(T.enterInterface),this.svc.setTicket(e.ticket),this.sendFlowStartEvent()},O.prototype.logUpdateCaseField=function(e){return this.svc.setAction(T.fieldUpdate,{fieldName:e.fieldName}),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.logSelectFieldSuggestion=function(e){return this.svc.setAction(T.fieldSuggestionClick,e.suggestion),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.logSelectDocumentSuggestion=function(e){return this.svc.setAction(T.suggestionClick,e.suggestion),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.logRateDocumentSuggestion=function(e){return this.svc.setAction(T.suggestionRate,h({rate:e.rating},e.suggestion)),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.logMoveToNextCaseStep=function(e){return this.svc.setAction(T.nextCaseStep,{stage:null==e?void 0:e.stage}),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.logCaseCancelled=function(e){return this.svc.setAction(T.caseCancelled,{reason:rt.quit}),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.logCaseSolved=function(e){return this.svc.setAction(T.caseSolved,{reason:rt.solved}),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.logCaseCreated=function(e){return this.svc.setAction(T.caseCreated),this.svc.setTicket(e.ticket),this.sendClickEvent()},O.prototype.sendFlowStartEvent=function(){return this.coveoAnalyticsClient.sendEvent("event","svc",nt.flowStart,this.provider?{searchHub:this.provider.getOriginLevel1()}:null)},O.prototype.sendClickEvent=function(){return this.coveoAnalyticsClient.sendEvent("event","svc",nt.click,this.provider?{searchHub:this.provider.getOriginLevel1()}:null)};a=O;function O(e,t){this.options=e,this.provider=t;t=(null==(t=e.enableAnalytics)||t)&&!S();this.coveoAnalyticsClient=t?new k(e):new Ze,this.svc=new ze({client:this.coveoAnalyticsClient})}function D(e,t){void 0===t&&(t=!0),e.caseContext;var n,r,o=e.caseId,i=e.caseNumber,s=g(e,["caseContext","caseId","caseNumber"]),e=(r={},(n=e).caseContext&&Object.keys(n.caseContext).forEach(function(e){var t=null==(t=n.caseContext)?void 0:t[e];t&&(r["context_"+e]=t)}),r);return h(h(h({CaseId:o,CaseNumber:i},s),!!e.context_Case_Subject&&{CaseSubject:e.context_Case_Subject}),t&&e)}function V(e,t){this.opts=e,this.provider=t;t=!1===e.enableAnalytics||S();this.coveoAnalyticsClient=t?new Ze:new k(e)}V.prototype.disable=function(){this.coveoAnalyticsClient instanceof k&&this.coveoAnalyticsClient.clear(),this.coveoAnalyticsClient=new Ze},V.prototype.enable=function(){this.coveoAnalyticsClient=new k(this.opts)},V.prototype.logInterfaceLoad=function(e){return e?(e=D(e),this.logSearchEvent(F.interfaceLoad,e)):this.logSearchEvent(F.interfaceLoad)},V.prototype.logInterfaceChange=function(e){e=D(e);return this.logSearchEvent(F.interfaceChange,e)},V.prototype.logStaticFilterDeselect=function(e){e=D(e);return this.logSearchEvent(F.staticFilterDeselect,e)},V.prototype.logFetchMoreResults=function(e){return e?(e=D(e),this.logCustomEvent(F.pagerScrolling,h(h({},e),{type:"getMoreResults"}))):this.logCustomEvent(F.pagerScrolling,{type:"getMoreResults"})},V.prototype.logBreadcrumbFacet=function(e){e=D(e);return this.logSearchEvent(F.breadcrumbFacet,e)},V.prototype.logBreadcrumbResetAll=function(e){return e?(e=D(e),this.logSearchEvent(F.breadcrumbResetAll,e)):this.logSearchEvent(F.breadcrumbResetAll)},V.prototype.logFacetSelect=function(e){e=D(e);return this.logSearchEvent(F.facetSelect,e)},V.prototype.logFacetDeselect=function(e){e=D(e);return this.logSearchEvent(F.facetDeselect,e)},V.prototype.logFacetUpdateSort=function(e){e=D(e);return this.logSearchEvent(F.facetUpdateSort,e)},V.prototype.logFacetClearAll=function(e){e=D(e);return this.logSearchEvent(F.facetClearAll,e)},V.prototype.logFacetShowMore=function(e){e=D(e,!1);return this.logCustomEvent(F.facetShowMore,e)},V.prototype.logFacetShowLess=function(e){e=D(e,!1);return this.logCustomEvent(F.facetShowLess,e)},V.prototype.logQueryError=function(e){e=D(e,!1);return this.logCustomEvent(F.queryError,e)},V.prototype.logPagerNumber=function(e){e=D(e,!1);return this.logCustomEvent(F.pagerNumber,e)},V.prototype.logPagerNext=function(e){e=D(e,!1);return this.logCustomEvent(F.pagerNext,e)},V.prototype.logPagerPrevious=function(e){e=D(e,!1);return this.logCustomEvent(F.pagerPrevious,e)},V.prototype.logDidYouMeanAutomatic=function(e){return e?(e=D(e),this.logSearchEvent(F.didyoumeanAutomatic,e)):this.logSearchEvent(F.didyoumeanAutomatic)},V.prototype.logDidYouMeanClick=function(e){return e?(e=D(e),this.logSearchEvent(F.didyoumeanClick,e)):this.logSearchEvent(F.didyoumeanClick)},V.prototype.logResultsSort=function(e){e=D(e);return this.logSearchEvent(F.resultsSort,e)},V.prototype.logSearchboxSubmit=function(e){return e?(e=D(e),this.logSearchEvent(F.searchboxSubmit,e)):this.logSearchEvent(F.searchboxSubmit)},V.prototype.logContextChanged=function(e){e=D(e);return this.logSearchEvent(Ge.contextChanged,e)},V.prototype.logExpandToFullUI=function(e){e=D(e);return this.logCustomEvent(Ge.expandToFullUI,e)},V.prototype.logCustomEvent=function(r,o){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return t=h(h({},this.provider.getBaseMetadata()),o),n=[{}],[4,this.getBaseCustomEventRequest(t)];case 1:return t=h.apply(void 0,[h.apply(void 0,n.concat([e.sent()])),{eventType:Xe[r],eventValue:r}]),[2,this.coveoAnalyticsClient.sendCustomEvent(t)]}})})},V.prototype.logSearchEvent=function(r,o){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=(t=this.coveoAnalyticsClient).sendSearchEvent,[4,this.getBaseSearchEventRequest(r,o)];case 1:return[2,n.apply(t,[e.sent()])]}})})},V.prototype.getBaseCustomEventRequest=function(n){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return t=[{}],[4,this.getBaseEventRequest(n)];case 1:return[2,h.apply(void 0,[h.apply(void 0,t.concat([e.sent()])),{lastSearchQueryUid:this.provider.getSearchUID()}])]}})})},V.prototype.getBaseSearchEventRequest=function(n,r){return f(this,void 0,void 0,function(){var t;return m(this,function(e){switch(e.label){case 0:return t=[{}],[4,this.getBaseEventRequest(r)];case 1:return[2,h.apply(void 0,[h.apply(void 0,[h.apply(void 0,t.concat([e.sent()])),this.provider.getSearchEventRequestPayload()]),{searchQueryUid:this.provider.getSearchUID(),queryPipeline:this.provider.getPipeline(),actionCause:n}])]}})})},V.prototype.getBaseEventRequest=function(r){return f(this,void 0,void 0,function(){var t,n;return m(this,function(e){switch(e.label){case 0:return n=h(h({},this.provider.getBaseMetadata()),r),t=[h({},this.getOrigins())],n={customData:n,language:this.provider.getLanguage(),facetState:this.provider.getFacetState?this.provider.getFacetState():[],anonymous:this.provider.getIsAnonymous()},[4,this.getClientId()];case 1:return[2,h.apply(void 0,t.concat([(n.clientId=e.sent(),n)]))]}})})},V.prototype.getOrigins=function(){var e,t;return{originContext:null==(t=(e=this.provider).getOriginContext)?void 0:t.call(e),originLevel1:this.provider.getOriginLevel1(),originLevel2:this.provider.getOriginLevel2(),originLevel3:this.provider.getOriginLevel3()}},V.prototype.getClientId=function(){return this.coveoAnalyticsClient instanceof k?this.coveoAnalyticsClient.getCurrentVisitorId():void 0};l=Object.freeze({__proto__:null,analytics:ve,donottrack:ge,history:re,SimpleAnalytics:me,storage:e,CoveoAnalyticsClient:k,CoveoUA:fe,getCurrentClient:$e,handleOneAnalyticsEvent:x,CoveoSearchPageClient:ye,CaseAssistClient:a,CoveoInsightClient:V});window.Promise instanceof Function||console.error('This script uses window.Promise which is not supported in your browser. Consider adding a polyfill like "es6-promise".');window.fetch instanceof Function||console.error('This script uses window.fetch which is not supported in your browser. Consider adding a polyfill like "fetch".');d=self.coveoua||x;return self.coveoua=x,self.coveoanalytics=l,d.q&&c(d.q.filter(function(e){return"init"===e[0]}),d.q.filter(function(e){return"init"!==e[0]})).forEach(function(e){return x.apply(void 0,e)}),self.coveoua}();
|
|
1
|
+
var coveoua=function(){"use strict";var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};function t(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}var n,r=function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},r.apply(this,arguments)};function o(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}function i(e,t,n,r){return new(n||(n=Promise))((function(o,i){function s(e){try{u(r.next(e))}catch(e){i(e)}}function a(e){try{u(r.throw(e))}catch(e){i(e)}}function u(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}u((r=r.apply(e,t||[])).next())}))}function s(e,t){var n,r,o,i,s={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(o=2&i[0]?r.return:i[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,i[1])).done)return o;switch(r=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,r=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!(o=s.trys,(o=o.length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){s.label=i[1];break}if(6===i[0]&&s.label<o[1]){s.label=o[1],o=i;break}if(o&&s.label<o[2]){s.label=o[2],s.ops.push(i);break}o[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],r=0}finally{n=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,a])}}}function a(){for(var e=0,t=0,n=arguments.length;t<n;t++)e+=arguments[t].length;var r=Array(e),o=0;for(t=0;t<n;t++)for(var i=arguments[t],s=0,a=i.length;s<a;s++,o++)r[o]=i[s];return r}function u(){return"undefined"!=typeof navigator}function c(){return"undefined"!=typeof document}function p(){try{return"undefined"!=typeof localStorage}catch(e){return!1}}function l(){return u()&&navigator.cookieEnabled}function d(){return"undefined"!=typeof crypto&&void 0!==crypto.getRandomValues}!function(e){e.search="search",e.click="click",e.custom="custom",e.view="view",e.collect="collect"}(n||(n={}));var h=[n.click,n.custom,n.search,n.view],f=function(e,t){return-1!==h.indexOf(e)?r({language:c()?document.documentElement.lang:"unknown",userAgent:u()?navigator.userAgent:"unknown"},t):t},g=function(){function e(){}return e.set=function(t,n,r){var o,i,s,a;r?((i=new Date).setTime(i.getTime()+r),s="; expires="+i.toGMTString()):s="",-1===(a=location.hostname).indexOf(".")?document.cookie=t+"="+n+s+"; path=/":((o=a.split(".")).shift(),v({name:t,value:n,expires:s,domain:"."+o.join(".")}),null!=e.get(t)&&e.get(t)==n||v({name:t,value:n,expires:s,domain:"."+a}))},e.get=function(e){for(var t=e+"=",n=document.cookie.split(";"),r=0;r<n.length;r++){var o=n[r];if(0==(o=o.replace(/^\s+/,"")).indexOf(t))return o.substring(t.length,o.length)}return null},e.erase=function(t){e.set(t,"",-1)},e}();function v(e){var t=e.name,n=e.value,r=e.expires,o=e.domain;document.cookie=t+"="+n+r+"; path=/; domain="+o+"; SameSite=Lax"}function m(){return p()?localStorage:l()?new y:function(){try{return"undefined"!=typeof sessionStorage}catch(e){return!1}}()?sessionStorage:new k}var y=function(){function e(){}return e.prototype.getItem=function(t){return g.get(""+e.prefix+t)},e.prototype.removeItem=function(t){g.erase(""+e.prefix+t)},e.prototype.setItem=function(t,n){g.set(""+e.prefix+t,n)},e.prefix="coveo_",e}(),S=function(){function e(){this.cookieStorage=new y}return e.prototype.getItem=function(e){return localStorage.getItem(e)||this.cookieStorage.getItem(e)},e.prototype.removeItem=function(e){this.cookieStorage.removeItem(e),localStorage.removeItem(e)},e.prototype.setItem=function(e,t){localStorage.setItem(e,t),this.cookieStorage.setItem(e,t)},e}(),k=function(){function e(){}return e.prototype.getItem=function(e){return null},e.prototype.removeItem=function(e){},e.prototype.setItem=function(e,t){},e}(),E=Object.freeze({__proto__:null,preferredStorage:null,getAvailableStorage:m,CookieStorage:y,CookieAndLocalStorage:S,NullStorage:k}),w="__coveo.analytics.history",C=function(){function e(e){this.store=e||m()}return e.prototype.addElement=function(e){e.internalTime=(new Date).getTime(),e=this.cropQueryElement(this.stripEmptyQuery(e));var t=this.getHistoryWithInternalTime();null!=t?this.isValidEntry(e)&&this.setHistory([e].concat(t)):this.setHistory([e])},e.prototype.addElementAsync=function(e){return i(this,void 0,void 0,(function(){var t;return s(this,(function(n){switch(n.label){case 0:return e.internalTime=(new Date).getTime(),e=this.cropQueryElement(this.stripEmptyQuery(e)),[4,this.getHistoryWithInternalTimeAsync()];case 1:return null!=(t=n.sent())?this.isValidEntry(e)&&this.setHistory([e].concat(t)):this.setHistory([e]),[2]}}))}))},e.prototype.getHistory=function(){var e=this.getHistoryWithInternalTime();return this.stripEmptyQueries(this.stripInternalTime(e))},e.prototype.getHistoryAsync=function(){return i(this,void 0,void 0,(function(){var e;return s(this,(function(t){switch(t.label){case 0:return[4,this.getHistoryWithInternalTimeAsync()];case 1:return e=t.sent(),[2,this.stripEmptyQueries(this.stripInternalTime(e))]}}))}))},e.prototype.getHistoryWithInternalTime=function(){try{var e=this.store.getItem(w);return e&&"string"==typeof e?JSON.parse(e):[]}catch(e){return[]}},e.prototype.getHistoryWithInternalTimeAsync=function(){return i(this,void 0,void 0,(function(){var e;return s(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,this.store.getItem(w)];case 1:return(e=t.sent())?[2,JSON.parse(e)]:[2,[]];case 2:return t.sent(),[2,[]];case 3:return[2]}}))}))},e.prototype.setHistory=function(e){try{this.store.setItem(w,JSON.stringify(e.slice(0,20)))}catch(e){}},e.prototype.clear=function(){try{this.store.removeItem(w)}catch(e){}},e.prototype.getMostRecentElement=function(){var e=this.getHistoryWithInternalTime();return null!=e?e.sort((function(e,t){return(t.internalTime||0)-(e.internalTime||0)}))[0]:null},e.prototype.cropQueryElement=function(e){return e.name&&e.value&&"query"===e.name.toLowerCase()&&(e.value=e.value.slice(0,75)),e},e.prototype.isValidEntry=function(e){var t=this.getMostRecentElement();return!t||t.value!=e.value||(e.internalTime||0)-(t.internalTime||0)>6e4},e.prototype.stripInternalTime=function(e){return e.map((function(e){return{name:e.name,time:e.time,value:e.value}}))},e.prototype.stripEmptyQuery=function(e){var t=e.name,n=e.time,r=e.value;return t&&"string"==typeof r&&"query"===t.toLowerCase()&&""===r.trim()?{name:t,time:n}:e},e.prototype.stripEmptyQueries=function(e){var t=this;return e.map((function(e){return t.stripEmptyQuery(e)}))},e}(),b=Object.freeze({__proto__:null,STORE_KEY:w,MAX_NUMBER_OF_HISTORY_ELEMENTS:20,MIN_THRESHOLD_FOR_DUPLICATE_VALUE:6e4,MAX_VALUE_SIZE:75,HistoryStore:C,default:C}),I=function(e,t){return i(void 0,void 0,void 0,(function(){return s(this,(function(o){switch(o.label){case 0:return e!==n.view?[3,2]:[4,R(t.contentIdValue)];case 1:return o.sent(),[2,r({location:window.location.toString(),referrer:document.referrer,title:document.title},t)];case 2:return[2,t]}}))}))},R=function(e){return i(void 0,void 0,void 0,(function(){var t,n;return s(this,(function(r){switch(r.label){case 0:return t=new C,n={name:"PageView",value:e,time:JSON.stringify(new Date)},[4,t.addElementAsync(n)];case 1:return r.sent(),[2]}}))}))},P=function(e){return e?(Number(e)^x(new Uint8Array(1))[0]%16>>Number(e)/4).toString(16):"10000000-1000-4000-8000-100000000000".replace(/[018]/g,P)},x=function(e){if(d())return crypto.getRandomValues(e);for(var t=0,n=0;t<e.length;t++)0==(3&t)&&(n=4294967296*Math.random()),e[t]=n>>>((3&t)<<3)&255;return e},F=Object.keys,A={id:"svc_ticket_id",subject:"svc_ticket_subject",description:"svc_ticket_description",category:"svc_ticket_category",productId:"svc_ticket_product_id",custom:"svc_ticket_custom"},T=a(F(A).map((function(e){return A[e]}))).join("|"),L=new RegExp("^("+T+"$)"),O=[function(e){return L.test(e)}],D={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",price:"pr",quantity:"qt",coupon:"cc",position:"ps",group:"group"},V={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",position:"ps",price:"pr",group:"group"},M={action:"pa",list:"pal",listSource:"pls"},q={id:"ti",revenue:"tr",tax:"tt",shipping:"ts",coupon:"tcc",affiliation:"ta",step:"cos",option:"col"},_={id:"quoteId",affiliation:"quoteAffiliation"},N={id:"reviewId",rating:"reviewRating",comment:"reviewComment"},Q={add:M,bookmark_add:M,bookmark_remove:M,click:M,checkout:M,checkout_option:M,detail:M,impression:M,remove:M,refund:r(r({},M),q),purchase:r(r({},M),q),quickview:M,quote:r(r({},M),_),review:r(r({},M),N)},B=function(e,t,n,o){return F(e).reduce((function(i,s){var a,u="il"+(t+1)+o+(n+1)+(V[s]||s);return r(r({},i),((a={})[u]=e[s],a))}),{})},H=F(D).map((function(e){return D[e]})),U=F(V).map((function(e){return V[e]})),j=F(M).map((function(e){return M[e]})),Y=F(q).map((function(e){return q[e]})),z=F(N).map((function(e){return N[e]})),K=F(_).map((function(e){return _[e]})),W=a(H,["custom"]).join("|"),$=a(U,["custom"]).join("|"),G=new RegExp("^(pr[0-9]+)("+W+")$"),J=new RegExp("^((il[0-9]+pi[0-9]+)("+$+"))|(il[0-9]+nm)$"),X=new RegExp("^("+j.join("|")+")$"),Z=new RegExp("^("+Y.join("|")+")$"),ee=new RegExp("^(pr[0-9]+)custom$"),te=new RegExp("^(il[0-9]+pi[0-9]+)custom$"),ne=new RegExp("^("+a(["loyaltyCardId","loyaltyTier","thirdPartyPersona","companyName","favoriteStore","storeName","userIndustry","userRole","userDepartment","businessUnit"],z,K).join("|")+")$"),re=[function(e){return J.test(e)},function(e){return G.test(e)},function(e){return X.test(e)},function(e){return Z.test(e)},function(e){return ne.test(e)}],oe=[ee,te],ie=r(r(r(r({},{anonymizeIp:"aip"}),{eventCategory:"ec",eventAction:"ea",eventLabel:"el",eventValue:"ev",page:"dp",visitorId:"cid",clientId:"cid",userId:"uid",currencyCode:"cu"}),{hitType:"t",pageViewId:"pid",encoding:"de",location:"dl",referrer:"dr",screenColor:"sd",screenResolution:"sr",title:"dt",userAgent:"ua",language:"ul",eventId:"z",time:"tm"}),["contentId","contentIdKey","contentType","searchHub","tab","searchUid","permanentId","contentLocale"].reduce((function(e,t){var n;return r(r({},e),((n={})[t]=t,n))}),{})),se=r(r({},ie),{svcAction:"svc_action",svcActionData:"svc_action_data"}),ae=F(se).map((function(e){return se[e]})),ue=function(e){return-1!==ae.indexOf(e)},ce=function(e){return"custom"===e},pe=function(e){var t=void 0;return a(oe).every((function(n){var r;return t=null===(r=n.exec(e))||void 0===r?void 0:r[1],!Boolean(t)})),t},le=function(e,t){return F(t).reduce((function(n,o){var i;return r(r({},n),((i={})[""+e+o]=t[o],i))}),{})},de=function(){function e(e){this.opts=e}return e.prototype.sendEvent=function(e,t){return i(this,void 0,void 0,(function(){var n,o,i,a,u,c,p,l,d,h,f;return s(this,(function(s){switch(s.label){case 0:if(!navigator.sendBeacon)throw new Error('navigator.sendBeacon is not supported in this browser. Consider adding a polyfill like "sendbeacon-polyfill".');return n=this.opts,o=n.baseUrl,i=n.preprocessRequest,a=this.encodeForEventType(e,t),[4,this.getQueryParamsForEventType(e)];case 1:return u=s.sent(),c={url:o+"/analytics/"+e+"?"+u,body:new Blob([a],{type:"application/x-www-form-urlencoded"})},h=[r({},c)],i?[4,i(c,"analyticsBeacon")]:[3,3];case 2:return f=s.sent(),[3,4];case 3:f={},s.label=4;case 4:return p=r.apply(void 0,h.concat([f])),l=p.url,d=p.body,console.log('Sending beacon for "'+e+'" with: ',JSON.stringify(t)),navigator.sendBeacon(l,d),[2]}}))}))},e.prototype.deleteHttpCookieVisitorId=function(){return Promise.resolve()},e.prototype.encodeForEventType=function(e,t){return this.isEventTypeLegacy(e)?this.encodeForLegacyType(e,t):this.encodeForFormUrlEncoded(r({access_token:this.opts.token},t))},e.prototype.getQueryParamsForEventType=function(e){return i(this,void 0,void 0,(function(){var t,n,r;return s(this,(function(o){switch(o.label){case 0:return t=this.opts,n=t.token,[4,t.visitorIdProvider.getCurrentVisitorId()];case 1:return r=o.sent(),[2,[n&&this.isEventTypeLegacy(e)?"access_token="+n:"",r?"visitorId="+r:"","discardVisitInfo=true"].filter((function(e){return!!e})).join("&")]}}))}))},e.prototype.isEventTypeLegacy=function(e){return-1!==[n.click,n.custom,n.search,n.view].indexOf(e)},e.prototype.encodeForLegacyType=function(e,t){return e+"Event="+encodeURIComponent(JSON.stringify(t))},e.prototype.encodeForFormUrlEncoded=function(e){var t=this;return Object.keys(e).filter((function(t){return!!e[t]})).map((function(n){return encodeURIComponent(n)+"="+encodeURIComponent(t.encodeValue(e[n]))})).join("&")},e.prototype.encodeValue=function(e){return"number"==typeof e||"string"==typeof e||"boolean"==typeof e?e:JSON.stringify(e)},e}(),he=function(){function e(){}return e.prototype.sendEvent=function(e,t){return i(this,void 0,void 0,(function(){return s(this,(function(e){return[2,Promise.resolve()]}))}))},e.prototype.deleteHttpCookieVisitorId=function(){return i(this,void 0,void 0,(function(){return s(this,(function(e){return[2,Promise.resolve()]}))}))},e}(),fe=window.fetch,ge=function(){function e(e){this.opts=e}return e.prototype.sendEvent=function(e,t){return i(this,void 0,void 0,(function(){var n,i,a,u,c,p,l,d,h,f,g,v,m;return s(this,(function(s){switch(s.label){case 0:return n=this.opts,i=n.baseUrl,a=n.visitorIdProvider,u=n.preprocessRequest,this.shouldAppendVisitorId(e)?[4,this.getVisitorIdParam()]:[3,2];case 1:return c=s.sent(),[3,3];case 2:c="",s.label=3;case 3:return p={url:i+"/analytics/"+e+c,credentials:"include",mode:"cors",headers:this.getHeaders(),method:"POST",body:JSON.stringify(t)},f=[r({},p)],u?[4,u(p,"analyticsFetch")]:[3,5];case 4:return g=s.sent(),[3,6];case 5:g={},s.label=6;case 6:return l=r.apply(void 0,f.concat([g])),d=l.url,h=o(l,["url"]),[4,fe(d,h)];case 7:return(v=s.sent()).ok?[4,v.json()]:[3,9];case 8:return(m=s.sent()).visitorId&&a.setCurrentVisitorId(m.visitorId),[2,m];case 9:try{v.json()}catch(e){}throw console.error('An error has occured when sending the "'+e+'" event.',v,t),new Error('An error has occurred when sending the "'+e+'" event. Check the console logs for more details.')}}))}))},e.prototype.deleteHttpCookieVisitorId=function(){return i(this,void 0,void 0,(function(){var e;return s(this,(function(t){switch(t.label){case 0:return e=this.opts.baseUrl,[4,fe(e+"/analytics/visit",{headers:this.getHeaders(),method:"DELETE"})];case 1:return t.sent(),[2]}}))}))},e.prototype.shouldAppendVisitorId=function(e){return-1!==[n.click,n.custom,n.search,n.view].indexOf(e)},e.prototype.getVisitorIdParam=function(){return i(this,void 0,void 0,(function(){var e;return s(this,(function(t){switch(t.label){case 0:return[4,this.opts.visitorIdProvider.getCurrentVisitorId()];case 1:return[2,(e=t.sent())?"?visitor="+e:""]}}))}))},e.prototype.getHeaders=function(){var e=this.opts.token;return r(r({},e?{Authorization:"Bearer "+e}:{}),{"Content-Type":"application/json"})},e}(),ve=function(e,t){var n=this;p()&&l()?this.storage=new S:p()?this.storage=localStorage:(console.warn("BrowserRuntime detected no valid storage available.",this),this.storage=new k),this.client=new ge(e),this.beaconClient=new de(e),window.addEventListener("beforeunload",(function(){for(var e=0,r=t();e<r.length;e++){var o=r[e],i=o.eventType,s=o.payload;n.beaconClient.sendEvent(i,s)}}))},me=function(e,t){this.storage=t||new k,this.client=new ge(e)},ye=function(){this.storage=new k,this.client=new he};var Se=["1",1,"yes",!0];function ke(){return u()&&[navigator.globalPrivacyControl,navigator.doNotTrack,navigator.msDoNotTrack,window.doNotTrack].some((function(e){return-1!==Se.indexOf(e)}))}var Ee=Object.freeze({__proto__:null,doNotTrack:ke,default:ke}),we="v15",Ce={default:"https://analytics.cloud.coveo.com/rest/ua",production:"https://analytics.cloud.coveo.com/rest/ua",hipaa:"https://analyticshipaa.cloud.coveo.com/rest/ua"};function be(e,t){void 0===e&&(e=Ce.default),void 0===t&&(t=we);var n=-1!==e.indexOf(".cloud.coveo.com");return e+(n?"":"/rest")+"/"+t}var Ie,Re,Pe,xe=function(){function e(e){if(!e)throw new Error("You have to pass options to this constructor");this.options=r(r({},this.defaultOptions),e),this.visitorId="",this.bufferedRequests=[],this.beforeSendHooks=[I,f].concat(this.options.beforeSendHooks),this.afterSendHooks=this.options.afterSendHooks,this.eventTypeMapping={};var t={baseUrl:this.baseUrl,token:this.options.token,visitorIdProvider:this,preprocessRequest:this.options.preprocessRequest};this.runtime=this.options.runtimeEnvironment||this.initRuntime(t),ke()&&(this.clear(),this.runtime.storage=new k)}return Object.defineProperty(e.prototype,"defaultOptions",{get:function(){return{endpoint:Ce.default,token:"",version:we,beforeSendHooks:[],afterSendHooks:[]}},enumerable:!1,configurable:!0}),e.prototype.initRuntime=function(e){var t=this;return"undefined"!=typeof window&&c()?new ve(e,(function(){var e=a(t.bufferedRequests);return t.bufferedRequests=[],e})):("undefined"!=typeof navigator&&"ReactNative"==navigator.product&&console.warn("\n We've detected you're using React Native but have not provided the corresponding runtime, \n for an optimal experience please use the \"coveo.analytics/react-native\" subpackage.\n Follow the Readme on how to set it up: https://github.com/coveo/coveo.analytics.js#using-react-native\n "),new me(e))},Object.defineProperty(e.prototype,"storage",{get:function(){return this.runtime.storage},enumerable:!1,configurable:!0}),e.prototype.determineVisitorId=function(){return i(this,void 0,void 0,(function(){var e;return s(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,this.storage.getItem("visitorId")];case 1:return[2,t.sent()||P()];case 2:return e=t.sent(),console.log("Could not get visitor ID from the current runtime environment storage. Using a random ID instead.",e),[2,P()];case 3:return[2]}}))}))},e.prototype.getCurrentVisitorId=function(){return i(this,void 0,void 0,(function(){var e;return s(this,(function(t){switch(t.label){case 0:return this.visitorId?[3,3]:[4,this.determineVisitorId()];case 1:return e=t.sent(),[4,this.setCurrentVisitorId(e)];case 2:t.sent(),t.label=3;case 3:return[2,this.visitorId]}}))}))},e.prototype.setCurrentVisitorId=function(e){return i(this,void 0,void 0,(function(){return s(this,(function(t){switch(t.label){case 0:return this.visitorId=e,[4,this.storage.setItem("visitorId",e)];case 1:return t.sent(),[2]}}))}))},e.prototype.getParameters=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];return i(this,void 0,void 0,(function(){return s(this,(function(n){switch(n.label){case 0:return[4,this.resolveParameters.apply(this,a([e],t))];case 1:return[2,n.sent()]}}))}))},e.prototype.getPayload=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];return i(this,void 0,void 0,(function(){var n;return s(this,(function(r){switch(r.label){case 0:return[4,this.resolveParameters.apply(this,a([e],t))];case 1:return n=r.sent(),[4,this.resolvePayloadForParameters(e,n)];case 2:return[2,r.sent()]}}))}))},Object.defineProperty(e.prototype,"currentVisitorId",{get:function(){return"string"!=typeof(this.visitorId||this.storage.getItem("visitorId"))&&this.setCurrentVisitorId(P()),this.visitorId},set:function(e){this.visitorId=e,this.storage.setItem("visitorId",e)},enumerable:!1,configurable:!0}),e.prototype.resolveParameters=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];return i(this,void 0,void 0,(function(){var n,o,a,u,c,p,l,d,h,f,g,v,m=this;return s(this,(function(y){switch(y.label){case 0:return n=this.eventTypeMapping[e]||{},o=n.variableLengthArgumentsNames,a=void 0===o?[]:o,u=n.addVisitorIdParameter,c=void 0!==u&&u,p=n.usesMeasurementProtocol,l=void 0!==p&&p,d=n.addClientIdParameter,h=void 0!==d&&d,f=function(e){return i(m,void 0,void 0,(function(){var t,n,o;return s(this,(function(i){switch(i.label){case 0:return t=[r({},e)],n={},c?[4,this.getCurrentVisitorId()]:[3,2];case 1:return o=i.sent(),[3,3];case 2:o="",i.label=3;case 3:return[2,r.apply(void 0,t.concat([(n.visitorId=o,n)]))]}}))}))},g=function(e){return i(m,void 0,void 0,(function(){var t,n;return s(this,(function(o){switch(o.label){case 0:return h?(t=[r({},e)],n={},[4,this.getCurrentVisitorId()]):[3,2];case 1:return[2,r.apply(void 0,t.concat([(n.clientId=o.sent(),n)]))];case 2:return[2,e]}}))}))},v=function(t){return m.beforeSendHooks.reduce((function(t,n){return i(m,void 0,void 0,(function(){var r;return s(this,(function(o){switch(o.label){case 0:return[4,t];case 1:return r=o.sent(),[4,n(e,r)];case 2:return[2,o.sent()]}}))}))}),t)},[4,[function(e){return a.length>0?m.parseVariableArgumentsPayload(a,e):e[0]},f,g,function(e){return l?m.ensureAnonymousUserWhenUsingApiKey(e):e},v].reduce((function(e,t){return i(m,void 0,void 0,(function(){var n;return s(this,(function(r){switch(r.label){case 0:return[4,e];case 1:return n=r.sent(),[4,t(n)];case 2:return[2,r.sent()]}}))}))}),Promise.resolve(t))];case 1:return[2,y.sent()]}}))}))},e.prototype.resolvePayloadForParameters=function(e,t){return i(this,void 0,void 0,(function(){var n,o,a,u=this;return s(this,(function(c){switch(c.label){case 0:return n=(this.eventTypeMapping[e]||{}).usesMeasurementProtocol,o=void 0!==n&&n,a=function(e){return o?(n=!!(t=e).action&&Q[t.action]||{},F(t).reduce((function(e,o){var i,s=n[o]||se[o]||o;return r(r({},e),((i={})[s]=t[o],i))}),{})):e;var t,n},[4,[function(t){return u.removeEmptyPayloadValues(t,e)},function(e){return u.validateParams(e)},a,function(e){return o?u.removeUnknownParameters(e):e},function(e){return o?u.processCustomParameters(e):e}].reduce((function(e,t){return i(u,void 0,void 0,(function(){var n;return s(this,(function(r){switch(r.label){case 0:return[4,e];case 1:return n=r.sent(),[4,t(n)];case 2:return[2,r.sent()]}}))}))}),Promise.resolve(t))];case 1:return[2,c.sent()]}}))}))},e.prototype.sendEvent=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];return i(this,void 0,void 0,(function(){var n,r,o,i;return s(this,(function(s){switch(s.label){case 0:return n=(this.eventTypeMapping[e]||{}).newEventType,r=void 0===n?e:n,[4,this.resolveParameters.apply(this,a([e],t))];case 1:return o=s.sent(),[4,this.resolvePayloadForParameters(e,o)];case 2:return i=s.sent(),this.bufferedRequests.push({eventType:r,payload:i}),[4,Promise.all(this.afterSendHooks.map((function(t){return t(e,o)})))];case 3:return s.sent(),[4,this.deferExecution()];case 4:return s.sent(),[4,this.sendFromBufferWithFetch()];case 5:return[2,s.sent()]}}))}))},e.prototype.deferExecution=function(){return new Promise((function(e){return setTimeout(e,0)}))},e.prototype.sendFromBufferWithFetch=function(){return i(this,void 0,void 0,(function(){var e,t,n;return s(this,(function(r){return(e=this.bufferedRequests.shift())?(t=e.eventType,n=e.payload,[2,this.runtime.client.sendEvent(t,n)]):[2]}))}))},e.prototype.clear=function(){this.storage.removeItem("visitorId"),(new C).clear()},e.prototype.deleteHttpOnlyVisitorId=function(){this.runtime.client.deleteHttpCookieVisitorId()},e.prototype.sendSearchEvent=function(e){return i(this,void 0,void 0,(function(){return s(this,(function(t){return[2,this.sendEvent(n.search,e)]}))}))},e.prototype.sendClickEvent=function(e){return i(this,void 0,void 0,(function(){return s(this,(function(t){return[2,this.sendEvent(n.click,e)]}))}))},e.prototype.sendCustomEvent=function(e){return i(this,void 0,void 0,(function(){return s(this,(function(t){return[2,this.sendEvent(n.custom,e)]}))}))},e.prototype.sendViewEvent=function(e){return i(this,void 0,void 0,(function(){return s(this,(function(t){return[2,this.sendEvent(n.view,e)]}))}))},e.prototype.getVisit=function(){return i(this,void 0,void 0,(function(){var e;return s(this,(function(t){switch(t.label){case 0:return[4,fetch(this.baseUrl+"/analytics/visit")];case 1:return[4,t.sent().json()];case 2:return e=t.sent(),this.visitorId=e.visitorId,[2,e]}}))}))},e.prototype.getHealth=function(){return i(this,void 0,void 0,(function(){return s(this,(function(e){switch(e.label){case 0:return[4,fetch(this.baseUrl+"/analytics/monitoring/health")];case 1:return[4,e.sent().json()];case 2:return[2,e.sent()]}}))}))},e.prototype.registerBeforeSendEventHook=function(e){this.beforeSendHooks.push(e)},e.prototype.registerAfterSendEventHook=function(e){this.afterSendHooks.push(e)},e.prototype.addEventTypeMapping=function(e,t){this.eventTypeMapping[e]=t},e.prototype.parseVariableArgumentsPayload=function(e,t){for(var n={},o=0,i=t.length;o<i;o++){var s=t[o];if("string"==typeof s)n[e[o]]=s;else if("object"==typeof s)return r(r({},n),s)}return n},e.prototype.isKeyAllowedEmpty=function(e,t){var r;return-1!==(((r={})[n.search]=["queryText"],r)[e]||[]).indexOf(t)},e.prototype.removeEmptyPayloadValues=function(e,t){var n=this;return Object.keys(e).filter((function(r){return n.isKeyAllowedEmpty(t,r)||null!=(o=e[r])&&""!==o;var o})).reduce((function(t,n){var o;return r(r({},t),((o={})[n]=e[n],o))}),{})},e.prototype.removeUnknownParameters=function(e){var t=Object.keys(e).filter((function(e){if(function(e){return a(re,O,[ue,ce]).some((function(t){return t(e)}))}(e))return!0;console.log(e,"is not processed by coveoua")})).reduce((function(t,n){var o;return r(r({},t),((o={})[n]=e[n],o))}),{});return t},e.prototype.processCustomParameters=function(e){var t,n=e.custom,i=o(e,["custom"]),s=this.lowercaseKeys(n),a=F(t=i).reduce((function(e,n){var o,i=pe(n);return r(r({},e),i?le(i,t[n]):((o={})[n]=t[n],o))}),{});return r(r({},s),a)},e.prototype.lowercaseKeys=function(e){return Object.keys(e||{}).reduce((function(t,n){var o;return r(r({},t),((o={})[n.toLowerCase()]=e[n],o))}),{})},e.prototype.validateParams=function(e){var t=e.anonymizeIp,n=o(e,["anonymizeIp"]);return void 0!==t&&-1==["0","false","undefined","null","{}","[]",""].indexOf((""+t).toLowerCase())&&(n.anonymizeIp=1),n},e.prototype.ensureAnonymousUserWhenUsingApiKey=function(e){var t,n=e.userId,r=o(e,["userId"]);return(null==(t=this.options.token)?void 0:t.startsWith("xx"))&&!n?(r.userId="anonymous",r):e},Object.defineProperty(e.prototype,"baseUrl",{get:function(){return be(this.options.endpoint,this.options.version)},enumerable:!1,configurable:!0}),e}(),Fe=Object.freeze({__proto__:null,Version:we,Endpoints:Ce,buildBaseUrl:be,CoveoAnalyticsClient:xe,default:xe}),Ae=function(e){return e.protocol+"//"+e.hostname+(0===e.pathname.indexOf("/")?e.pathname:"/"+e.pathname)+e.search},Te={pageview:"pageview",event:"event"},Le=function(){function e(e){var t=e.client,n=e.uuidGenerator,r=void 0===n?P:n;this.actionData={},this.client=t,this.uuidGenerator=r,this.pageViewId=r(),this.nextPageViewId=this.pageViewId,this.currentLocation=Ae(window.location),this.lastReferrer=document.referrer,this.addHooks()}return e.prototype.setAction=function(e,t){this.action=e,this.actionData=t},e.prototype.clearData=function(){this.clearPluginData(),this.action=void 0,this.actionData={}},e.prototype.getLocationInformation=function(e,t){return r({hitType:e},this.getNextValues(e,t))},e.prototype.updateLocationInformation=function(e,t){this.updateLocationForNextPageView(e,t)},e.prototype.getDefaultContextInformation=function(e){var t={title:document.title,encoding:document.characterSet},n={screenResolution:screen.width+"x"+screen.height,screenColor:screen.colorDepth+"-bit"},o={language:navigator.language,userAgent:navigator.userAgent},i={time:Date.now().toString(),eventId:this.uuidGenerator()};return r(r(r(r({},i),n),o),t)},e.prototype.updateLocationForNextPageView=function(e,t){var n=this.getNextValues(e,t),r=n.pageViewId,o=n.referrer,i=n.location;this.lastReferrer=o,this.pageViewId=r,this.currentLocation=i,e===Te.pageview&&(this.nextPageViewId=this.uuidGenerator(),this.hasSentFirstPageView=!0)},e.prototype.getNextValues=function(e,t){return{pageViewId:e===Te.pageview?this.nextPageViewId:this.pageViewId,referrer:e===Te.pageview&&this.hasSentFirstPageView?this.currentLocation:this.lastReferrer,location:e===Te.pageview?this.getCurrentLocationFromPayload(t):this.currentLocation}},e.prototype.getCurrentLocationFromPayload=function(e){if(e.page){return""+function(e){return e.split("/").slice(0,3).join("/")}(this.currentLocation)+e.page.replace(/^\/?(.*)$/,"/$1")}return Ae(window.location)},e}(),Oe=r({},Te),De=Object.keys(Oe).map((function(e){return Oe[e]})),Ve=function(e){function i(t){var n=t.client,r=t.uuidGenerator,o=void 0===r?P:r,i=e.call(this,{client:n,uuidGenerator:o})||this;return i.products=[],i.impressions=[],i}return t(i,e),i.prototype.addHooks=function(){this.addHooksForPageView(),this.addHooksForEvent(),this.addHooksForECEvents()},i.prototype.addProduct=function(e){this.products.push(e)},i.prototype.addImpression=function(e){this.impressions.push(e)},i.prototype.clearPluginData=function(){this.products=[],this.impressions=[]},i.prototype.addHooksForECEvents=function(){var e=this;this.client.registerBeforeSendEventHook((function(t){for(var n=[],r=1;r<arguments.length;r++)n[r-1]=arguments[r];var o=n[0];return-1!==De.indexOf(t)?e.addECDataToPayload(t,o):o})),this.client.registerAfterSendEventHook((function(t){for(var n=[],r=1;r<arguments.length;r++)n[r-1]=arguments[r];var o=n[0];return-1!==De.indexOf(t)&&e.updateLocationInformation(t,o),o}))},i.prototype.addHooksForPageView=function(){this.client.addEventTypeMapping(Oe.pageview,{newEventType:n.collect,variableLengthArgumentsNames:["page"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},i.prototype.addHooksForEvent=function(){this.client.addEventTypeMapping(Oe.event,{newEventType:n.collect,variableLengthArgumentsNames:["eventCategory","eventAction","eventLabel","eventValue"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},i.prototype.addECDataToPayload=function(e,t){var n=r(r(r(r({},this.getLocationInformation(e,t)),this.getDefaultContextInformation(e)),this.action?{action:this.action}:{}),this.actionData||{}),o=this.getProductPayload(),i=this.getImpressionPayload();return this.clearData(),r(r(r(r({},i),o),n),t)},i.prototype.getProductPayload=function(){var e=this;return this.products.map((function(t){return e.assureProductValidity(t)})).reduce((function(e,t,n){return r(r({},e),function(e,t){return F(e).reduce((function(n,o){var i,s="pr"+(t+1)+(D[o]||o);return r(r({},n),((i={})[s]=e[o],i))}),{})}(t,n))}),{})},i.prototype.getImpressionPayload=function(){var e=this;return this.getImpressionsByList().map((function(t){var n=t.impressions,i=o(t,["impressions"]);return r(r({},i),{impressions:n.map((function(t){return e.assureBaseImpressionValidity(t)}))})})).reduce((function(e,t,n){return r(r({},e),function(e,t,n){var o=e.impressions.reduce((function(e,o,i){return r(r({},e),B(o,t,i,n))}),{});return e.listName&&(o["il"+(t+1)+"nm"]=e.listName),o}(t,n,"pi"))}),{})},i.prototype.assureProductValidity=function(e){var t=e.position,n=o(e,["position"]);return void 0!==t&&t<1?(console.warn("The position for product '"+(e.name||e.id)+"' must be greater than 0 when provided."),n):e},i.prototype.assureBaseImpressionValidity=function(e){var t=e.position,n=o(e,["position"]);return void 0!==t&&t<1?(console.warn("The position for impression '"+(e.name||e.id)+"' must be greater than 0 when provided."),n):e},i.prototype.getImpressionsByList=function(){return this.impressions.reduce((function(e,t){var n=t.list,r=o(t,["list"]),i=e.find((function(e){return e.listName===n}));return i?i.impressions.push(r):e.push({listName:n,impressions:[r]}),e}),[])},i.Id="ec",i}(Le),Me=Ve,qe=r({},Te),_e=Object.keys(qe).map((function(e){return qe[e]})),Ne=function(e){function o(t){var n=t.client,r=t.uuidGenerator,o=void 0===r?P:r,i=e.call(this,{client:n,uuidGenerator:o})||this;return i.ticket={},i}return t(o,e),o.prototype.addHooks=function(){this.addHooksForEvent(),this.addHooksForPageView(),this.addHooksForSVCEvents()},o.prototype.setTicket=function(e){this.ticket=e},o.prototype.clearPluginData=function(){this.ticket={}},o.prototype.addHooksForSVCEvents=function(){var e=this;this.client.registerBeforeSendEventHook((function(t){for(var n=[],r=1;r<arguments.length;r++)n[r-1]=arguments[r];var o=n[0];return-1!==_e.indexOf(t)?e.addSVCDataToPayload(t,o):o})),this.client.registerAfterSendEventHook((function(t){for(var n=[],r=1;r<arguments.length;r++)n[r-1]=arguments[r];var o=n[0];return-1!==_e.indexOf(t)&&e.updateLocationInformation(t,o),o}))},o.prototype.addHooksForPageView=function(){this.client.addEventTypeMapping(qe.pageview,{newEventType:n.collect,variableLengthArgumentsNames:["page"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},o.prototype.addHooksForEvent=function(){this.client.addEventTypeMapping(qe.event,{newEventType:n.collect,variableLengthArgumentsNames:["eventCategory","eventAction","eventLabel","eventValue"],addVisitorIdParameter:!0,usesMeasurementProtocol:!0})},o.prototype.addSVCDataToPayload=function(e,t){var n,o=r(r(r(r({},this.getLocationInformation(e,t)),this.getDefaultContextInformation(e)),this.action?{svcAction:this.action}:{}),Object.keys(null!==(n=this.actionData)&&void 0!==n?n:{}).length>0?{svcActionData:this.actionData}:{}),i=this.getTicketPayload();return this.clearData(),r(r(r({},i),o),t)},o.prototype.getTicketPayload=function(){return e=this.ticket,F(e).filter((function(t){return void 0!==e[t]})).reduce((function(t,n){var o,i=A[n]||n;return r(r({},t),((o={})[i]=e[n],o))}),{});var e},o.Id="svc",o}(Le),Qe=Ne,Be=function(){function e(){var e;this.registeredPluginsMap=((e={})[Me.Id]=Me,e[Qe.Id]=Qe,e),this.requiredPlugins={}}return e.prototype.require=function(e,t){var n=this.registeredPluginsMap[e];if(!n)throw new Error('No plugin named "'+e+"\" is currently registered. If you use a custom plugin, use 'provide' first.");this.requiredPlugins[e]=new n(t)},e.prototype.provide=function(e,t){this.registeredPluginsMap[e]=t},e.prototype.clearRequired=function(){this.requiredPlugins={}},e.prototype.execute=function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var o=this.requiredPlugins[e];if(!o)throw new Error('The plugin "'+e+'" is not required. Check that you required it on initialization.');var i=o[t];if(!i)throw new Error('The function "'+t+'" does not exists on the plugin "'+e+'".');if("function"!=typeof i)throw new Error('"'+t+'" of the plugin "'+e+'" is not a function.');return i.apply(o,n)},e.DefaultPlugins=[Me.Id,Qe.Id],e}(),He=function(){function e(){this.plugins=new Be,this.params={}}return e.prototype.init=function(e,t){var o=this;if(!e)throw new Error("You must pass your token when you call 'init'");if("string"==typeof e?this.client=new xe({token:e,endpoint:this.getEndpoint(t)}):this.isAnalyticsClient(e)&&(this.client=e),!this.client)throw new Error("You must pass either your token or a valid object when you call 'init'");var i={client:this.client};this.plugins.clearRequired(),this.getPluginKeys(t).forEach((function(e){return o.plugins.require(e,i)})),this.client.registerBeforeSendEventHook((function(e,t){return r(r({},t),o.params)})),this.client.addEventTypeMapping(n.view,{newEventType:n.view,addClientIdParameter:!0})},e.prototype.isAnalyticsClient=function(e){return"object"==typeof e&&void 0!==e.sendEvent},e.prototype.getPluginKeys=function(e){return"string"==typeof e?Be.DefaultPlugins:Array.isArray(null==e?void 0:e.plugins)?e.plugins:Be.DefaultPlugins},e.prototype.getEndpoint=function(e){return"string"==typeof e?e||Ce.default:(null==e?void 0:e.endpoint)?e.endpoint:Ce.default},e.prototype.initForProxy=function(e){if(!e)throw new Error("You must pass your endpoint when you call 'initForProxy'");if("string"!=typeof e)throw new Error("You must pass a string as the endpoint parameter when you call 'initForProxy'");this.client=new xe({endpoint:e})},e.prototype.set=function(e,t){var n=this;"string"==typeof e?this.params[e]=t:Object.keys(e).map((function(t){n.params[t]=e[t]}))},e.prototype.send=function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];var r=t[0],o=t.slice(1);if(void 0===this.client)throw new Error("You must call init before sending an event");if(!r)throw new Error('You must provide an event type when calling "send".');return(e=this.client).sendEvent.apply(e,a([r.toLowerCase()],o))},e.prototype.onLoad=function(e){if(void 0===e)throw new Error("You must pass a function when you call 'onLoad'");e()},e.prototype.provide=function(e,t){this.plugins.provide(e,t)},e.prototype.require=function(e,t){if(!this.client)throw new Error("You must call init before requiring a plugin");this.plugins.require(e,r(r({},t),{client:this.client}))},e.prototype.callPlugin=function(e,t){for(var n,r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];(n=this.plugins).execute.apply(n,a([e,t],r))},e.prototype.reset=function(){this.client=void 0,this.plugins=new Be,this.params={}},e}(),Ue=new He,je=function(){return Ue.client},Ye=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];var r=/^(?:(\w+)\.)?(?:(\w+):)?(\w+)$/.exec(e);r[1];var o=r[2],i=r[3],s=Ue[i];if(o&&i)return Ue.callPlugin.apply(Ue,a([o,i],t));if(s)return s.apply(Ue,t);var u=["init","set","send","onLoad","callPlugin","reset","require","provide"];throw new Error('The action "'+e+'" does not exist. Available actions: '+u.join(", ")+".")},ze=Object.freeze({__proto__:null,CoveoUA:He,coveoua:Ue,getCurrentClient:je,handleOneAnalyticsEvent:Ye,default:Ye});!function(e){e.contextChanged="contextChanged",e.expandToFullUI="expandToFullUI"}(Ie||(Ie={})),function(e){e.interfaceLoad="interfaceLoad",e.interfaceChange="interfaceChange",e.didyoumeanAutomatic="didyoumeanAutomatic",e.didyoumeanClick="didyoumeanClick",e.resultsSort="resultsSort",e.searchboxSubmit="searchboxSubmit",e.searchboxClear="searchboxClear",e.searchboxAsYouType="searchboxAsYouType",e.breadcrumbFacet="breadcrumbFacet",e.breadcrumbResetAll="breadcrumbResetAll",e.documentQuickview="documentQuickview",e.documentOpen="documentOpen",e.omniboxAnalytics="omniboxAnalytics",e.omniboxFromLink="omniboxFromLink",e.searchFromLink="searchFromLink",e.triggerNotify="notify",e.triggerExecute="execute",e.triggerQuery="query",e.undoTriggerQuery="undoQuery",e.triggerRedirect="redirect",e.pagerResize="pagerResize",e.pagerNumber="pagerNumber",e.pagerNext="pagerNext",e.pagerPrevious="pagerPrevious",e.pagerScrolling="pagerScrolling",e.staticFilterClearAll="staticFilterClearAll",e.staticFilterSelect="staticFilterSelect",e.staticFilterDeselect="staticFilterDeselect",e.facetClearAll="facetClearAll",e.facetSearch="facetSearch",e.facetSelect="facetSelect",e.facetSelectAll="facetSelectAll",e.facetDeselect="facetDeselect",e.facetExclude="facetExclude",e.facetUnexclude="facetUnexclude",e.facetUpdateSort="facetUpdateSort",e.facetShowMore="showMoreFacetResults",e.facetShowLess="showLessFacetResults",e.queryError="query",e.queryErrorBack="errorBack",e.queryErrorClear="errorClearQuery",e.queryErrorRetry="errorRetry",e.recommendation="recommendation",e.recommendationInterfaceLoad="recommendationInterfaceLoad",e.recommendationOpen="recommendationOpen",e.likeSmartSnippet="likeSmartSnippet",e.dislikeSmartSnippet="dislikeSmartSnippet",e.expandSmartSnippet="expandSmartSnippet",e.collapseSmartSnippet="collapseSmartSnippet",e.openSmartSnippetFeedbackModal="openSmartSnippetFeedbackModal",e.closeSmartSnippetFeedbackModal="closeSmartSnippetFeedbackModal",e.sendSmartSnippetReason="sendSmartSnippetReason",e.expandSmartSnippetSuggestion="expandSmartSnippetSuggestion",e.collapseSmartSnippetSuggestion="collapseSmartSnippetSuggestion",e.showMoreSmartSnippetSuggestion="showMoreSmartSnippetSuggestion",e.showLessSmartSnippetSuggestion="showLessSmartSnippetSuggestion",e.openSmartSnippetSource="openSmartSnippetSource",e.openSmartSnippetSuggestionSource="openSmartSnippetSuggestionSource",e.openSmartSnippetInlineLink="openSmartSnippetInlineLink",e.openSmartSnippetSuggestionInlineLink="openSmartSnippetSuggestionInlineLink",e.recentQueryClick="recentQueriesClick",e.clearRecentQueries="clearRecentQueries",e.recentResultClick="recentResultClick",e.clearRecentResults="clearRecentResults",e.noResultsBack="noResultsBack",e.showMoreFoldedResults="showMoreFoldedResults",e.showLessFoldedResults="showLessFoldedResults"}(Pe||(Pe={}));var Ke=((Re={})[Pe.triggerNotify]="queryPipelineTriggers",Re[Pe.triggerExecute]="queryPipelineTriggers",Re[Pe.triggerQuery]="queryPipelineTriggers",Re[Pe.triggerRedirect]="queryPipelineTriggers",Re[Pe.queryError]="errors",Re[Pe.queryErrorBack]="errors",Re[Pe.queryErrorClear]="errors",Re[Pe.queryErrorRetry]="errors",Re[Pe.pagerNext]="getMoreResults",Re[Pe.pagerPrevious]="getMoreResults",Re[Pe.pagerNumber]="getMoreResults",Re[Pe.pagerResize]="getMoreResults",Re[Pe.pagerScrolling]="getMoreResults",Re[Pe.facetSearch]="facet",Re[Pe.facetShowLess]="facet",Re[Pe.facetShowMore]="facet",Re[Pe.recommendation]="recommendation",Re[Pe.likeSmartSnippet]="smartSnippet",Re[Pe.dislikeSmartSnippet]="smartSnippet",Re[Pe.expandSmartSnippet]="smartSnippet",Re[Pe.collapseSmartSnippet]="smartSnippet",Re[Pe.openSmartSnippetFeedbackModal]="smartSnippet",Re[Pe.closeSmartSnippetFeedbackModal]="smartSnippet",Re[Pe.sendSmartSnippetReason]="smartSnippet",Re[Pe.expandSmartSnippetSuggestion]="smartSnippetSuggestions",Re[Pe.collapseSmartSnippetSuggestion]="smartSnippetSuggestions",Re[Pe.showMoreSmartSnippetSuggestion]="smartSnippetSuggestions",Re[Pe.showLessSmartSnippetSuggestion]="smartSnippetSuggestions",Re[Pe.clearRecentQueries]="recentQueries",Re[Pe.recentResultClick]="recentlyClickedDocuments",Re[Pe.clearRecentResults]="recentlyClickedDocuments",Re[Pe.showLessFoldedResults]="folding",Re[Ie.expandToFullUI]="interface",Re),We=function(){function e(){this.runtime=new ye,this.currentVisitorId=""}return e.prototype.getPayload=function(){return Promise.resolve()},e.prototype.getParameters=function(){return Promise.resolve()},e.prototype.sendEvent=function(){return Promise.resolve()},e.prototype.sendSearchEvent=function(){return Promise.resolve()},e.prototype.sendClickEvent=function(){return Promise.resolve()},e.prototype.sendCustomEvent=function(){return Promise.resolve()},e.prototype.sendViewEvent=function(){return Promise.resolve()},e.prototype.getVisit=function(){return Promise.resolve({id:"",visitorId:""})},e.prototype.getHealth=function(){return Promise.resolve({status:""})},e.prototype.registerBeforeSendEventHook=function(){},e.prototype.registerAfterSendEventHook=function(){},e.prototype.addEventTypeMapping=function(){},e}();function $e(e){var t=e.join(";");return t.length<=256?t:$e(e.slice(1))}var Ge=function(e){var t=function(e){return e.map((function(e){return e.replace(/;/g,"")}))}(e),n=function(e){var t="";return e.filter((function(e){var n=e!==t;return t=e,n}))}(t);return $e(n)};function Je(e){var t="string"==typeof e.partialQueries?e.partialQueries:Ge(e.partialQueries),n="string"==typeof e.suggestions?e.suggestions:Ge(e.suggestions);return r(r({},e),{partialQueries:t,suggestions:n})}var Xe,Ze,et,tt=function(){function e(e,t){this.opts=e,this.provider=t;var n=!1===e.enableAnalytics||ke();this.coveoAnalyticsClient=n?new We:new xe(e)}return e.prototype.disable=function(){this.coveoAnalyticsClient instanceof xe&&this.coveoAnalyticsClient.clear(),this.coveoAnalyticsClient=new We},e.prototype.enable=function(){this.coveoAnalyticsClient=new xe(this.opts)},e.prototype.makeInterfaceLoad=function(){return this.makeSearchEvent(Pe.interfaceLoad)},e.prototype.logInterfaceLoad=function(){return this.makeInterfaceLoad().log()},e.prototype.makeRecommendationInterfaceLoad=function(){return this.makeSearchEvent(Pe.recommendationInterfaceLoad)},e.prototype.logRecommendationInterfaceLoad=function(){return this.makeRecommendationInterfaceLoad().log()},e.prototype.makeRecommendation=function(){return this.makeCustomEvent(Pe.recommendation)},e.prototype.logRecommendation=function(){return this.makeRecommendation().log()},e.prototype.makeRecommendationOpen=function(e,t){return this.makeClickEvent(Pe.recommendationOpen,e,t)},e.prototype.logRecommendationOpen=function(e,t){return this.makeRecommendationOpen(e,t).log()},e.prototype.makeStaticFilterClearAll=function(e){return this.makeSearchEvent(Pe.staticFilterClearAll,e)},e.prototype.logStaticFilterClearAll=function(e){return this.makeStaticFilterClearAll(e).log()},e.prototype.makeStaticFilterSelect=function(e){return this.makeSearchEvent(Pe.staticFilterSelect,e)},e.prototype.logStaticFilterSelect=function(e){return this.makeStaticFilterSelect(e).log()},e.prototype.makeStaticFilterDeselect=function(e){return this.makeSearchEvent(Pe.staticFilterDeselect,e)},e.prototype.logStaticFilterDeselect=function(e){return this.makeStaticFilterDeselect(e).log()},e.prototype.makeFetchMoreResults=function(){return this.makeCustomEvent(Pe.pagerScrolling,{type:"getMoreResults"})},e.prototype.logFetchMoreResults=function(){return this.makeFetchMoreResults().log()},e.prototype.makeInterfaceChange=function(e){return this.makeSearchEvent(Pe.interfaceChange,e)},e.prototype.logInterfaceChange=function(e){return this.makeInterfaceChange(e).log()},e.prototype.makeDidYouMeanAutomatic=function(){return this.makeSearchEvent(Pe.didyoumeanAutomatic)},e.prototype.logDidYouMeanAutomatic=function(){return this.makeDidYouMeanAutomatic().log()},e.prototype.makeDidYouMeanClick=function(){return this.makeSearchEvent(Pe.didyoumeanClick)},e.prototype.logDidYouMeanClick=function(){return this.makeDidYouMeanClick().log()},e.prototype.makeResultsSort=function(e){return this.makeSearchEvent(Pe.resultsSort,e)},e.prototype.logResultsSort=function(e){return this.makeResultsSort(e).log()},e.prototype.makeSearchboxSubmit=function(){return this.makeSearchEvent(Pe.searchboxSubmit)},e.prototype.logSearchboxSubmit=function(){return this.makeSearchboxSubmit().log()},e.prototype.makeSearchboxClear=function(){return this.makeSearchEvent(Pe.searchboxClear)},e.prototype.logSearchboxClear=function(){return this.makeSearchboxClear().log()},e.prototype.makeSearchboxAsYouType=function(){return this.makeSearchEvent(Pe.searchboxAsYouType)},e.prototype.logSearchboxAsYouType=function(){return this.makeSearchboxAsYouType().log()},e.prototype.makeBreadcrumbFacet=function(e){return this.makeSearchEvent(Pe.breadcrumbFacet,e)},e.prototype.logBreadcrumbFacet=function(e){return this.makeBreadcrumbFacet(e).log()},e.prototype.makeBreadcrumbResetAll=function(){return this.makeSearchEvent(Pe.breadcrumbResetAll)},e.prototype.logBreadcrumbResetAll=function(){return this.makeBreadcrumbResetAll().log()},e.prototype.makeDocumentQuickview=function(e,t){return this.makeClickEvent(Pe.documentQuickview,e,t)},e.prototype.logDocumentQuickview=function(e,t){return this.makeDocumentQuickview(e,t).log()},e.prototype.makeDocumentOpen=function(e,t){return this.makeClickEvent(Pe.documentOpen,e,t)},e.prototype.logDocumentOpen=function(e,t){return this.makeDocumentOpen(e,t).log()},e.prototype.makeOmniboxAnalytics=function(e){return this.makeSearchEvent(Pe.omniboxAnalytics,Je(e))},e.prototype.logOmniboxAnalytics=function(e){return this.makeOmniboxAnalytics(e).log()},e.prototype.makeOmniboxFromLink=function(e){return this.makeSearchEvent(Pe.omniboxFromLink,Je(e))},e.prototype.logOmniboxFromLink=function(e){return this.makeOmniboxFromLink(e).log()},e.prototype.makeSearchFromLink=function(){return this.makeSearchEvent(Pe.searchFromLink)},e.prototype.logSearchFromLink=function(){return this.makeSearchFromLink().log()},e.prototype.makeTriggerNotify=function(e){return this.makeCustomEvent(Pe.triggerNotify,e)},e.prototype.logTriggerNotify=function(e){return this.makeTriggerNotify(e).log()},e.prototype.makeTriggerExecute=function(e){return this.makeCustomEvent(Pe.triggerExecute,e)},e.prototype.logTriggerExecute=function(e){return this.makeTriggerExecute(e).log()},e.prototype.makeTriggerQuery=function(){return this.makeCustomEvent(Pe.triggerQuery,{query:this.provider.getSearchEventRequestPayload().queryText},"queryPipelineTriggers")},e.prototype.logTriggerQuery=function(){return this.makeTriggerQuery().log()},e.prototype.makeUndoTriggerQuery=function(e){return this.makeSearchEvent(Pe.undoTriggerQuery,e)},e.prototype.logUndoTriggerQuery=function(e){return this.makeUndoTriggerQuery(e).log()},e.prototype.makeTriggerRedirect=function(e){return this.makeCustomEvent(Pe.triggerRedirect,r(r({},e),{query:this.provider.getSearchEventRequestPayload().queryText}))},e.prototype.logTriggerRedirect=function(e){return this.makeTriggerRedirect(e).log()},e.prototype.makePagerResize=function(e){return this.makeCustomEvent(Pe.pagerResize,e)},e.prototype.logPagerResize=function(e){return this.makePagerResize(e).log()},e.prototype.makePagerNumber=function(e){return this.makeCustomEvent(Pe.pagerNumber,e)},e.prototype.logPagerNumber=function(e){return this.makePagerNumber(e).log()},e.prototype.makePagerNext=function(e){return this.makeCustomEvent(Pe.pagerNext,e)},e.prototype.logPagerNext=function(e){return this.makePagerNext(e).log()},e.prototype.makePagerPrevious=function(e){return this.makeCustomEvent(Pe.pagerPrevious,e)},e.prototype.logPagerPrevious=function(e){return this.makePagerPrevious(e).log()},e.prototype.makePagerScrolling=function(){return this.makeCustomEvent(Pe.pagerScrolling)},e.prototype.logPagerScrolling=function(){return this.makePagerScrolling().log()},e.prototype.makeFacetClearAll=function(e){return this.makeSearchEvent(Pe.facetClearAll,e)},e.prototype.logFacetClearAll=function(e){return this.makeFacetClearAll(e).log()},e.prototype.makeFacetSearch=function(e){return this.makeSearchEvent(Pe.facetSearch,e)},e.prototype.logFacetSearch=function(e){return this.makeFacetSearch(e).log()},e.prototype.makeFacetSelect=function(e){return this.makeSearchEvent(Pe.facetSelect,e)},e.prototype.logFacetSelect=function(e){return this.makeFacetSelect(e).log()},e.prototype.makeFacetDeselect=function(e){return this.makeSearchEvent(Pe.facetDeselect,e)},e.prototype.logFacetDeselect=function(e){return this.makeFacetDeselect(e).log()},e.prototype.makeFacetExclude=function(e){return this.makeSearchEvent(Pe.facetExclude,e)},e.prototype.logFacetExclude=function(e){return this.makeFacetExclude(e).log()},e.prototype.makeFacetUnexclude=function(e){return this.makeSearchEvent(Pe.facetUnexclude,e)},e.prototype.logFacetUnexclude=function(e){return this.makeFacetUnexclude(e).log()},e.prototype.makeFacetSelectAll=function(e){return this.makeSearchEvent(Pe.facetSelectAll,e)},e.prototype.logFacetSelectAll=function(e){return this.makeFacetSelectAll(e).log()},e.prototype.makeFacetUpdateSort=function(e){return this.makeSearchEvent(Pe.facetUpdateSort,e)},e.prototype.logFacetUpdateSort=function(e){return this.makeFacetUpdateSort(e).log()},e.prototype.makeFacetShowMore=function(e){return this.makeCustomEvent(Pe.facetShowMore,e)},e.prototype.logFacetShowMore=function(e){return this.makeFacetShowMore(e).log()},e.prototype.makeFacetShowLess=function(e){return this.makeCustomEvent(Pe.facetShowLess,e)},e.prototype.logFacetShowLess=function(e){return this.makeFacetShowLess(e).log()},e.prototype.makeQueryError=function(e){return this.makeCustomEvent(Pe.queryError,e)},e.prototype.logQueryError=function(e){return this.makeQueryError(e).log()},e.prototype.makeQueryErrorBack=function(){var e=this;return{description:this.makeDescription(Pe.queryErrorBack),log:function(){return i(e,void 0,void 0,(function(){return s(this,(function(e){switch(e.label){case 0:return[4,this.logCustomEvent(Pe.queryErrorBack)];case 1:return e.sent(),[2,this.logSearchEvent(Pe.queryErrorBack)]}}))}))}}},e.prototype.logQueryErrorBack=function(){return this.makeQueryErrorBack().log()},e.prototype.makeQueryErrorRetry=function(){var e=this;return{description:this.makeDescription(Pe.queryErrorRetry),log:function(){return i(e,void 0,void 0,(function(){return s(this,(function(e){switch(e.label){case 0:return[4,this.logCustomEvent(Pe.queryErrorRetry)];case 1:return e.sent(),[2,this.logSearchEvent(Pe.queryErrorRetry)]}}))}))}}},e.prototype.logQueryErrorRetry=function(){return this.makeQueryErrorRetry().log()},e.prototype.makeQueryErrorClear=function(){var e=this;return{description:this.makeDescription(Pe.queryErrorClear),log:function(){return i(e,void 0,void 0,(function(){return s(this,(function(e){switch(e.label){case 0:return[4,this.logCustomEvent(Pe.queryErrorClear)];case 1:return e.sent(),[2,this.logSearchEvent(Pe.queryErrorClear)]}}))}))}}},e.prototype.logQueryErrorClear=function(){return this.makeQueryErrorClear().log()},e.prototype.makeLikeSmartSnippet=function(){return this.makeCustomEvent(Pe.likeSmartSnippet)},e.prototype.logLikeSmartSnippet=function(){return this.makeLikeSmartSnippet().log()},e.prototype.makeDislikeSmartSnippet=function(){return this.makeCustomEvent(Pe.dislikeSmartSnippet)},e.prototype.logDislikeSmartSnippet=function(){return this.makeDislikeSmartSnippet().log()},e.prototype.makeExpandSmartSnippet=function(){return this.makeCustomEvent(Pe.expandSmartSnippet)},e.prototype.logExpandSmartSnippet=function(){return this.makeExpandSmartSnippet().log()},e.prototype.makeCollapseSmartSnippet=function(){return this.makeCustomEvent(Pe.collapseSmartSnippet)},e.prototype.logCollapseSmartSnippet=function(){return this.makeCollapseSmartSnippet().log()},e.prototype.makeOpenSmartSnippetFeedbackModal=function(){return this.makeCustomEvent(Pe.openSmartSnippetFeedbackModal)},e.prototype.logOpenSmartSnippetFeedbackModal=function(){return this.makeOpenSmartSnippetFeedbackModal().log()},e.prototype.makeCloseSmartSnippetFeedbackModal=function(){return this.makeCustomEvent(Pe.closeSmartSnippetFeedbackModal)},e.prototype.logCloseSmartSnippetFeedbackModal=function(){return this.makeCloseSmartSnippetFeedbackModal().log()},e.prototype.makeSmartSnippetFeedbackReason=function(e,t){return this.makeCustomEvent(Pe.sendSmartSnippetReason,{reason:e,details:t})},e.prototype.logSmartSnippetFeedbackReason=function(e,t){return this.makeSmartSnippetFeedbackReason(e,t).log()},e.prototype.makeExpandSmartSnippetSuggestion=function(e){return this.makeCustomEvent(Pe.expandSmartSnippetSuggestion,"documentId"in e?e:{documentId:e})},e.prototype.logExpandSmartSnippetSuggestion=function(e){return this.makeExpandSmartSnippetSuggestion(e).log()},e.prototype.makeCollapseSmartSnippetSuggestion=function(e){return this.makeCustomEvent(Pe.collapseSmartSnippetSuggestion,"documentId"in e?e:{documentId:e})},e.prototype.logCollapseSmartSnippetSuggestion=function(e){return this.makeCollapseSmartSnippetSuggestion(e).log()},e.prototype.makeShowMoreSmartSnippetSuggestion=function(e){return this.makeCustomEvent(Pe.showMoreSmartSnippetSuggestion,e)},e.prototype.logShowMoreSmartSnippetSuggestion=function(e){return this.makeShowMoreSmartSnippetSuggestion(e).log()},e.prototype.makeShowLessSmartSnippetSuggestion=function(e){return this.makeCustomEvent(Pe.showLessSmartSnippetSuggestion,e)},e.prototype.logShowLessSmartSnippetSuggestion=function(e){return this.makeShowLessSmartSnippetSuggestion(e).log()},e.prototype.makeOpenSmartSnippetSource=function(e,t){return this.makeClickEvent(Pe.openSmartSnippetSource,e,t)},e.prototype.logOpenSmartSnippetSource=function(e,t){return this.makeOpenSmartSnippetSource(e,t).log()},e.prototype.makeOpenSmartSnippetSuggestionSource=function(e,t){return this.makeClickEvent(Pe.openSmartSnippetSuggestionSource,e,{contentIDKey:t.documentId.contentIdKey,contentIDValue:t.documentId.contentIdValue},t)},e.prototype.logOpenSmartSnippetSuggestionSource=function(e,t){return this.makeOpenSmartSnippetSuggestionSource(e,t).log()},e.prototype.makeOpenSmartSnippetInlineLink=function(e,t){return this.makeClickEvent(Pe.openSmartSnippetInlineLink,e,{contentIDKey:t.contentIDKey,contentIDValue:t.contentIDValue},t)},e.prototype.logOpenSmartSnippetInlineLink=function(e,t){return this.makeOpenSmartSnippetInlineLink(e,t).log()},e.prototype.makeOpenSmartSnippetSuggestionInlineLink=function(e,t){return this.makeClickEvent(Pe.openSmartSnippetSuggestionInlineLink,e,{contentIDKey:t.documentId.contentIdKey,contentIDValue:t.documentId.contentIdValue},t)},e.prototype.logOpenSmartSnippetSuggestionInlineLink=function(e,t){return this.makeOpenSmartSnippetSuggestionInlineLink(e,t).log()},e.prototype.makeRecentQueryClick=function(){return this.makeSearchEvent(Pe.recentQueryClick)},e.prototype.logRecentQueryClick=function(){return this.makeRecentQueryClick().log()},e.prototype.makeClearRecentQueries=function(){return this.makeCustomEvent(Pe.clearRecentQueries)},e.prototype.logClearRecentQueries=function(){return this.makeClearRecentQueries().log()},e.prototype.makeRecentResultClick=function(e,t){return this.makeCustomEvent(Pe.recentResultClick,{info:e,identifier:t})},e.prototype.logRecentResultClick=function(e,t){return this.makeRecentResultClick(e,t).log()},e.prototype.makeClearRecentResults=function(){return this.makeCustomEvent(Pe.clearRecentResults)},e.prototype.logClearRecentResults=function(){return this.makeClearRecentResults().log()},e.prototype.makeNoResultsBack=function(){return this.makeSearchEvent(Pe.noResultsBack)},e.prototype.logNoResultsBack=function(){return this.makeNoResultsBack().log()},e.prototype.makeShowMoreFoldedResults=function(e,t){return this.makeClickEvent(Pe.showMoreFoldedResults,e,t)},e.prototype.logShowMoreFoldedResults=function(e,t){return this.makeShowMoreFoldedResults(e,t).log()},e.prototype.makeShowLessFoldedResults=function(){return this.makeCustomEvent(Pe.showLessFoldedResults)},e.prototype.logShowLessFoldedResults=function(){return this.makeShowLessFoldedResults().log()},e.prototype.makeCustomEvent=function(e,t,n){var o=this;void 0===n&&(n=Ke[e]);var a=r(r({},this.provider.getBaseMetadata()),t);return{description:this.makeDescription(e,t),log:function(){return i(o,void 0,void 0,(function(){var t,o;return s(this,(function(i){switch(i.label){case 0:return o=[{}],[4,this.getBaseCustomEventRequest(a)];case 1:return t=r.apply(void 0,[r.apply(void 0,o.concat([i.sent()])),{eventType:n,eventValue:e}]),[2,this.coveoAnalyticsClient.sendCustomEvent(t)]}}))}))}}},e.prototype.logCustomEvent=function(e,t,n){return void 0===n&&(n=Ke[e]),this.makeCustomEvent(e,t,n).log()},e.prototype.makeCustomEventWithType=function(e,t,n){var o=this,a=r(r({},this.provider.getBaseMetadata()),n);return{description:{actionCause:e,customData:a},log:function(){return i(o,void 0,void 0,(function(){var n,o;return s(this,(function(i){switch(i.label){case 0:return o=[{}],[4,this.getBaseCustomEventRequest(a)];case 1:return n=r.apply(void 0,[r.apply(void 0,o.concat([i.sent()])),{eventType:t,eventValue:e}]),[2,this.coveoAnalyticsClient.sendCustomEvent(n)]}}))}))}}},e.prototype.logCustomEventWithType=function(e,t,n){return this.makeCustomEventWithType(e,t,n).log()},e.prototype.logSearchEvent=function(e,t){return i(this,void 0,void 0,(function(){var n,r;return s(this,(function(o){switch(o.label){case 0:return r=(n=this.coveoAnalyticsClient).sendSearchEvent,[4,this.getBaseSearchEventRequest(e,t)];case 1:return[2,r.apply(n,[o.sent()])]}}))}))},e.prototype.makeDescription=function(e,t){return{actionCause:e,customData:r(r({},this.provider.getBaseMetadata()),t)}},e.prototype.makeSearchEvent=function(e,t){var n=this;return{description:this.makeDescription(e,t),log:function(){return n.logSearchEvent(e,t)}}},e.prototype.logClickEvent=function(e,t,n,o){return i(this,void 0,void 0,(function(){var i,a;return s(this,(function(s){switch(s.label){case 0:return a=[r({},t)],[4,this.getBaseEventRequest(r(r({},n),o))];case 1:return i=r.apply(void 0,[r.apply(void 0,a.concat([s.sent()])),{searchQueryUid:this.provider.getSearchUID(),queryPipeline:this.provider.getPipeline(),actionCause:e}]),[2,this.coveoAnalyticsClient.sendClickEvent(i)]}}))}))},e.prototype.makeClickEvent=function(e,t,n,o){var i=this;return{description:this.makeDescription(e,r(r({},n),o)),log:function(){return i.logClickEvent(e,t,n,o)}}},e.prototype.getBaseSearchEventRequest=function(e,t){return i(this,void 0,void 0,(function(){var n;return s(this,(function(o){switch(o.label){case 0:return n=[{}],[4,this.getBaseEventRequest(t)];case 1:return[2,r.apply(void 0,[r.apply(void 0,[r.apply(void 0,n.concat([o.sent()])),this.provider.getSearchEventRequestPayload()]),{searchQueryUid:this.provider.getSearchUID(),queryPipeline:this.provider.getPipeline(),actionCause:e}])]}}))}))},e.prototype.getBaseCustomEventRequest=function(e){return i(this,void 0,void 0,(function(){var t;return s(this,(function(n){switch(n.label){case 0:return t=[{}],[4,this.getBaseEventRequest(e)];case 1:return[2,r.apply(void 0,[r.apply(void 0,t.concat([n.sent()])),{lastSearchQueryUid:this.provider.getSearchUID()}])]}}))}))},e.prototype.getBaseEventRequest=function(e){return i(this,void 0,void 0,(function(){var t,n,o;return s(this,(function(i){switch(i.label){case 0:return t=r(r({},this.provider.getBaseMetadata()),e),n=[r(r({},this.getOrigins()),this.getSplitTestRun())],o={customData:t,language:this.provider.getLanguage(),facetState:this.provider.getFacetState?this.provider.getFacetState():[],anonymous:this.provider.getIsAnonymous()},[4,this.getClientId()];case 1:return[2,r.apply(void 0,n.concat([(o.clientId=i.sent(),o)]))]}}))}))},e.prototype.getOrigins=function(){var e,t;return{originContext:null===(t=(e=this.provider).getOriginContext)||void 0===t?void 0:t.call(e),originLevel1:this.provider.getOriginLevel1(),originLevel2:this.provider.getOriginLevel2(),originLevel3:this.provider.getOriginLevel3()}},e.prototype.getClientId=function(){return this.coveoAnalyticsClient instanceof xe?this.coveoAnalyticsClient.getCurrentVisitorId():void 0},e.prototype.getSplitTestRun=function(){var e=this.provider.getSplitTestRunName?this.provider.getSplitTestRunName():"",t=this.provider.getSplitTestRunVersion?this.provider.getSplitTestRunVersion():"";return r(r({},e&&{splitTestRunName:e}),t&&{splitTestRunVersion:t})},e}();!function(e){e.click="click",e.flowStart="flowStart"}(Xe||(Xe={})),function(e){e.enterInterface="ticket_create_start",e.fieldUpdate="ticket_field_update",e.fieldSuggestionClick="ticket_classification_click",e.suggestionClick="suggestion_click",e.suggestionRate="suggestion_rate",e.nextCaseStep="ticket_next_stage",e.caseCancelled="ticket_cancel",e.caseSolved="ticket_cancel",e.caseCreated="ticket_create"}(Ze||(Ze={})),function(e){e.quit="Quit",e.solved="Solved"}(et||(et={}));var nt=function(){function e(e,t){var n;this.options=e,this.provider=t;var r=(null===(n=e.enableAnalytics)||void 0===n||n)&&!ke();this.coveoAnalyticsClient=r?new xe(e):new We,this.svc=new Ne({client:this.coveoAnalyticsClient})}return e.prototype.disable=function(){this.coveoAnalyticsClient instanceof xe&&this.coveoAnalyticsClient.clear(),this.coveoAnalyticsClient=new We,this.svc=new Ne({client:this.coveoAnalyticsClient})},e.prototype.enable=function(){this.coveoAnalyticsClient=new xe(this.options),this.svc=new Ne({client:this.coveoAnalyticsClient})},e.prototype.logEnterInterface=function(e){return this.svc.setAction(Ze.enterInterface),this.svc.setTicket(e.ticket),this.sendFlowStartEvent()},e.prototype.logUpdateCaseField=function(e){return this.svc.setAction(Ze.fieldUpdate,{fieldName:e.fieldName}),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.logSelectFieldSuggestion=function(e){return this.svc.setAction(Ze.fieldSuggestionClick,e.suggestion),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.logSelectDocumentSuggestion=function(e){return this.svc.setAction(Ze.suggestionClick,e.suggestion),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.logRateDocumentSuggestion=function(e){return this.svc.setAction(Ze.suggestionRate,r({rate:e.rating},e.suggestion)),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.logMoveToNextCaseStep=function(e){return this.svc.setAction(Ze.nextCaseStep,{stage:null==e?void 0:e.stage}),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.logCaseCancelled=function(e){return this.svc.setAction(Ze.caseCancelled,{reason:et.quit}),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.logCaseSolved=function(e){return this.svc.setAction(Ze.caseSolved,{reason:et.solved}),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.logCaseCreated=function(e){return this.svc.setAction(Ze.caseCreated),this.svc.setTicket(e.ticket),this.sendClickEvent()},e.prototype.sendFlowStartEvent=function(){return this.coveoAnalyticsClient.sendEvent("event","svc",Xe.flowStart,this.provider?{searchHub:this.provider.getOriginLevel1()}:null)},e.prototype.sendClickEvent=function(){return this.coveoAnalyticsClient.sendEvent("event","svc",Xe.click,this.provider?{searchHub:this.provider.getOriginLevel1()}:null)},e}(),rt=function(e,t){void 0===t&&(t=!0),e.caseContext;var n=e.caseId,i=e.caseNumber,s=o(e,["caseContext","caseId","caseNumber"]),a=function(e){var t={};return e.caseContext&&Object.keys(e.caseContext).forEach((function(n){var r,o=null===(r=e.caseContext)||void 0===r?void 0:r[n];o&&(t["context_"+n]=o)})),t}(e);return r(r(r({CaseId:n,CaseNumber:i},s),!!a.context_Case_Subject&&{CaseSubject:a.context_Case_Subject}),t&&a)},ot=function(){function e(e,t){this.opts=e,this.provider=t;var n=!1===e.enableAnalytics||ke();this.coveoAnalyticsClient=n?new We:new xe(e)}return e.prototype.disable=function(){this.coveoAnalyticsClient instanceof xe&&this.coveoAnalyticsClient.clear(),this.coveoAnalyticsClient=new We},e.prototype.enable=function(){this.coveoAnalyticsClient=new xe(this.opts)},e.prototype.logInterfaceLoad=function(e){if(e){var t=rt(e);return this.logSearchEvent(Pe.interfaceLoad,t)}return this.logSearchEvent(Pe.interfaceLoad)},e.prototype.logInterfaceChange=function(e){var t=rt(e);return this.logSearchEvent(Pe.interfaceChange,t)},e.prototype.logStaticFilterDeselect=function(e){var t=rt(e);return this.logSearchEvent(Pe.staticFilterDeselect,t)},e.prototype.logFetchMoreResults=function(e){if(e){var t=rt(e);return this.logCustomEvent(Pe.pagerScrolling,r(r({},t),{type:"getMoreResults"}))}return this.logCustomEvent(Pe.pagerScrolling,{type:"getMoreResults"})},e.prototype.logBreadcrumbFacet=function(e){var t=rt(e);return this.logSearchEvent(Pe.breadcrumbFacet,t)},e.prototype.logBreadcrumbResetAll=function(e){if(e){var t=rt(e);return this.logSearchEvent(Pe.breadcrumbResetAll,t)}return this.logSearchEvent(Pe.breadcrumbResetAll)},e.prototype.logFacetSelect=function(e){var t=rt(e);return this.logSearchEvent(Pe.facetSelect,t)},e.prototype.logFacetDeselect=function(e){var t=rt(e);return this.logSearchEvent(Pe.facetDeselect,t)},e.prototype.logFacetUpdateSort=function(e){var t=rt(e);return this.logSearchEvent(Pe.facetUpdateSort,t)},e.prototype.logFacetClearAll=function(e){var t=rt(e);return this.logSearchEvent(Pe.facetClearAll,t)},e.prototype.logFacetShowMore=function(e){var t=rt(e,!1);return this.logCustomEvent(Pe.facetShowMore,t)},e.prototype.logFacetShowLess=function(e){var t=rt(e,!1);return this.logCustomEvent(Pe.facetShowLess,t)},e.prototype.logQueryError=function(e){var t=rt(e,!1);return this.logCustomEvent(Pe.queryError,t)},e.prototype.logPagerNumber=function(e){var t=rt(e,!1);return this.logCustomEvent(Pe.pagerNumber,t)},e.prototype.logPagerNext=function(e){var t=rt(e,!1);return this.logCustomEvent(Pe.pagerNext,t)},e.prototype.logPagerPrevious=function(e){var t=rt(e,!1);return this.logCustomEvent(Pe.pagerPrevious,t)},e.prototype.logDidYouMeanAutomatic=function(e){if(e){var t=rt(e);return this.logSearchEvent(Pe.didyoumeanAutomatic,t)}return this.logSearchEvent(Pe.didyoumeanAutomatic)},e.prototype.logDidYouMeanClick=function(e){if(e){var t=rt(e);return this.logSearchEvent(Pe.didyoumeanClick,t)}return this.logSearchEvent(Pe.didyoumeanClick)},e.prototype.logResultsSort=function(e){var t=rt(e);return this.logSearchEvent(Pe.resultsSort,t)},e.prototype.logSearchboxSubmit=function(e){if(e){var t=rt(e);return this.logSearchEvent(Pe.searchboxSubmit,t)}return this.logSearchEvent(Pe.searchboxSubmit)},e.prototype.logContextChanged=function(e){var t=rt(e);return this.logSearchEvent(Ie.contextChanged,t)},e.prototype.logExpandToFullUI=function(e){var t=rt(e);return this.logCustomEvent(Ie.expandToFullUI,t)},e.prototype.logCustomEvent=function(e,t){return i(this,void 0,void 0,(function(){var n,o,i;return s(this,(function(s){switch(s.label){case 0:return n=r(r({},this.provider.getBaseMetadata()),t),i=[{}],[4,this.getBaseCustomEventRequest(n)];case 1:return o=r.apply(void 0,[r.apply(void 0,i.concat([s.sent()])),{eventType:Ke[e],eventValue:e}]),[2,this.coveoAnalyticsClient.sendCustomEvent(o)]}}))}))},e.prototype.logSearchEvent=function(e,t){return i(this,void 0,void 0,(function(){var n,r;return s(this,(function(o){switch(o.label){case 0:return r=(n=this.coveoAnalyticsClient).sendSearchEvent,[4,this.getBaseSearchEventRequest(e,t)];case 1:return[2,r.apply(n,[o.sent()])]}}))}))},e.prototype.getBaseCustomEventRequest=function(e){return i(this,void 0,void 0,(function(){var t;return s(this,(function(n){switch(n.label){case 0:return t=[{}],[4,this.getBaseEventRequest(e)];case 1:return[2,r.apply(void 0,[r.apply(void 0,t.concat([n.sent()])),{lastSearchQueryUid:this.provider.getSearchUID()}])]}}))}))},e.prototype.getBaseSearchEventRequest=function(e,t){return i(this,void 0,void 0,(function(){var n;return s(this,(function(o){switch(o.label){case 0:return n=[{}],[4,this.getBaseEventRequest(t)];case 1:return[2,r.apply(void 0,[r.apply(void 0,[r.apply(void 0,n.concat([o.sent()])),this.provider.getSearchEventRequestPayload()]),{searchQueryUid:this.provider.getSearchUID(),queryPipeline:this.provider.getPipeline(),actionCause:e}])]}}))}))},e.prototype.getBaseEventRequest=function(e){return i(this,void 0,void 0,(function(){var t,n,o;return s(this,(function(i){switch(i.label){case 0:return t=r(r({},this.provider.getBaseMetadata()),e),n=[r({},this.getOrigins())],o={customData:t,language:this.provider.getLanguage(),facetState:this.provider.getFacetState?this.provider.getFacetState():[],anonymous:this.provider.getIsAnonymous()},[4,this.getClientId()];case 1:return[2,r.apply(void 0,n.concat([(o.clientId=i.sent(),o)]))]}}))}))},e.prototype.getOrigins=function(){var e,t;return{originContext:null===(t=(e=this.provider).getOriginContext)||void 0===t?void 0:t.call(e),originLevel1:this.provider.getOriginLevel1(),originLevel2:this.provider.getOriginLevel2(),originLevel3:this.provider.getOriginLevel3()}},e.prototype.getClientId=function(){return this.coveoAnalyticsClient instanceof xe?this.coveoAnalyticsClient.getCurrentVisitorId():void 0},e}(),it=Object.freeze({__proto__:null,analytics:Fe,donottrack:Ee,history:b,SimpleAnalytics:ze,storage:E,CoveoAnalyticsClient:xe,CoveoUA:He,getCurrentClient:je,handleOneAnalyticsEvent:Ye,CoveoSearchPageClient:tt,CaseAssistClient:nt,CoveoInsightClient:ot});window.Promise instanceof Function||console.error('This script uses window.Promise which is not supported in your browser. Consider adding a polyfill like "es6-promise".'),window.fetch instanceof Function||console.error('This script uses window.fetch which is not supported in your browser. Consider adding a polyfill like "fetch".');var st=self.coveoua||Ye;(self.coveoua=Ye,self.coveoanalytics=it,st.q)&&a(st.q.filter((function(e){return"init"===e[0]})),st.q.filter((function(e){return"init"!==e[0]}))).forEach((function(e){return Ye.apply(void 0,e)}));return self.coveoua}();
|
|
2
2
|
//# sourceMappingURL=coveoua.browser.js.map
|