@coveo/quantic 3.30.3-pre.b2d577dca0 → 3.30.3-pre.b400a05b95
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/docs/out/quantic-docs.json +6440 -0
- package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/utilities.d.ts +0 -3
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-commerce-next.index.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/factories/build-factory.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/factories/hydrated-state-factory.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/factories/recommendation-static-state-factory.d.ts +6 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/factories/static-state-factory.d.ts +2 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/controller-definitions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/engine.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/fetch-static-state.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/hydrate-static-state.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/types/utilities.d.ts +5 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/types/build.d.ts +2 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/types/fetch-static-state.d.ts +2 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/types/hydrate-static-state.d.ts +2 -1
- package/force-app/main/default/staticresources/coveoheadless/headless.js +2 -2
- package/force-app/main/default/staticresources/coveoheadless/insight/headless.js +2 -2
- package/force-app/main/default/staticresources/coveoheadless/recommendation/headless.js +2 -2
- package/package.json +2 -2
|
@@ -24,7 +24,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
24
24
|
|
|
25
25
|
${t}
|
|
26
26
|
`;return new vn(r)}var vn=class extends Error{constructor(e){super(e),this.name="SchemaValidationError"}},Se=class{constructor(e){this.definition=e}validate(e={},t=""){let r={...this.default,...e},n=[];for(let o in this.definition){let a=this.definition[o].validate(r[o]);a&&n.push(`${o}: ${a}`)}if(n.length)throw Nb(n,t);return r}get default(){let e={};for(let t in this.definition){let r=this.definition[t].default;r!==void 0&&(e[t]=r)}return e}},Ie=class{constructor(e={}){this.baseConfig=e}validate(e){return this.baseConfig.required&&K(e)?"value is required.":null}get default(){return this.baseConfig.default instanceof Function?this.baseConfig.default():this.baseConfig.default}get required(){return this.baseConfig.required===!0}};function Xn(e){return e===void 0}function Mb(e){return e===null}function K(e){return Xn(e)||Mb(e)}var ae=class{constructor(e={}){xe(this,"value");this.value=new Ie(e)}validate(e){let t=this.value.validate(e);return t||(Qb(e)?null:"value is not a boolean.")}get default(){return this.value.default}get required(){return this.value.required}};function Qb(e){return Xn(e)||rg(e)}function rg(e){return typeof e=="boolean"}var Z=class{constructor(e={}){xe(this,"value");this.config=e,this.value=new Ie(e)}validate(e){let t=this.value.validate(e);return t||(Lb(e)?e<this.config.min?`minimum value of ${this.config.min} not respected.`:e>this.config.max?`maximum value of ${this.config.max} not respected.`:null:"value is not a number.")}get default(){return this.value.default}get required(){return this.value.required}};function Lb(e){return Xn(e)||ng(e)}function ng(e){return typeof e=="number"&&!Number.isNaN(e)}var _b=/^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z)?)?)?)?$/i,N=class{constructor(e={}){xe(this,"value");xe(this,"config");this.config={emptyAllowed:!0,url:!1,...e},this.value=new Ie(this.config)}validate(e){let{emptyAllowed:t,url:r,regex:n,constrainTo:o,ISODate:a}=this.config,d=this.value.validate(e);if(d)return d;if(Xn(e))return null;if(!Zn(e))return"value is not a string.";if(!t&&!e.length)return"value is an empty string.";if(r)try{new URL(e)}catch{return"value is not a valid URL."}return n&&!n.test(e)?`value did not match provided regex ${n}`:o&&!o.includes(e)?`value should be one of: ${o.join(", ")}.`:a&&!(_b.test(e)&&new Date(e).toString()!=="Invalid Date")?"value is not a valid ISO8601 date string":null}get default(){return this.value.default}get required(){return this.value.required}};function Zn(e){return Object.prototype.toString.call(e)==="[object String]"}var U=class{constructor(e={}){xe(this,"config");this.config={options:{required:!1},values:{},...e}}validate(e){if(Xn(e))return this.config.options.required?"value is required and is currently undefined":null;if(!og(e))return"value is not an object";for(let[r,n]of Object.entries(this.config.values))if(n.required&&K(e[r]))return`value does not contain ${r}`;let t="";for(let[r,n]of Object.entries(this.config.values)){let o=e[r],a=n.validate(o);a!==null&&(t+=` ${a}`)}return t===""?null:t}get default(){}get required(){return!!this.config.options.required}};function og(e){return e!==void 0&&typeof e=="object"}var te=class{constructor(e={}){xe(this,"value");this.config=e,this.value=new Ie(this.config)}validate(e){if(!K(e)&&!Array.isArray(e))return"value is not an array";let t=this.value.validate(e);if(t!==null)return t;if(K(e))return null;if(this.config.max!==void 0&&e.length>this.config.max)return`value contains more than ${this.config.max}`;if(this.config.min!==void 0&&e.length<this.config.min)return`value contains less than ${this.config.min}`;if(this.config.each!==void 0){let r="";return e.forEach(n=>{this.config.each.required&&K(n)&&(r=`value is null or undefined: ${e.join(",")}`);let o=this.validatePrimitiveValue(n,this.config.each);o!==null&&(r+=` ${o}`)}),r===""?null:r}return null}validatePrimitiveValue(e,t){return rg(e)||Zn(e)||ng(e)||og(e)?t.validate(e):"value is not a primitive value"}get default(){}get required(){return this.value.required}};function eo(e){return Array.isArray(e)}var Dr=class{constructor(e){xe(this,"value");this.config=e,this.value=new Ie(e)}validate(e){let t=this.value.validate(e);return t!==null?t:Xn(e)||Object.values(this.config.enum).find(n=>n===e)?null:"value is not in enum."}get default(){return this.value.default}get required(){return this.value.required}};l();s();u();c();var ts=(e,t=5)=>e+Math.random().toString(36).substring(2,2+t);function rs(e){return Array.isArray(e)}function ns(e){return e.trim()===""}function ag(e,t){return[...e.reduce((r,n)=>{let o=t(n);return r.has(o)||r.set(o,n),r},new Map).values()]}function Ub(e){return btoa(encodeURI(e))}function os(e,t){let{[e]:r,...n}=t;return n}function to(e){return Ub(JSON.stringify(e))}var Bb=new Set(["1",1,"yes",!0]);function ig(){if(typeof navigator>"u"||typeof window>"u")return!1;let e=navigator,t=window;return[e.globalPrivacyControl,e.doNotTrack,e.msDoNotTrack,t.doNotTrack].some(r=>Bb.has(r))}function sg(e){let t={};for(let[r,n]of e)t[r]=n;return t}function cg(e,t,r){return clearTimeout(t),setTimeout(e,r)}function Qa(e){if(typeof e!="object"||!e)return e;try{return JSON.parse(JSON.stringify(e))}catch{return e}}function $b(e){if(ns(e.openingDelimiter)||ns(e.closingDelimiter))throw Error("delimiters should be a non-empty string");if(K(e.content)||ns(e.content))return e.content;if(e.highlights.length===0)return ro(e.content);let t=e.content.length,r="",n=0;for(let o=0;o<e.highlights.length;o++){let a=e.highlights[o],d=a.offset,p=d+a.length;if(p>t)break;r+=ro(e.content.slice(n,d)),r+=e.openingDelimiter,r+=ro(e.content.slice(d,p)),r+=e.closingDelimiter,n=p}return n!==t&&(r+=ro(e.content.slice(n))),r}function Pd(e,t){return e=ro(e),e.replace(/\[(.*?)\]|\{(.*?)\}|\((.*?)\)/g,(r,n,o,a)=>n?wd(n,t.notMatchDelimiters):o?wd(o,t.exactMatchDelimiters):a?wd(a,t.correctionDelimiters):r)}function wd(e,t){return t?t.open+e+t.close:e}function ro(e){let t={"&":"&","<":"<",">":">","\"":""","'":"'","`":"`"},r=`(?:${Object.keys(t).join("|")})`,n=RegExp(r),o=RegExp(r,"g");return n.test(e)?e.replace(o,a=>t[a]):e}l();s();u();c();l();s();u();c();l();s();u();c();l();s();u();c();function lg(_x2,_x3){return _lg.apply(this,arguments)}function _lg(){_lg=_asyncToGenerator(function*(e,t){let r=e.getReader(),n;for(;!(n=yield r.read()).done;)t(n.value)});return _lg.apply(this,arguments)}function dg(e){let t,r,n,o=!1;return function(d){t===void 0?(t=d,r=0,n=-1):t=Gb(t,d);let p=t.length,m=0;for(;r<p;){o&&(t[r]===10&&(m=++r),o=!1);let f=-1;for(;r<p&&f===-1;++r)switch(t[r]){case 58:n===-1&&(n=r-m);break;case 13:o=!0,f=r;break;case 10:f=r;break}if(f===-1)break;e(t.subarray(m,f),n),m=r,n=-1}m===p?t=void 0:m!==0&&(t=t.subarray(m),r-=m)}}function pg(e,t,r){let n=ug(),o=new TextDecoder;return function(d,p){if(d.length===0)r?.(n),n=ug();else if(p>0){let m=o.decode(d.subarray(0,p)),f=p+(d[p+1]===32?2:1),g=o.decode(d.subarray(f));switch(m){case"data":n.data=n.data?`${n.data}
|
|
27
|
-
${g}`:g;break;case"event":n.event=g;break;case"id":e(n.id=g);break;case"retry":Hb(g,n,t);break}}}}function Hb(e,t,r){let n=parseInt(e,10);Number.isNaN(n)||r(t.retry=n)}function Gb(e,t){let r=new Uint8Array(e.length+t.length);return r.set(e),r.set(t,e.length),r}function ug(){return{data:"",event:"",id:"",retry:void 0}}var qd="text/event-stream",zb=1e3,mg="last-event-id";function fg(){return typeof window<"u"}function as(e,{signal:t,headers:r,onopen:n,onmessage:o,onclose:a,onerror:d,openWhenHidden:p,fetch:m,...f}){return new Promise((g,A)=>{let v={...r};v.accept||(v.accept=qd);let C;function R(){C?.abort(),document.hidden||q()}!p&&fg()&&document.addEventListener("visibilitychange",R);let b=zb,x;function F(){fg()&&document.removeEventListener("visibilitychange",R),clearTimeout(x),C?.abort()}t?.addEventListener("abort",()=>{F(),g()});let P=m??h,I=n??Wb;function q(){return _q2.apply(this,arguments)}function _q2(){_q2=_asyncToGenerator(function*(){C=i.AbortController?new i.AbortController:null;try{let M=yield P(e,{...f,headers:v,signal:C?.signal});yield I(M),yield lg(M.body,dg(pg(D=>{D?v[mg]=D:delete v[mg]},D=>{b=D},o))),a?.(),F(),g()}catch(M){if(!C?.signal?.aborted)try{let D=d?.(M)??b;clearTimeout(x),x=setTimeout(q,D)}catch(D){F(),A(D)}}});return _q2.apply(this,arguments)}q()})}function Wb(e){let t=e.headers.get("content-type");if(!t?.startsWith(qd))throw new Error(`Expected content-type to be ${qd}, Actual: ${t}`)}l();s();u();c();var jr=class{constructor(t){xe(this,"_basePath");xe(this,"_params",{});this._basePath=t}addParam(t,r){this._params={...this.params,[t]:r}}get basePath(){return this._basePath}get params(){return this._params}get hasParams(){return Object.entries(this._params).length}get href(){return this.hasParams?`${this.basePath}?${Object.entries(this.params).map(([t,r])=>`${t}=${encodeURIComponent(r)}`).join("&")}`:this.basePath}};var Yb=(e,t,r)=>new jr(`${e}/rest/organizations/${t}/machinelearning/streaming/${r}`).href,gg=3,Kb=5e3,Jb="text/event-stream",Od=1,Td=class extends Error{},La=class extends Error{constructor(r){super(r.message);this.payload=r}},kd=class{constructor(){xe(this,"timeouts",new Set)}add(t){this.timeouts.add(t)}remove(t){clearTimeout(t),this.timeouts.delete(t)}isActive(t){return this.timeouts.has(t)}},is=class{constructor(t){xe(this,"logger");this.logger=t.logger}streamGeneratedAnswer(t,r){let{url:n,organizationId:o,streamId:a,accessToken:d}=t,{write:p,abort:m,close:f,resetAnswer:g}=r,A=new kd;if(!a){this.logger.error("No stream ID found");return}let v=0,C,R=()=>{C&&!A.isActive(C)&&(x?.abort(),g(),F())},b=()=>{A.remove(C),C=cg(R,C,Kb),A.add(C)},x=new i.AbortController,F=()=>as(Yb(n,o,a),{method:"GET",fetch:h,headers:{Authorization:`Bearer ${d}`,accept:"*/*"},openWhenHidden:!0,signal:x?.signal,onopen(P){return _asyncToGenerator(function*(){if(P.ok&&P.headers.get("content-type")===Jb)return;throw P.status>=400&&P.status<500&&P.status!==429?new La({message:"Error opening stream",code:P.status}):new Td})()},onmessage:P=>{if(x?.signal.aborted)return;let I=JSON.parse(P.data);if(I.finishReason==="ERROR"){A.remove(C),x?.abort(),m({message:I.errorMessage,code:I.statusCode});return}p(I),v=0,I.finishReason==="COMPLETED"?(A.remove(C),f()):b()},onerror:P=>{if(!x?.signal.aborted){if(A.remove(C),P instanceof La)throw x?.abort(),m(P),P;if(++v>gg){this.logger.info("Maximum retry exceeded.");let I={message:"Failed to complete stream.",code:Od};throw x?.abort(),m(I),new La(I)}this.logger.info(`Retrying...(${v}/${gg})`),g()}}});return F(),x}};l();s();u();c();var ss=e=>e;l();s();u();c();l();s();u();c();var wg=kt(xg(),1);l();s();u();c();var re=new Error("Failed to load reducers."),no=class extends Error{constructor(){super(),this.name="UnauthorizedTokenError",this.message="The token being used to perform the request is unauthorized. It may be expired or invalid."}},xn=class extends Error{constructor(r,n){super();xe(this,"statusCode");this.name="Disconnected",this.message=`Client could not connect to the following URL: ${r}`,this.statusCode=n??0}};l();s();u();c();function bg(e){let t=[];for(let r in e){let n=encodeURIComponent(r),o=encodeURIComponent(e[r]);t.push(`${n}=${o}`)}return t.join("&")}function Fg(e){return typeof e!="object"||!e?!1:Object.values(e).every(xF)}function xF(e){return typeof e=="string"||typeof e=="number"||typeof e=="boolean"}function Ig(e){return e===429}var Ot=class e{static call(t){return _asyncToGenerator(function*(){let r=bF(t),{logger:n}=t,o=yield e.preprocessRequest(r,t);n.info(o,"Platform request");let{url:a,...d}=o,p=/*#__PURE__*/function(){var _ref=_asyncToGenerator(function*(){let m=yield h(a,d);if(Ig(m.status))throw m;return m});return function p(){return _ref.apply(this,arguments)}}();try{let m=yield(0,wg.backOff)(p,{retry:f=>{let g=f&&Ig(f.status);return g&&n.info("Platform retrying request"),g}});switch(m.status){case 419:case 401:throw n.info("Platform renewing token"),new no;case 404:throw new xn(a,m.status);default:return n.info({response:m,requestInfo:o},"Platform response"),m}}catch(m){return m.message==="Failed to fetch"?new xn(a):m}})()}static preprocessRequest(t,r){return _asyncToGenerator(function*(){let{origin:n,preprocessRequest:o,logger:a,requestMetadata:d}=r,{signal:p,...m}=t,f=Qa(m);try{let g=yield o(t,n,d);return{...t,...g}}catch(g){a.error(g,"Platform request preprocessing failed. Returning default request options.")}return f})()}};function ke(e,t="prod",r="platform"){let n=t==="prod"?"":t,o=r==="platform"?"":`.${r}`;return`https://${e}${o}.org${n}.coveo.com`}function ut(e,t="prod"){return`${ke(e,t)}/rest/search/v2`}function us(e,t="prod"){return`${ke(e,t,"analytics")}/rest/organizations/${e}/events/v1`}function bF(e){let{url:t,method:r,requestParams:n,contentType:o,accessToken:a,signal:d}=e,p=e.method==="POST"||e.method==="PUT",m=FF(n,o);return{url:t,method:r,headers:{"Content-Type":o,Authorization:`Bearer ${a}`,...e.headers},...(p&&{body:m}),signal:d}}function FF(e,t){return t==="application/x-www-form-urlencoded"?Fg(e)?bg(e):"":JSON.stringify(e)}l();s();u();c();l();s();u();c();function Ba(e){let{url:t,accessToken:r,organizationId:n,authentication:o,...a}=e;return a}var Ud=e=>{let{response:t}=e;return t.body?IF(e):wF(t)},IF=e=>EF(e)?qF(e):PF(e)?e.body:{message:"unknown",statusCode:0,type:"unknown"},wF=e=>{let t=JSON.parse(JSON.stringify(e,Object.getOwnPropertyNames(e)));return{...t,message:`Client side error: ${t.message||""}`,statusCode:400,type:"ClientError"}};function PF(e){return e.body.statusCode!==void 0}function EF(e){return e.body.exception!==void 0}var qF=e=>({message:e.body.exception.code,statusCode:e.response.status,type:e.body.exception.code});l();s();u();c();function Pg(e){return((e.headers.get("content-type")||"").split(";").find(n=>n.indexOf("charset=")!==-1)||"").split("=")[1]||"UTF-8"}l();s();u();c();var Bd=(e,t,r,n)=>{let o=new jr(`${e.url}${n}`);return o.addParam("organizationId",e.organizationId),e.authentication&&o.addParam("authentication",e.authentication),{accessToken:e.accessToken,method:t,contentType:r,url:o.href,origin:"searchApiFetch"}};var Eg=(e,t)=>{let r=new jr(`${e.url}${t}`);return r.addParam("access_token",e.accessToken),r.addParam("organizationId",e.organizationId),r.addParam("uniqueId",e.uniqueId),e.authentication&&r.addParam("authentication",e.authentication),e.q!==void 0&&r.addParam("q",e.q),e.enableNavigation!==void 0&&r.addParam("enableNavigation",`${e.enableNavigation}`),e.requestedOutputSize!==void 0&&r.addParam("requestedOutputSize",`${e.requestedOutputSize}`),r.href},$d=/*#__PURE__*/function(){var _ref2=_asyncToGenerator(function*(e,t){let r=yield Ot.call({...Bd(e,"POST","application/x-www-form-urlencoded","/html"),requestParams:Ba(e),requestMetadata:{method:"html"},...t});if(r instanceof Error)throw r;let n=Pg(r),o=yield r.arrayBuffer(),d=new TextDecoder(n).decode(o);return TF(d)?{success:d}:{error:Ud({response:r,body:d})}});return function $d(_x4,_x5){return _ref2.apply(this,arguments)}}();function TF(e){return typeof e=="string"}l();s();u();c();l();s();u();c();function oo(){return{answerSnippet:"",documentId:{contentIdKey:"",contentIdValue:""},question:"",relatedQuestions:[],score:0}}function $e(){return{response:{results:[],searchUid:"",totalCountFiltered:0,facets:[],generateAutomaticFacets:{facets:[]},queryCorrections:[],triggers:[],questionAnswer:oo(),pipeline:"",splitTestRun:"",termsToHighlight:{},phrasesToHighlight:{},extendedResults:{}},duration:0,queryExecuted:"",error:null,automaticallyCorrected:!1,isLoading:!1,results:[],searchResponseId:"",requestId:"",questionAnswer:oo(),extendedResults:{},searchAction:void 0}}l();s();u();c();l();s();u();c();function kF(e){return{statusCode:e.statusCode,type:e.name,message:e.message}}function OF(e){return{statusCode:e.code,type:e.name,message:e.message,ignored:!0}}function bn(e,t){if(t&&e.name==="AbortError")return{error:OF(e)};if(e instanceof xn)return{error:kF(e)};throw e}var Vr=e=>e.success!==void 0,we=e=>e.error!==void 0;function qg(e){return e.results!==void 0}function Tg(e){let t=oo();return K(e.questionAnswer)?(e.questionAnswer=t,e):(e.questionAnswer={...t,...e.questionAnswer},e)}l();s();u();c();l();s();u();c();var Hd=(e,t)=>`${e.url}/rest/organizations/${e.organizationId}/insight/v1/configs/${e.insightId}${t??""}`,DF=e=>`${e.url}/rest/organizations/${e.organizationId}/machinelearning/user/actions`,$a=(e,t,r,n)=>{jF(e);let o=Hd(e,n);return{accessToken:e.accessToken,method:t,contentType:r,url:o,origin:"insightApiFetch"}},kg=(e,t,r)=>{VF(e);let n=DF(e);return{accessToken:e.accessToken,method:t,contentType:r,url:n,origin:"insightApiFetch"}},Gd=e=>{let{insightId:t,...r}=Ba(e);return r},Og=e=>{if(!e.url)throw new Error("The 'url' attribute must contain a valid platform URL.");if(!e.organizationId)throw new Error("The 'organizationId' attribute must contain a valid organization ID.");if(!e.accessToken)throw new Error("The 'accessToken' attribute must contain a valid platform access token.")},jF=e=>{if(Og(e),!e.insightId)throw new Error("The 'insightId' attribute must contain a valid Insight Panel configuration ID.")},VF=e=>{if(Og(e),!e.userId)throw new Error("The 'userId' attribute must contain a valid user ID.")};var Dg=e=>({...$a(e,"GET","application/json","/interface"),requestParams:{}});l();s();u();c();var jg=e=>({...$a(e,"POST","application/json","/search"),requestParams:Gd(e)}),Vg=e=>({...$a(e,"POST","application/json","/querysuggest"),requestParams:Gd(e)});l();s();u();c();var Ng=e=>({...kg(e,"POST","application/json"),requestParams:{objectId:e.userId}});var ls=class{constructor(t){this.options=t}getInterface(t){var _this=this;return _asyncToGenerator(function*(){let r=yield Ot.call({...Dg(t),..._this.options});if(r instanceof Error)return bn(r);let n=yield r.json();return r.ok?{success:n}:{error:n}})()}query(t,r){var _this2=this;return _asyncToGenerator(function*(){let n=yield Ot.call({...jg(t),requestMetadata:{method:"search",origin:r?.origin},..._this2.options});if(n instanceof Error)return bn(n);let o=yield n.json();return qg(o)&&(o=Tg(o)),n.ok?{success:o}:{error:o}})()}querySuggest(t){var _this3=this;return _asyncToGenerator(function*(){let r=yield Ot.call({...Vg(t),..._this3.options});if(r instanceof Error)return bn(r);let n=yield r.json();return n.completions?{success:n}:{error:n}})()}userActions(t){var _this4=this;return _asyncToGenerator(function*(){let r=yield Ot.call({...Ng(t),..._this4.options});if(r instanceof Error)return bn(r);let n=yield r.json();return r.ok?{success:n}:{error:n}})()}html(t){var _this5=this;return _asyncToGenerator(function*(){return $d(t,{..._this5.options})})()}};l();s();u();c();l();s();u();c();var B=new N({required:!0,emptyAllowed:!1}),be=new N({required:!1,emptyAllowed:!1}),Pe=new N({required:!0,emptyAllowed:!0}),Mg=new N({required:!1,emptyAllowed:!0}),ds=new te({each:B,required:!0}),Qg=new N({required:!1,emptyAllowed:!1,regex:/^\d+\.\d+\.\d+$/}),Lg=new N({required:!1,emptyAllowed:!1,regex:/^[a-zA-Z0-9_\-.]{1,100}$/}),z0=new N({required:!0,emptyAllowed:!1,regex:/^[a-zA-Z0-9_\-.]{1,100}$/}),Dt=({message:e,name:t,stack:r})=>({message:e,name:t,stack:r}),bt=(e,t)=>{if("required"in t)return{payload:new Se({value:t}).validate({value:e}).value};let o=new U({options:{required:!0},values:t}).validate(e);if(o)throw new vn(o);return{payload:e}},E=(e,t)=>{try{return bt(e,t)}catch(r){return{payload:e,error:Dt(r)}}},Bt=(e,t,r,n)=>{let o=`Check the initialState of ${n}`;return _g(e,t,r,o,"Controller initialization error")},He=(e,t,r,n)=>{let o=`Check the options of ${n}`;return _g(e,t,r,o,"Controller initialization error")},_g=(e,t,r,n,o)=>{try{return t.validate(r,n)}catch(a){throw e.logger.error(a,o),a}};l();s();u();c();l();s();u();c();l();s();u();c();function Ye(e){return`Minified Redux error #${e}; visit https://redux.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `}var NF=typeof Symbol=="function"&&Symbol.observable||"@@observable",Ug=NF,zd=()=>Math.random().toString(36).substring(7).split("").join("."),MF={INIT:`@@redux/INIT${zd()}`,REPLACE:`@@redux/REPLACE${zd()}`,PROBE_UNKNOWN_ACTION:()=>`@@redux/PROBE_UNKNOWN_ACTION${zd()}`},ps=MF;function $t(e){if(typeof e!="object"||e===null)return!1;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t||Object.getPrototypeOf(e)===null}function Wd(e,t,r){if(typeof e!="function")throw new Error(Ye(2));if(typeof t=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(Ye(0));if(typeof t=="function"&&typeof r>"u"&&(r=t,t=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(Ye(1));return r(Wd)(e,t)}let n=e,o=t,a=new Map,d=a,p=0,m=!1;function f(){d===a&&(d=new Map,a.forEach((x,F)=>{d.set(F,x)}))}function g(){if(m)throw new Error(Ye(3));return o}function A(x){if(typeof x!="function")throw new Error(Ye(4));if(m)throw new Error(Ye(5));let F=!0;f();let P=p++;return d.set(P,x),function(){if(F){if(m)throw new Error(Ye(6));F=!1,f(),d.delete(P),a=null}}}function v(x){if(!$t(x))throw new Error(Ye(7));if(typeof x.type>"u")throw new Error(Ye(8));if(typeof x.type!="string")throw new Error(Ye(17));if(m)throw new Error(Ye(9));try{m=!0,o=n(o,x)}finally{m=!1}return(a=d).forEach(P=>{P()}),x}function C(x){if(typeof x!="function")throw new Error(Ye(10));n=x,v({type:ps.REPLACE})}function R(){let x=A;return{subscribe(F){if(typeof F!="object"||F===null)throw new Error(Ye(11));function P(){let q=F;q.next&&q.next(g())}return P(),{unsubscribe:x(P)}},[Ug](){return this}}}return v({type:ps.INIT}),{dispatch:v,subscribe:A,getState:g,replaceReducer:C,[Ug]:R}}function QF(e){Object.keys(e).forEach(t=>{let r=e[t];if(typeof r(void 0,{type:ps.INIT})>"u")throw new Error(Ye(12));if(typeof r(void 0,{type:ps.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(Ye(13))})}function ao(e){let t=Object.keys(e),r={};for(let d=0;d<t.length;d++){let p=t[d];typeof e[p]=="function"&&(r[p]=e[p])}let n=Object.keys(r),o,a;try{QF(r)}catch(d){a=d}return function(p={},m){if(a)throw a;let f=!1,g={};for(let A=0;A<n.length;A++){let v=n[A],C=r[v],R=p[v],b=C(R,m);if(typeof b>"u"){let x=m&&m.type;throw new Error(Ye(14))}g[v]=b,f=f||b!==R}return f=f||n.length!==Object.keys(p).length,f?g:p}}function io(...e){return e.length===0?t=>t:e.length===1?e[0]:e.reduce((t,r)=>(...n)=>t(r(...n)))}function Bg(...e){return t=>(r,n)=>{let o=t(r,n),a=()=>{throw new Error(Ye(15))},d={getState:o.getState,dispatch:(m,...f)=>a(m,...f)},p=e.map(m=>m(d));return a=io(...p)(o.dispatch),{...o,dispatch:a}}}function ms(e){return $t(e)&&"type"in e&&typeof e.type=="string"}l();s();u();c();var op=Symbol.for("immer-nothing"),Ha=Symbol.for("immer-draftable"),lt=Symbol.for("immer-state");function Ke(e,...t){throw new Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var In=Object.getPrototypeOf;function St(e){return!!e&&!!e[lt]}function dt(e){return e?Wg(e)||Array.isArray(e)||!!e[Ha]||!!e.constructor?.[Ha]||so(e)||Ja(e):!1}var LF=Object.prototype.constructor.toString();function Wg(e){if(!e||typeof e!="object")return!1;let t=In(e);if(t===null)return!0;let r=Object.hasOwnProperty.call(t,"constructor")&&t.constructor;return r===Object?!0:typeof r=="function"&&Function.toString.call(r)===LF}function ap(e){return St(e)||Ke(15,e),e[lt].base_}function Ga(e,t){wn(e)===0?Reflect.ownKeys(e).forEach(r=>{t(r,e[r],e)}):e.forEach((r,n)=>t(n,r,e))}function wn(e){let t=e[lt];return t?t.type_:Array.isArray(e)?1:so(e)?2:Ja(e)?3:0}function za(e,t){return wn(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function Yd(e,t){return wn(e)===2?e.get(t):e[t]}function Yg(e,t,r){let n=wn(e);n===2?e.set(t,r):n===3?e.add(r):e[t]=r}function _F(e,t){return e===t?e!==0||1/e===1/t:e!==e&&t!==t}function so(e){return e instanceof Map}function Ja(e){return e instanceof Set}function Fn(e){return e.copy_||e.base_}function Xd(e,t){if(so(e))return new Map(e);if(Ja(e))return new Set(e);if(Array.isArray(e))return Array.prototype.slice.call(e);let r=Wg(e);if(t===!0||t==="class_only"&&!r){let n=Object.getOwnPropertyDescriptors(e);delete n[lt];let o=Reflect.ownKeys(n);for(let a=0;a<o.length;a++){let d=o[a],p=n[d];p.writable===!1&&(p.writable=!0,p.configurable=!0),(p.get||p.set)&&(n[d]={configurable:!0,writable:!0,enumerable:p.enumerable,value:e[d]})}return Object.create(In(e),n)}else{let n=In(e);if(n!==null&&r)return{...e};let o=Object.create(n);return Object.assign(o,e)}}function hs(e,t=!1){return Ss(e)||St(e)||!dt(e)||(wn(e)>1&&Object.defineProperties(e,{set:{value:fs},add:{value:fs},clear:{value:fs},delete:{value:fs}}),Object.freeze(e),t&&Object.values(e).forEach(r=>hs(r,!0))),e}function fs(){Ke(2)}function Ss(e){return Object.isFrozen(e)}var Zd={};function Pn(e){let t=Zd[e];return t||Ke(0,e),t}function UF(e,t){Zd[e]||(Zd[e]=t)}var Wa;function Kg(){return Wa}function BF(e,t){return{drafts_:[],parent_:e,immer_:t,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function $g(e,t){t&&(Pn("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function ep(e){tp(e),e.drafts_.forEach($F),e.drafts_=null}function tp(e){e===Wa&&(Wa=e.parent_)}function Hg(e){return Wa=BF(Wa,e)}function $F(e){let t=e[lt];t.type_===0||t.type_===1?t.revoke_():t.revoked_=!0}function Gg(e,t){t.unfinalizedDrafts_=t.drafts_.length;let r=t.drafts_[0];return e!==void 0&&e!==r?(r[lt].modified_&&(ep(t),Ke(4)),dt(e)&&(e=gs(t,e),t.parent_||ys(t,e)),t.patches_&&Pn("Patches").generateReplacementPatches_(r[lt].base_,e,t.patches_,t.inversePatches_)):e=gs(t,r,[]),ep(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e!==op?e:void 0}function gs(e,t,r){if(Ss(t))return t;let n=t[lt];if(!n)return Ga(t,(o,a)=>zg(e,n,t,o,a,r)),t;if(n.scope_!==e)return t;if(!n.modified_)return ys(e,n.base_,!0),n.base_;if(!n.finalized_){n.finalized_=!0,n.scope_.unfinalizedDrafts_--;let o=n.copy_,a=o,d=!1;n.type_===3&&(a=new Set(o),o.clear(),d=!0),Ga(a,(p,m)=>zg(e,n,o,p,m,r,d)),ys(e,o,!1),r&&e.patches_&&Pn("Patches").generatePatches_(n,r,e.patches_,e.inversePatches_)}return n.copy_}function zg(e,t,r,n,o,a,d){if(St(o)){let p=a&&t&&t.type_!==3&&!za(t.assigned_,n)?a.concat(n):void 0,m=gs(e,o,p);if(Yg(r,n,m),St(m))e.canAutoFreeze_=!1;else return}else d&&r.add(o);if(dt(o)&&!Ss(o)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;gs(e,o),(!t||!t.scope_.parent_)&&typeof n!="symbol"&&(so(r)?r.has(n):Object.prototype.propertyIsEnumerable.call(r,n))&&ys(e,o)}}function ys(e,t,r=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&hs(t,r)}function HF(e,t){let r=Array.isArray(e),n={type_:r?1:0,scope_:t?t.scope_:Kg(),modified_:!1,finalized_:!1,assigned_:{},parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1},o=n,a=ip;r&&(o=[n],a=Ya);let{revoke:d,proxy:p}=Proxy.revocable(o,a);return n.draft_=p,n.revoke_=d,p}var ip={get(e,t){if(t===lt)return e;let r=Fn(e);if(!za(r,t))return GF(e,r,t);let n=r[t];return e.finalized_||!dt(n)?n:n===Kd(e.base_,t)?(Jd(e),e.copy_[t]=np(n,e)):n},has(e,t){return t in Fn(e)},ownKeys(e){return Reflect.ownKeys(Fn(e))},set(e,t,r){let n=Jg(Fn(e),t);if(n?.set)return n.set.call(e.draft_,r),!0;if(!e.modified_){let o=Kd(Fn(e),t),a=o?.[lt];if(a&&a.base_===r)return e.copy_[t]=r,e.assigned_[t]=!1,!0;if(_F(r,o)&&(r!==void 0||za(e.base_,t)))return!0;Jd(e),rp(e)}return e.copy_[t]===r&&(r!==void 0||t in e.copy_)||Number.isNaN(r)&&Number.isNaN(e.copy_[t])||(e.copy_[t]=r,e.assigned_[t]=!0),!0},deleteProperty(e,t){return Kd(e.base_,t)!==void 0||t in e.base_?(e.assigned_[t]=!1,Jd(e),rp(e)):delete e.assigned_[t],e.copy_&&delete e.copy_[t],!0},getOwnPropertyDescriptor(e,t){let r=Fn(e),n=Reflect.getOwnPropertyDescriptor(r,t);return n&&{writable:!0,configurable:e.type_!==1||t!=="length",enumerable:n.enumerable,value:r[t]}},defineProperty(){Ke(11)},getPrototypeOf(e){return In(e.base_)},setPrototypeOf(){Ke(12)}},Ya={};Ga(ip,(e,t)=>{Ya[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}});Ya.deleteProperty=function(e,t){return Ya.set.call(this,e,t,void 0)};Ya.set=function(e,t,r){return ip.set.call(this,e[0],t,r,e[0])};function Kd(e,t){let r=e[lt];return(r?Fn(r):e)[t]}function GF(e,t,r){let n=Jg(t,r);return n?"value"in n?n.value:n.get?.call(e.draft_):void 0}function Jg(e,t){if(!(t in e))return;let r=In(e);for(;r;){let n=Object.getOwnPropertyDescriptor(r,t);if(n)return n;r=In(r)}}function rp(e){e.modified_||(e.modified_=!0,e.parent_&&rp(e.parent_))}function Jd(e){e.copy_||(e.copy_=Xd(e.base_,e.scope_.immer_.useStrictShallowCopy_))}var zF=class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.produce=(t,r,n)=>{if(typeof t=="function"&&typeof r!="function"){let a=r;r=t;let d=this;return function(m=a,...f){return d.produce(m,g=>r.call(this,g,...f))}}typeof r!="function"&&Ke(6),n!==void 0&&typeof n!="function"&&Ke(7);let o;if(dt(t)){let a=Hg(this),d=np(t,void 0),p=!0;try{o=r(d),p=!1}finally{p?ep(a):tp(a)}return $g(a,n),Gg(o,a)}else if(!t||typeof t!="object"){if(o=r(t),o===void 0&&(o=t),o===op&&(o=void 0),this.autoFreeze_&&hs(o,!0),n){let a=[],d=[];Pn("Patches").generateReplacementPatches_(t,o,a,d),n(a,d)}return o}else Ke(1,t)},this.produceWithPatches=(t,r)=>{if(typeof t=="function")return(d,...p)=>this.produceWithPatches(d,m=>t(m,...p));let n,o;return[this.produce(t,r,(d,p)=>{n=d,o=p}),n,o]},typeof e?.autoFreeze=="boolean"&&this.setAutoFreeze(e.autoFreeze),typeof e?.useStrictShallowCopy=="boolean"&&this.setUseStrictShallowCopy(e.useStrictShallowCopy)}createDraft(e){dt(e)||Ke(8),St(e)&&(e=Xg(e));let t=Hg(this),r=np(e,void 0);return r[lt].isManual_=!0,tp(t),r}finishDraft(e,t){let r=e&&e[lt];(!r||!r.isManual_)&&Ke(9);let{scope_:n}=r;return $g(n,t),Gg(void 0,n)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}applyPatches(e,t){let r;for(r=t.length-1;r>=0;r--){let o=t[r];if(o.path.length===0&&o.op==="replace"){e=o.value;break}}r>-1&&(t=t.slice(r+1));let n=Pn("Patches").applyPatches_;return St(e)?n(e,t):this.produce(e,o=>n(o,t))}};function np(e,t){let r=so(e)?Pn("MapSet").proxyMap_(e,t):Ja(e)?Pn("MapSet").proxySet_(e,t):HF(e,t);return(t?t.scope_:Kg()).drafts_.push(r),r}function Xg(e){return St(e)||Ke(10,e),Zg(e)}function Zg(e){if(!dt(e)||Ss(e))return e;let t=e[lt],r;if(t){if(!t.modified_)return t.base_;t.finalized_=!0,r=Xd(e,t.scope_.immer_.useStrictShallowCopy_)}else r=Xd(e,!0);return Ga(r,(n,o)=>{Yg(r,n,Zg(o))}),t&&(t.finalized_=!1),r}function ey(){let t="replace",r="add",n="remove";function o(v,C,R,b){switch(v.type_){case 0:case 2:return d(v,C,R,b);case 1:return a(v,C,R,b);case 3:return p(v,C,R,b)}}function a(v,C,R,b){let{base_:x,assigned_:F}=v,P=v.copy_;P.length<x.length&&([x,P]=[P,x],[R,b]=[b,R]);for(let I=0;I<x.length;I++)if(F[I]&&P[I]!==x[I]){let q=C.concat([I]);R.push({op:t,path:q,value:A(P[I])}),b.push({op:t,path:q,value:A(x[I])})}for(let I=x.length;I<P.length;I++){let q=C.concat([I]);R.push({op:r,path:q,value:A(P[I])})}for(let I=P.length-1;x.length<=I;--I){let q=C.concat([I]);b.push({op:n,path:q})}}function d(v,C,R,b){let{base_:x,copy_:F}=v;Ga(v.assigned_,(P,I)=>{let q=Yd(x,P),M=Yd(F,P),D=I?za(x,P)?t:r:n;if(q===M&&D===t)return;let T=C.concat(P);R.push(D===n?{op:D,path:T}:{op:D,path:T,value:M}),b.push(D===r?{op:n,path:T}:D===n?{op:r,path:T,value:A(q)}:{op:t,path:T,value:A(q)})})}function p(v,C,R,b){let{base_:x,copy_:F}=v,P=0;x.forEach(I=>{if(!F.has(I)){let q=C.concat([P]);R.push({op:n,path:q,value:I}),b.unshift({op:r,path:q,value:I})}P++}),P=0,F.forEach(I=>{if(!x.has(I)){let q=C.concat([P]);R.push({op:r,path:q,value:I}),b.unshift({op:n,path:q,value:I})}P++})}function m(v,C,R,b){R.push({op:t,path:[],value:C===op?void 0:C}),b.push({op:t,path:[],value:v})}function f(v,C){return C.forEach(R=>{let{path:b,op:x}=R,F=v;for(let M=0;M<b.length-1;M++){let D=wn(F),T=b[M];typeof T!="string"&&typeof T!="number"&&(T=""+T),(D===0||D===1)&&(T==="__proto__"||T==="constructor")&&Ke(19),typeof F=="function"&&T==="prototype"&&Ke(19),F=Yd(F,T),typeof F!="object"&&Ke(18,b.join("/"))}let P=wn(F),I=g(R.value),q=b[b.length-1];switch(x){case t:switch(P){case 2:return F.set(q,I);case 3:Ke(16);default:return F[q]=I}case r:switch(P){case 1:return q==="-"?F.push(I):F.splice(q,0,I);case 2:return F.set(q,I);case 3:return F.add(I);default:return F[q]=I}case n:switch(P){case 1:return F.splice(q,1);case 2:return F.delete(q);case 3:return F.delete(R.value);default:return delete F[q]}default:Ke(17,x)}}),v}function g(v){if(!dt(v))return v;if(Array.isArray(v))return v.map(g);if(so(v))return new Map(Array.from(v.entries()).map(([R,b])=>[R,g(b)]));if(Ja(v))return new Set(Array.from(v).map(g));let C=Object.create(In(v));for(let R in v)C[R]=g(v[R]);return za(v,Ha)&&(C[Ha]=v[Ha]),C}function A(v){return St(v)?g(v):v}UF("Patches",{applyPatches_:f,generatePatches_:o,generateReplacementPatches_:m})}var Ka=new zF,Ar=Ka.produce,Cs=Ka.produceWithPatches.bind(Ka);var sp=Ka.applyPatches.bind(Ka);l();s();u();c();function WF(e,t=`expected a function, instead received ${typeof e}`){if(typeof e!="function")throw new TypeError(t)}function YF(e,t=`expected an object, instead received ${typeof e}`){if(typeof e!="object")throw new TypeError(t)}function KF(e,t="expected all items to be functions, instead received the following types: "){if(!e.every(r=>typeof r=="function")){let r=e.map(n=>typeof n=="function"?`function ${n.name||"unnamed"}()`:typeof n).join(", ");throw new TypeError(`${t}[${r}]`)}}var ty=e=>Array.isArray(e)?e:[e];function JF(e){let t=Array.isArray(e[0])?e[0]:e;return KF(t,"createSelector expects all input-selectors to be functions, but received the following types: "),t}function XF(e,t){let r=[],{length:n}=e;for(let o=0;o<n;o++)r.push(e[o].apply(null,t));return r}var lQ=Symbol();var dQ=Object.getPrototypeOf({});var ZF=class{constructor(e){this.value=e}deref(){return this.value}},eI=typeof WeakRef<"u"?WeakRef:ZF,tI=0,ry=1;function As(){return{s:tI,v:void 0,o:null,p:null}}function co(e,t={}){let r=As(),{resultEqualityCheck:n}=t,o,a=0;function d(){let p=r,{length:m}=arguments;for(let A=0,v=m;A<v;A++){let C=arguments[A];if(typeof C=="function"||typeof C=="object"&&C!==null){let R=p.o;R===null&&(p.o=R=new WeakMap);let b=R.get(C);b===void 0?(p=As(),R.set(C,p)):p=b}else{let R=p.p;R===null&&(p.p=R=new Map);let b=R.get(C);b===void 0?(p=As(),R.set(C,p)):p=b}}let f=p,g;if(p.s===ry)g=p.v;else if(g=e.apply(null,arguments),a++,n){let A=o?.deref?.()??o;A!=null&&n(A,g)&&(g=A,a!==0&&a--),o=typeof g=="object"&&g!==null||typeof g=="function"?new eI(g):g}return f.s=ry,f.v=g,g}return d.clearCache=()=>{r=As(),d.resetResultsCount()},d.resultsCount=()=>a,d.resetResultsCount=()=>{a=0},d}function ny(e,...t){let r=typeof e=="function"?{memoize:e,memoizeOptions:t}:e,n=(...o)=>{let a=0,d=0,p,m={},f=o.pop();typeof f=="object"&&(m=f,f=o.pop()),WF(f,`createSelector expects an output function after the inputs, but received: [${typeof f}]`);let g={...r,...m},{memoize:A,memoizeOptions:v=[],argsMemoize:C=co,argsMemoizeOptions:R=[],devModeChecks:b={}}=g,x=ty(v),F=ty(R),P=JF(o),I=A(function(){return a++,f.apply(null,arguments)},...x),q=!0,M=C(function(){d++;let T=XF(P,arguments);return p=I.apply(null,T),p},...F);return Object.assign(M,{resultFunc:f,memoizedResultFunc:I,dependencies:P,dependencyRecomputations:()=>d,resetDependencyRecomputations:()=>{d=0},lastResult:()=>p,recomputations:()=>a,resetRecomputations:()=>{a=0},memoize:A,argsMemoize:C})};return Object.assign(n,{withTypes:()=>n}),n}var se=ny(co),rI=Object.assign((e,t=se)=>{YF(e,`createStructuredSelector expects first argument to be an object where each property is a selector, instead received a ${typeof e}`);let r=Object.keys(e),n=r.map(a=>e[a]);return t(n,(...a)=>a.reduce((d,p,m)=>(d[r[m]]=p,d),{}))},{withTypes:()=>rI});l();s();u();c();function oy(e){return({dispatch:r,getState:n})=>o=>a=>typeof a=="function"?a(r,n,e):o(a)}var ay=oy(),iy=oy;var nI=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?io:io.apply(null,arguments)},EQ=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(e){return e}},oI=e=>e&&typeof e.match=="function";function w(e,t){function r(...n){if(t){let o=t(...n);if(!o)throw new Error(jt(0));return{type:e,payload:o.payload,...("meta"in o&&{meta:o.meta}),...("error"in o&&{error:o.error})}}return{type:e,payload:n[0]}}return r.toString=()=>`${e}`,r.type=e,r.match=n=>ms(n)&&n.type===e,r}var dy=class Xa extends Array{constructor(...t){super(...t),Object.setPrototypeOf(this,Xa.prototype)}static get[Symbol.species](){return Xa}concat(...t){return super.concat.apply(this,t)}prepend(...t){return t.length===1&&Array.isArray(t[0])?new Xa(...t[0].concat(this)):new Xa(...t.concat(this))}};function sy(e){return dt(e)?Ar(e,()=>{}):e}function cy(e,t,r){return e.has(t)?e.get(t):e.set(t,r(t)).get(t)}function aI(e){return typeof e=="boolean"}var iI=()=>function(t){let{thunk:r=!0,immutableCheck:n=!0,serializableCheck:o=!0,actionCreatorCheck:a=!0}=t??{},d=new dy;return r&&(aI(r)?d.push(ay):d.push(iy(r.extraArgument))),d},Za="RTK_autoBatch",lo=()=>e=>({payload:e,meta:{[Za]:!0}}),uy=e=>t=>{setTimeout(t,e)},sI=(e={type:"raf"})=>t=>(...r)=>{let n=t(...r),o=!0,a=!1,d=!1,p=new Set,m=e.type==="tick"?queueMicrotask:e.type==="raf"?typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:uy(10):e.type==="callback"?e.queueNotification:uy(e.timeout),f=()=>{d=!1,a&&(a=!1,p.forEach(g=>g()))};return Object.assign({},n,{subscribe(g){let A=()=>o&&g(),v=n.subscribe(A);return p.add(g),()=>{v(),p.delete(g)}},dispatch(g){try{return o=!g?.meta?.[Za],a=!o,a&&(d||(d=!0,m(f))),n.dispatch(g)}finally{o=!0}}})},cI=e=>function(r){let{autoBatch:n=!0}=r??{},o=new dy(e);return n&&o.push(sI(typeof n=="object"?n:void 0)),o};function py(e){let t=iI(),{reducer:r=void 0,middleware:n,devTools:o=!0,preloadedState:a=void 0,enhancers:d=void 0}=e||{},p;if(typeof r=="function")p=r;else if($t(r))p=ao(r);else throw new Error(jt(1));let m;typeof n=="function"?m=n(t):m=t();let f=io;o&&(f=nI({trace:!1,...(typeof o=="object"&&o)}));let g=Bg(...m),A=cI(g),v=typeof d=="function"?d(A):A(),C=f(...v);return Wd(p,a,C)}function my(e){let t={},r=[],n,o={addCase(a,d){let p=typeof a=="string"?a:a.type;if(!p)throw new Error(jt(28));if(p in t)throw new Error(jt(29));return t[p]=d,o},addMatcher(a,d){return r.push({matcher:a,reducer:d}),o},addDefaultCase(a){return n=a,o}};return e(o),[t,r,n]}function uI(e){return typeof e=="function"}function oe(e,t){let[r,n,o]=my(t),a;if(uI(e))a=()=>sy(e());else{let p=sy(e);a=()=>p}function d(p=a(),m){let f=[r[m.type],...n.filter(({matcher:g})=>g(m)).map(({reducer:g})=>g)];return f.filter(g=>!!g).length===0&&(f=[o]),f.reduce((g,A)=>{if(A)if(St(g)){let C=A(g,m);return C===void 0?g:C}else{if(dt(g))return Ar(g,v=>A(v,m));{let v=A(g,m);if(v===void 0){if(g===null)return g;throw Error("A case reducer on a non-draftable value must not return undefined")}return v}}return g},p)}return d.getInitialState=a,d}var fy=(e,t)=>oI(e)?e.match(t):e(t);function Ht(...e){return t=>e.some(r=>fy(r,t))}function uo(...e){return t=>e.every(r=>fy(r,t))}function Rs(e,t){if(!e||!e.meta)return!1;let r=typeof e.meta.requestId=="string",n=t.indexOf(e.meta.requestStatus)>-1;return r&&n}function ei(e){return typeof e[0]=="function"&&"pending"in e[0]&&"fulfilled"in e[0]&&"rejected"in e[0]}function xs(...e){return e.length===0?t=>Rs(t,["pending"]):ei(e)?Ht(...e.map(t=>t.pending)):xs()(e[0])}function En(...e){return e.length===0?t=>Rs(t,["rejected"]):ei(e)?Ht(...e.map(t=>t.rejected)):En()(e[0])}function ti(...e){let t=r=>r&&r.meta&&r.meta.rejectedWithValue;return e.length===0?uo(En(...e),t):ei(e)?uo(En(...e),t):ti()(e[0])}function vr(...e){return e.length===0?t=>Rs(t,["fulfilled"]):ei(e)?Ht(...e.map(t=>t.fulfilled)):vr()(e[0])}function bs(...e){return e.length===0?t=>Rs(t,["pending","fulfilled","rejected"]):ei(e)?Ht(...e.flatMap(t=>[t.pending,t.rejected,t.fulfilled])):bs()(e[0])}var lI="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",Fs=(e=21)=>{let t="",r=e;for(;r--;)t+=lI[Math.random()*64|0];return t},dI=["name","message","stack","code"],cp=class{constructor(e,t){xe(this,"_type");this.payload=e,this.meta=t}},ly=class{constructor(e,t){xe(this,"_type");this.payload=e,this.meta=t}},pI=e=>{if(typeof e=="object"&&e!==null){let t={};for(let r of dI)typeof e[r]=="string"&&(t[r]=e[r]);return t}return{message:String(e)}},ee=(()=>{function e(t,r,n){let o=w(t+"/fulfilled",(m,f,g,A)=>({payload:m,meta:{...(A||{}),arg:g,requestId:f,requestStatus:"fulfilled"}})),a=w(t+"/pending",(m,f,g)=>({payload:void 0,meta:{...(g||{}),arg:f,requestId:m,requestStatus:"pending"}})),d=w(t+"/rejected",(m,f,g,A,v)=>({payload:A,error:(n&&n.serializeError||pI)(m||"Rejected"),meta:{...(v||{}),arg:g,requestId:f,rejectedWithValue:!!A,requestStatus:"rejected",aborted:m?.name==="AbortError",condition:m?.name==="ConditionError"}}));function p(m){return(f,g,A)=>{let v=n?.idGenerator?n.idGenerator(m):Fs(),C=new i.AbortController,R,b;function x(P){b=P,C.abort()}let F=_asyncToGenerator(function*(){let P;try{let q=n?.condition?.(m,{getState:g,extra:A});if(fI(q)&&(q=yield q),q===!1||C.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};let M=new Promise((D,T)=>{R=()=>{T({name:"AbortError",message:b||"Aborted"})},C.signal.addEventListener("abort",R)});f(a(v,m,n?.getPendingMeta?.({requestId:v,arg:m},{getState:g,extra:A}))),P=yield Promise.race([M,Promise.resolve(r(m,{dispatch:f,getState:g,extra:A,requestId:v,signal:C.signal,abort:x,rejectWithValue:(D,T)=>new cp(D,T),fulfillWithValue:(D,T)=>new ly(D,T)})).then(D=>{if(D instanceof cp)throw D;return D instanceof ly?o(D.payload,v,m,D.meta):o(D,v,m)})])}catch(q){P=q instanceof cp?d(null,v,m,q.payload,q.meta):d(q,v,m)}finally{R&&C.signal.removeEventListener("abort",R)}return n&&!n.dispatchConditionRejection&&d.match(P)&&P.meta.condition||f(P),P})();return Object.assign(F,{abort:x,requestId:v,arg:m,unwrap(){return F.then(mI)}})}}return Object.assign(p,{pending:a,rejected:d,fulfilled:o,settled:Ht(d,o),typePrefix:t})}return e.withTypes=()=>e,e})();function mI(e){if(e.meta&&e.meta.rejectedWithValue)throw e.payload;if(e.error)throw e.error;return e.payload}function fI(e){return e!==null&&typeof e=="object"&&typeof e.then=="function"}var gy=Symbol.for("rtk-slice-createasyncthunk"),DQ={[gy]:ee};function gI(e,t){return`${e}/${t}`}function yI({creators:e}={}){let t=e?.asyncThunk?.[gy];return function(n){let{name:o,reducerPath:a=o}=n;if(!o)throw new Error(jt(11));typeof process<"u";let d=(typeof n.reducers=="function"?n.reducers(SI()):n.reducers)||{},p=Object.keys(d),m={sliceCaseReducersByName:{},sliceCaseReducersByType:{},actionCreators:{},sliceMatchers:[]},f={addCase(P,I){let q=typeof P=="string"?P:P.type;if(!q)throw new Error(jt(12));if(q in m.sliceCaseReducersByType)throw new Error(jt(13));return m.sliceCaseReducersByType[q]=I,f},addMatcher(P,I){return m.sliceMatchers.push({matcher:P,reducer:I}),f},exposeAction(P,I){return m.actionCreators[P]=I,f},exposeCaseReducer(P,I){return m.sliceCaseReducersByName[P]=I,f}};p.forEach(P=>{let I=d[P],q={reducerName:P,type:gI(o,P),createNotation:typeof n.reducers=="function"};AI(I)?RI(q,I,f,t):CI(q,I,f)});function g(){let[P={},I=[],q=void 0]=typeof n.extraReducers=="function"?my(n.extraReducers):[n.extraReducers],M={...P,...m.sliceCaseReducersByType};return oe(n.initialState,D=>{for(let T in M)D.addCase(T,M[T]);for(let T of m.sliceMatchers)D.addMatcher(T.matcher,T.reducer);for(let T of I)D.addMatcher(T.matcher,T.reducer);q&&D.addDefaultCase(q)})}let A=P=>P,v=new Map,C;function R(P,I){return C||(C=g()),C(P,I)}function b(){return C||(C=g()),C.getInitialState()}function x(P,I=!1){function q(D){let T=D[P];return typeof T>"u"&&I&&(T=b()),T}function M(D=A){let T=cy(v,I,()=>new WeakMap);return cy(T,D,()=>{let O={};for(let[j,Q]of Object.entries(n.selectors??{}))O[j]=hI(Q,D,b,I);return O})}return{reducerPath:P,getSelectors:M,get selectors(){return M(q)},selectSlice:q}}let F={name:o,reducer:R,actions:m.actionCreators,caseReducers:m.sliceCaseReducersByName,getInitialState:b,...x(a),injectInto(P,{reducerPath:I,...q}={}){let M=I??a;return P.inject({reducerPath:M,reducer:R},q),{...F,...x(M,!0)}}};return F}}function hI(e,t,r,n){function o(a,...d){let p=t(a);return typeof p>"u"&&n&&(p=r()),e(p,...d)}return o.unwrapped=e,o}var qn=yI();function SI(){function e(t,r){return{_reducerDefinitionType:"asyncThunk",payloadCreator:t,...r}}return e.withTypes=()=>e,{reducer(t){return Object.assign({[t.name](...r){return t(...r)}}[t.name],{_reducerDefinitionType:"reducer"})},preparedReducer(t,r){return{_reducerDefinitionType:"reducerWithPrepare",prepare:t,reducer:r}},asyncThunk:e}}function CI({type:e,reducerName:t,createNotation:r},n,o){let a,d;if("reducer"in n){if(r&&!vI(n))throw new Error(jt(17));a=n.reducer,d=n.prepare}else a=n;o.addCase(e,a).exposeCaseReducer(t,a).exposeAction(t,d?w(e,d):w(e))}function AI(e){return e._reducerDefinitionType==="asyncThunk"}function vI(e){return e._reducerDefinitionType==="reducerWithPrepare"}function RI({type:e,reducerName:t},r,n,o){if(!o)throw new Error(jt(18));let{payloadCreator:a,fulfilled:d,pending:p,rejected:m,settled:f,options:g}=r,A=o(e,a,g);n.exposeAction(t,A),d&&n.addCase(A.fulfilled,d),p&&n.addCase(A.pending,p),m&&n.addCase(A.rejected,m),f&&n.addMatcher(A.settled,f),n.exposeCaseReducer(t,{fulfilled:d||vs,pending:p||vs,rejected:m||vs,settled:f||vs})}function vs(){}var yy="listener",hy="completed",Sy="cancelled",jQ=`task-${Sy}`,VQ=`task-${hy}`,NQ=`${yy}-${Sy}`,MQ=`${yy}-${hy}`;var{assign:Cy}=Object;var up="listenerMiddleware";var xI=Cy(w(`${up}/add`),{withTypes:()=>xI}),QQ=w(`${up}/removeAll`),bI=Cy(w(`${up}/remove`),{withTypes:()=>bI});var LQ=Symbol.for("rtk-state-proxy-original");function jt(e){return`Minified Redux Toolkit error #${e}; visit https://redux-toolkit.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `}l();s();u();c();l();s();u();c();l();s();u();c();l();s();u();c();l();s();u();c();var Ay=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i;function FI(e){return typeof e=="string"&&Ay.test(e)}var lp=FI;l();s();u();c();var Je=[];for(let e=0;e<256;++e)Je.push((e+256).toString(16).slice(1));function vy(e,t=0){return(Je[e[t+0]]+Je[e[t+1]]+Je[e[t+2]]+Je[e[t+3]]+"-"+Je[e[t+4]]+Je[e[t+5]]+"-"+Je[e[t+6]]+Je[e[t+7]]+"-"+Je[e[t+8]]+Je[e[t+9]]+"-"+Je[e[t+10]]+Je[e[t+11]]+Je[e[t+12]]+Je[e[t+13]]+Je[e[t+14]]+Je[e[t+15]]).toLowerCase()}l();s();u();c();var dp,II=new Uint8Array(16);function pp(){if(!dp){if(typeof crypto>"u"||!crypto.getRandomValues)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");dp=crypto.getRandomValues.bind(crypto)}return dp(II)}l();s();u();c();l();s();u();c();var wI=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),mp={randomUUID:wI};function PI(e,t,r){if(mp.randomUUID&&!t&&!e)return mp.randomUUID();e=e||{};let n=e.random??e.rng?.()??pp();if(n.length<16)throw new Error("Random bytes length must be >= 16");if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){if(r=r||0,r<0||r+16>t.length)throw new RangeError(`UUID byte range ${r}:${r+15} is out of buffer bounds`);for(let o=0;o<16;++o)t[r+o]=n[o];return t}return vy(n)}var fp=PI;l();s();u();c();function Ry(){let e=typeof window<"u";return{sendMessage(t){e&&window.postMessage(t,"*")}}}function EI({config:e,environment:t,event:r,listenerManager:n}){let{url:o,token:a,mode:d}=e;d!=="disabled"&&(n.call(r),t.send(o,a,r))}var xy="visitorId";function qI(e){return{getClientId:()=>{let t=e.get(),r=t.storage,n=r.getItem(xy),o=n&&lp(n)?n:t.generateUUID();return r.setItem(xy,o),o}}}var Py="1.2.7",gp=128,Ey=192,by=224,Fy=240,TI=248;function kI(e){return(e&TI)===Fy?4:(e&Fy)===by?3:(e&by)===Ey?2:1}function OI(e,t){if(t<0||e.length<=t)return e;let r=e.indexOf("%",t-2);for(r<0||r>t?r=t:t=r;r>2&&e.charAt(r-3)=="%";){let n=Number.parseInt(e.substring(r-2,r),16);if((n&gp)!=gp)break;if(r-=3,(n&Ey)!=gp){t-r>=kI(n)*3&&(r=t);break}}return e.substring(0,r)}function DI(e){let{trackingId:t}=e;return{trackingId:t}}function jI(e){return(e.source||[]).concat([`relay@${Py}`])}function qy(e,t,r,n){let{getReferrer:o,getLocation:a,getUserAgent:d}=r,p=DI(t),m=n.getClientId();return Object.freeze({type:e,config:p,ts:Date.now(),source:jI(t),clientId:m,userAgent:d(),referrer:Iy(o()),location:Iy(a())})}function Iy(e){return e!==null?OI(e,1024):null}function VI(e,t,r,n,o){return{...t,meta:qy(e,r,n,o)}}var NI="*";function MI(){let e=[];function t({type:m,callback:f}){return e.findIndex(g=>g.type===m&&g.callback===f)}function r(m,f){return m.type==="*"||f===m.type}function n(m){return t(m)<0&&e.push(m),()=>p(m.type,m.callback)}function o(m){e.forEach(f=>{if(r(f,m.meta.type))try{f.callback(m)}catch(g){console.error(g)}})}function a(m){if(m===NI)e.length=0;else for(let f=e.length-1;f>=0;f--)e[f].type===m&&e.splice(f,1)}function d(m){let f=t(m);f>=0&&e.splice(f,1)}function p(m,f){f?d({type:m,callback:f}):a(m)}return{add:n,call:o,remove:p}}function wy({url:e,token:t,trackingId:r,...n}){return Object.freeze({url:e,token:t,trackingId:r,...(!!n.mode&&{mode:n.mode}),...(!!n.source&&{source:n.source}),...(!!n.environment&&{environment:n.environment})})}function QI(e){let t=wy(e);return{get:()=>t,update:r=>{t=wy({...t,...r})}}}var yp=LI();function LI(){let e="coveo_",t=r=>{let n=r.split(".").slice(-2);return n.length==2?n.join("."):""};return{getItem(r){let n=`${e}${r}=`,o=document.cookie.split(";");for(let a of o){let d=a.replace(/^\s+/,"");if(d.lastIndexOf(n,0)===0)return d.substring(n.length,d.length)}return null},setItem(r,n,o){let a=t(window.location.hostname),d=`;expires=${new Date(new Date().getTime()+o).toUTCString()}`,p=a?`;domain=${a}`:"";document.cookie=`${e}${r}=${n}${d}${p};path=/;SameSite=Lax`},removeItem(r){this.setItem(r,"",-1)}}}function _I(){return{getItem(e){return yp.getItem(e)||localStorage.getItem(e)},removeItem(e){yp.removeItem(e),localStorage.removeItem(e)},setItem(e,t){localStorage.setItem(e,t),yp.setItem(e,t,31556952e3)}}}function UI(){let e=document.referrer;return e===""?null:e}function hp(){return{runtime:"browser",send:(e,t,r)=>{let n=navigator.sendBeacon(`${e}?access_token=${t}`,new Blob([JSON.stringify([r])],{type:"application/json"}));if(Ry().sendMessage({kind:"EVENT_PROTOCOL",event:r,url:e,token:t}),!n)throw new Error("Failed to send the event(s) because the payload size exceeded the maximum allowed size (32 KB). Please contact support if the problem persists.")},getReferrer:()=>UI(),getLocation:()=>window.location.href,getUserAgent:()=>navigator.userAgent,generateUUID:()=>fp(),storage:_I()}}function BI(){try{let e="__storage_test__";return localStorage.setItem(e,e),localStorage.removeItem(e),!0}catch(e){return e instanceof DOMException&&e.name==="QuotaExceededError"&&localStorage&&localStorage.length!==0}}function $I(){return{getItem(){return null},removeItem(){},setItem(){}}}function HI(){return{runtime:"null",send:()=>{},getReferrer:()=>null,getLocation:()=>null,getUserAgent:()=>null,generateUUID:()=>"",storage:$I()}}function GI(e){let t=e.get().mode!=="disabled",r=e.get().environment,n=HI();return t&&r?{storage:n.storage,...r,runtime:"custom"}:t&&zI()&&BI()?hp():n}function zI(){try{return typeof window=="object"}catch{return!1}}function WI(e){return{get:()=>Object.freeze(GI(e))}}function Ty(e){let t=QI(e),r=MI(),n=WI(t),o=qI(n);return{emit:(a,d)=>{let p=t.get(),m=n.get(),f=VI(a,d,p,m,o);return EI({config:p,environment:m,event:f,listenerManager:r})},getMeta:a=>qy(a,t.get(),n.get(),o),on:(a,d)=>r.add({type:a,callback:d}),off:(a,d)=>r.remove(a,d),updateConfig:a=>t.update(a),version:Py}}l();s();u();c();function ky(){return typeof window<"u"&&typeof document<"u"}l();s();u();c();l();s();u();c();var po="3.30.3-pre.b2d577dca0",Oy=["@coveo/atomic","@coveo/quantic"];var Nr=se(e=>e.source,e=>Object.entries(e).map(([t,r])=>`${t}@${r}`).concat(`@coveo/headless@${po}`));var ri=se(e=>e.configuration.organizationId,e=>e.configuration.environment,e=>e.configuration.accessToken,e=>e.configuration.analytics,e=>Nr(e.configuration.analytics),(e,t)=>t,(e,t,r,{trackingId:n,apiBaseUrl:o,enabled:a},d,p)=>{let m=KI(p);return Ty({mode:a?"emit":"disabled",url:o??us(e,t),token:r,trackingId:n??null,source:d,environment:m})}),YI={generateUUID:()=>"",getLocation:()=>null,getReferrer:()=>null,getUserAgent:()=>null,send:()=>{},storage:{getItem:()=>null,setItem:()=>{},removeItem:()=>{}}},KI=e=>{if(!e)return;let t=e();return{...(ky()?hp():YI),generateUUID:()=>t.clientId,getLocation:()=>t.location,getReferrer:()=>t.referrer,getUserAgent:()=>t.userAgent}};l();s();u();c();l();s();u();c();function Gt(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var o=0,n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]]);return r}function V(e,t,r,n){function o(a){return a instanceof r?a:new r(function(d){d(a)})}return new(r||(r=Promise))(function(a,d){function p(g){try{f(n.next(g))}catch(A){d(A)}}function m(g){try{f(n.throw(g))}catch(A){d(A)}}function f(g){g.done?a(g.value):o(g.value).then(p,m)}f((n=n.apply(e,t||[])).next())})}var Ce;(function(e){e.search="search",e.click="click",e.custom="custom",e.view="view",e.collect="collect"})(Ce||(Ce={}));function Ap(){return typeof window<"u"}function Dp(){return typeof navigator<"u"}function mo(){return typeof document<"u"}function vp(){try{return typeof localStorage<"u"}catch{return!1}}function JI(){try{return typeof sessionStorage<"u"}catch{return!1}}function Gy(){return Dp()&&navigator.cookieEnabled}var XI=[Ce.click,Ce.custom,Ce.search,Ce.view],ZI=(e,t)=>XI.indexOf(e)!==-1?Object.assign({language:mo()?document.documentElement.lang:"unknown",userAgent:Dp()?navigator.userAgent:"unknown"},t):t,oi=class e{static set(t,r,n){var o,a,d,p;n&&(a=new Date,a.setTime(a.getTime()+n)),p=window.location.hostname,p.indexOf(".")===-1?Dy(t,r,a):(d=p.split("."),o=d[d.length-2]+"."+d[d.length-1],Dy(t,r,a,o))}static get(t){for(var r=t+"=",n=document.cookie.split(";"),o=0;o<n.length;o++){var a=n[o];if(a=a.replace(/^\s+/,""),a.lastIndexOf(r,0)===0)return a.substring(r.length,a.length)}return null}static erase(t){e.set(t,"",-1)}};function Dy(e,t,r,n){document.cookie=`${e}=${t}`+(r?`;expires=${r.toUTCString()}`:"")+(n?`;domain=${n}`:"")+";path=/;SameSite=Lax"}function ew(){return vp()?localStorage:Gy()?new ai:JI()?sessionStorage:new go}var ai=class e{getItem(t){return oi.get(`${e.prefix}${t}`)}removeItem(t){oi.erase(`${e.prefix}${t}`)}setItem(t,r,n){oi.set(`${e.prefix}${t}`,r,n)}};ai.prefix="coveo_";var Rp=class{constructor(){this.cookieStorage=new ai}getItem(t){return localStorage.getItem(t)||this.cookieStorage.getItem(t)}removeItem(t){this.cookieStorage.removeItem(t),localStorage.removeItem(t)}setItem(t,r){localStorage.setItem(t,r),this.cookieStorage.setItem(t,r,31556926e3)}},go=class{getItem(t){return null}removeItem(t){}setItem(t,r){}},Is="__coveo.analytics.history",tw=20,rw=1e3*60,nw=75,Es=class{constructor(t){this.store=t||ew()}addElement(t){t.internalTime=new Date().getTime(),t=this.cropQueryElement(this.stripEmptyQuery(t));let r=this.getHistoryWithInternalTime();r!=null?this.isValidEntry(t)&&this.setHistory([t].concat(r)):this.setHistory([t])}addElementAsync(t){return V(this,void 0,void 0,function*(){t.internalTime=new Date().getTime(),t=this.cropQueryElement(this.stripEmptyQuery(t));let r=yield this.getHistoryWithInternalTimeAsync();r!=null?this.isValidEntry(t)&&this.setHistory([t].concat(r)):this.setHistory([t])})}getHistory(){let t=this.getHistoryWithInternalTime();return this.stripEmptyQueries(this.stripInternalTime(t))}getHistoryAsync(){return V(this,void 0,void 0,function*(){let t=yield this.getHistoryWithInternalTimeAsync();return this.stripEmptyQueries(this.stripInternalTime(t))})}getHistoryWithInternalTime(){try{let t=this.store.getItem(Is);return t&&typeof t=="string"?JSON.parse(t):[]}catch{return[]}}getHistoryWithInternalTimeAsync(){return V(this,void 0,void 0,function*(){try{let t=yield this.store.getItem(Is);return t?JSON.parse(t):[]}catch{return[]}})}setHistory(t){try{this.store.setItem(Is,JSON.stringify(t.slice(0,tw)))}catch{}}clear(){try{this.store.removeItem(Is)}catch{}}getMostRecentElement(){let t=this.getHistoryWithInternalTime();return Array.isArray(t)?t.sort((n,o)=>(o.internalTime||0)-(n.internalTime||0))[0]:null}cropQueryElement(t){return t.name&&t.value&&t.name.toLowerCase()==="query"&&(t.value=t.value.slice(0,nw)),t}isValidEntry(t){let r=this.getMostRecentElement();return r&&r.value==t.value?(t.internalTime||0)-(r.internalTime||0)>rw:!0}stripInternalTime(t){return Array.isArray(t)?t.map(r=>{let{name:n,time:o,value:a}=r;return{name:n,time:o,value:a}}):[]}stripEmptyQuery(t){let{name:r,time:n,value:o}=t;return r&&typeof o=="string"&&r.toLowerCase()==="query"&&o.trim()===""?{name:r,time:n}:t}stripEmptyQueries(t){return t.map(r=>this.stripEmptyQuery(r))}};var ow=(e,t)=>V(void 0,void 0,void 0,function*(){return e===Ce.view?(yield aw(t.contentIdValue),Object.assign({location:window.location.toString(),referrer:document.referrer,title:document.title},t)):t}),aw=e=>V(void 0,void 0,void 0,function*(){let t=new Es,r={name:"PageView",value:e,time:new Date().toISOString()};yield t.addElementAsync(r)}),ws,iw=new Uint8Array(16);function sw(){if(!ws&&(ws=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!ws))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return ws(iw)}var cw=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function qs(e){return typeof e=="string"&&cw.test(e)}var Xe=[];for(let e=0;e<256;++e)Xe.push((e+256).toString(16).slice(1));function zy(e,t=0){return(Xe[e[t+0]]+Xe[e[t+1]]+Xe[e[t+2]]+Xe[e[t+3]]+"-"+Xe[e[t+4]]+Xe[e[t+5]]+"-"+Xe[e[t+6]]+Xe[e[t+7]]+"-"+Xe[e[t+8]]+Xe[e[t+9]]+"-"+Xe[e[t+10]]+Xe[e[t+11]]+Xe[e[t+12]]+Xe[e[t+13]]+Xe[e[t+14]]+Xe[e[t+15]]).toLowerCase()}function uw(e){if(!qs(e))throw TypeError("Invalid UUID");let t,r=new Uint8Array(16);return r[0]=(t=parseInt(e.slice(0,8),16))>>>24,r[1]=t>>>16&255,r[2]=t>>>8&255,r[3]=t&255,r[4]=(t=parseInt(e.slice(9,13),16))>>>8,r[5]=t&255,r[6]=(t=parseInt(e.slice(14,18),16))>>>8,r[7]=t&255,r[8]=(t=parseInt(e.slice(19,23),16))>>>8,r[9]=t&255,r[10]=(t=parseInt(e.slice(24,36),16))/1099511627776&255,r[11]=t/4294967296&255,r[12]=t>>>24&255,r[13]=t>>>16&255,r[14]=t>>>8&255,r[15]=t&255,r}function lw(e){e=unescape(encodeURIComponent(e));let t=[];for(let r=0;r<e.length;++r)t.push(e.charCodeAt(r));return t}var dw="6ba7b810-9dad-11d1-80b4-00c04fd430c8",pw="6ba7b811-9dad-11d1-80b4-00c04fd430c8";function mw(e,t,r){function n(o,a,d,p){var m;if(typeof o=="string"&&(o=lw(o)),typeof a=="string"&&(a=uw(a)),((m=a)===null||m===void 0?void 0:m.length)!==16)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");let f=new Uint8Array(16+o.length);if(f.set(a),f.set(o,a.length),f=r(f),f[6]=f[6]&15|t,f[8]=f[8]&63|128,d){p=p||0;for(let g=0;g<16;++g)d[p+g]=f[g];return d}return zy(f)}try{n.name=e}catch{}return n.DNS=dw,n.URL=pw,n}var fw=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),jy={randomUUID:fw};function Tn(e,t,r){if(jy.randomUUID&&!t&&!e)return jy.randomUUID();e=e||{};let n=e.random||(e.rng||sw)();if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){r=r||0;for(let o=0;o<16;++o)t[r+o]=n[o];return t}return zy(n)}function gw(e,t,r,n){switch(e){case 0:return t&r^~t&n;case 1:return t^r^n;case 2:return t&r^t&n^r&n;case 3:return t^r^n}}function Sp(e,t){return e<<t|e>>>32-t}function yw(e){let t=[1518500249,1859775393,2400959708,3395469782],r=[1732584193,4023233417,2562383102,271733878,3285377520];if(typeof e=="string"){let d=unescape(encodeURIComponent(e));e=[];for(let p=0;p<d.length;++p)e.push(d.charCodeAt(p))}else Array.isArray(e)||(e=Array.prototype.slice.call(e));e.push(128);let n=e.length/4+2,o=Math.ceil(n/16),a=new Array(o);for(let d=0;d<o;++d){let p=new Uint32Array(16);for(let m=0;m<16;++m)p[m]=e[d*64+m*4]<<24|e[d*64+m*4+1]<<16|e[d*64+m*4+2]<<8|e[d*64+m*4+3];a[d]=p}a[o-1][14]=(e.length-1)*8/Math.pow(2,32),a[o-1][14]=Math.floor(a[o-1][14]),a[o-1][15]=(e.length-1)*8&4294967295;for(let d=0;d<o;++d){let p=new Uint32Array(80);for(let C=0;C<16;++C)p[C]=a[d][C];for(let C=16;C<80;++C)p[C]=Sp(p[C-3]^p[C-8]^p[C-14]^p[C-16],1);let m=r[0],f=r[1],g=r[2],A=r[3],v=r[4];for(let C=0;C<80;++C){let R=Math.floor(C/20),b=Sp(m,5)+gw(R,f,g,A)+v+t[R]+p[C]>>>0;v=A,A=g,g=Sp(f,30)>>>0,f=m,m=b}r[0]=r[0]+m>>>0,r[1]=r[1]+f>>>0,r[2]=r[2]+g>>>0,r[3]=r[3]+A>>>0,r[4]=r[4]+v>>>0}return[r[0]>>24&255,r[0]>>16&255,r[0]>>8&255,r[0]&255,r[1]>>24&255,r[1]>>16&255,r[1]>>8&255,r[1]&255,r[2]>>24&255,r[2]>>16&255,r[2]>>8&255,r[2]&255,r[3]>>24&255,r[3]>>16&255,r[3]>>8&255,r[3]&255,r[4]>>24&255,r[4]>>16&255,r[4]>>8&255,r[4]&255]}var hw=mw("v5",80,yw),Vy=hw,Wy="2.30.45",Ny=e=>`${e.protocol}//${e.hostname}${e.pathname.indexOf("/")===0?e.pathname:`/${e.pathname}`}${e.search}`,ni={pageview:"pageview",event:"event"},Ts=class{constructor({client:t,uuidGenerator:r=Tn}){this.client=t,this.uuidGenerator=r}},xp=class extends Ts{constructor({client:t,uuidGenerator:r=Tn}){super({client:t,uuidGenerator:r}),this.actionData={},this.pageViewId=r(),this.nextPageViewId=this.pageViewId,this.currentLocation=Ny(window.location),this.lastReferrer=mo()?document.referrer:"",this.addHooks()}getApi(t){switch(t){case"setAction":return this.setAction;default:return null}}setAction(t,r){this.action=t,this.actionData=r}clearData(){this.clearPluginData(),this.action=void 0,this.actionData={}}getLocationInformation(t,r){return Object.assign({hitType:t},this.getNextValues(t,r))}updateLocationInformation(t,r){this.updateLocationForNextPageView(t,r)}getDefaultContextInformation(t){let r={title:mo()?document.title:"",encoding:mo()?document.characterSet:"UTF-8"},n={screenResolution:`${screen.width}x${screen.height}`,screenColor:`${screen.colorDepth}-bit`},o={language:navigator.language,userAgent:navigator.userAgent},a={time:Date.now(),eventId:this.uuidGenerator()};return Object.assign(Object.assign(Object.assign(Object.assign({},a),n),o),r)}updateLocationForNextPageView(t,r){let{pageViewId:n,referrer:o,location:a}=this.getNextValues(t,r);this.lastReferrer=o,this.pageViewId=n,this.currentLocation=a,t===ni.pageview&&(this.nextPageViewId=this.uuidGenerator(),this.hasSentFirstPageView=!0)}getNextValues(t,r){return{pageViewId:t===ni.pageview?this.nextPageViewId:this.pageViewId,referrer:t===ni.pageview&&this.hasSentFirstPageView?this.currentLocation:this.lastReferrer,location:t===ni.pageview?this.getCurrentLocationFromPayload(r):this.currentLocation}}getCurrentLocationFromPayload(t){if(t.page){let r=o=>o.replace(/^\/?(.*)$/,"/$1");return`${(o=>o.split("/").slice(0,3).join("/"))(this.currentLocation)}${r(t.page)}`}else return Ny(window.location)}},Mr=class e{constructor(t,r){if(!qs(t))throw Error("Not a valid uuid");this.clientId=t,this.creationDate=Math.floor(r/1e3)}toString(){return this.clientId.replace(/-/g,"")+"."+this.creationDate.toString()}get expired(){let t=Math.floor(Date.now()/1e3)-this.creationDate;return t<0||t>e.expirationTime}validate(t,r){return!this.expired&&this.matchReferrer(t,r)}matchReferrer(t,r){try{let n=new URL(t);return r.some(o=>new RegExp(o.replace(/\\/g,"\\\\").replace(/\./g,"\\.").replace(/\*/g,".*")+"$").test(n.host))}catch{return!1}}static fromString(t){let r=t.split(".");if(r.length!==2)return null;let[n,o]=r;if(n.length!==32||isNaN(parseInt(o)))return null;let a=n.substring(0,8)+"-"+n.substring(8,12)+"-"+n.substring(12,16)+"-"+n.substring(16,20)+"-"+n.substring(20,32);return qs(a)?new e(a,Number.parseInt(o)*1e3):null}};Mr.cvo_cid="cvo_cid";Mr.expirationTime=120;var bp=class extends Ts{constructor({client:t,uuidGenerator:r=Tn}){super({client:t,uuidGenerator:r})}getApi(t){switch(t){case"decorate":return this.decorate;case"acceptFrom":return this.acceptFrom;default:return null}}decorate(t){return V(this,void 0,void 0,function*(){if(!this.client.getCurrentVisitorId)throw new Error("Could not retrieve current clientId");try{let r=new URL(t),n=yield this.client.getCurrentVisitorId();return r.searchParams.set(Mr.cvo_cid,new Mr(n,Date.now()).toString()),r.toString()}catch{throw new Error("Invalid URL provided")}})}acceptFrom(t){this.client.setAcceptedLinkReferrers(t)}};bp.Id="link";var It=Object.keys;function Ps(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}var Cp=128,Yy=192,My=224,Qy=240;function Sw(e){return(e&248)===Qy?4:(e&Qy)===My?3:(e&My)===Yy?2:1}function Cw(e,t){if(t<0||e.length<=t)return e;let r=e.indexOf("%",t-2);for(r<0||r>t?r=t:t=r;r>2&&e.charAt(r-3)=="%";){let n=Number.parseInt(e.substring(r-2,r),16);if((n&Cp)!=Cp)break;if(r-=3,(n&Yy)!=Cp){t-r>=Sw(n)*3&&(r=t);break}}return e.substring(0,r)}var Fp={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"},Aw=It(Fp).map(e=>Fp[e]),vw=[...Aw].join("|"),Rw=new RegExp(`^(${vw}$)`),xw={svcAction:"svc_action",svcActionData:"svc_action_data"},bw=e=>It(e).filter(t=>e[t]!==void 0).reduce((t,r)=>{let n=Fp[r]||r;return Object.assign(Object.assign({},t),{[n]:e[r]})},{}),Fw=e=>Rw.test(e),Iw=[Fw],Ly={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",price:"pr",quantity:"qt",coupon:"cc",position:"ps",group:"group"},_y={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",position:"ps",price:"pr",group:"group"},tt={action:"pa",list:"pal",listSource:"pls"},ks={id:"ti",revenue:"tr",tax:"tt",shipping:"ts",coupon:"tcc",affiliation:"ta",step:"cos",option:"col"},ww=["loyaltyCardId","loyaltyTier","thirdPartyPersona","companyName","favoriteStore","storeName","userIndustry","userRole","userDepartment","businessUnit"],Ip={id:"quoteId",affiliation:"quoteAffiliation"},wp={id:"reviewId",rating:"reviewRating",comment:"reviewComment"},Pw={add:tt,bookmark_add:tt,bookmark_remove:tt,click:tt,checkout:tt,checkout_option:tt,detail:tt,impression:tt,remove:tt,refund:Object.assign(Object.assign({},tt),ks),purchase:Object.assign(Object.assign({},tt),ks),quickview:tt,quote:Object.assign(Object.assign({},tt),Ip),review:Object.assign(Object.assign({},tt),wp)},Ew=It(Ly).map(e=>Ly[e]),qw=It(_y).map(e=>_y[e]),Tw=It(tt).map(e=>tt[e]),kw=It(ks).map(e=>ks[e]),Ow=It(wp).map(e=>wp[e]),Dw=It(Ip).map(e=>Ip[e]),jw=[...Ew,"custom"].join("|"),Vw=[...qw,"custom"].join("|"),Ky="(pr[0-9]+)",Jy="(il[0-9]+pi[0-9]+)",Nw=new RegExp(`^${Ky}(${jw})$`),Mw=new RegExp(`^(${Jy}(${Vw}))|(il[0-9]+nm)$`),Qw=new RegExp(`^(${Tw.join("|")})$`),Lw=new RegExp(`^(${kw.join("|")})$`),_w=new RegExp(`^${Ky}custom$`),Uw=new RegExp(`^${Jy}custom$`),Bw=new RegExp(`^(${[...ww,...Ow,...Dw].join("|")})$`),$w=e=>Nw.test(e),Hw=e=>Mw.test(e),Gw=e=>Qw.test(e),zw=e=>Lw.test(e),Ww=e=>Bw.test(e),Yw=[Hw,$w,Gw,zw,Ww],Kw=[_w,Uw],Jw={anonymizeIp:"aip"},Xw={eventCategory:"ec",eventAction:"ea",eventLabel:"el",eventValue:"ev",page:"dp",visitorId:"cid",clientId:"cid",userId:"uid",currencyCode:"cu"},Zw={hitType:"t",pageViewId:"pid",encoding:"de",location:"dl",referrer:"dr",screenColor:"sd",screenResolution:"sr",title:"dt",userAgent:"ua",language:"ul",eventId:"z",time:"tm"},eP=["contentId","contentIdKey","contentType","searchHub","tab","searchUid","permanentId","contentLocale","trackingId"],tP=Object.assign(Object.assign(Object.assign(Object.assign({},Jw),Xw),Zw),eP.reduce((e,t)=>Object.assign(Object.assign({},e),{[t]:t}),{})),Pp=Object.assign(Object.assign({},tP),xw),rP=e=>{let t=!!e.action&&Pw[e.action]||{};return It(e).reduce((r,n)=>{let o=t[n]||Pp[n]||n;return Object.assign(Object.assign({},r),{[o]:e[n]})},{})},nP=It(Pp).map(e=>Pp[e]),oP=e=>nP.indexOf(e)!==-1,aP=e=>e==="custom",iP=e=>[...Yw,...Iw,oP,aP].some(t=>t(e)),sP=e=>It(e).reduce((t,r)=>{let n=cP(r);return n?Object.assign(Object.assign({},t),uP(n,e[r])):Object.assign(Object.assign({},t),{[r]:e[r]})},{}),cP=e=>{let t;return[...Kw].every(r=>{var n;return t=(n=r.exec(e))===null||n===void 0?void 0:n[1],!t}),t},uP=(e,t)=>It(t).reduce((r,n)=>Object.assign(Object.assign({},r),{[`${e}${n}`]:t[n]}),{}),Ep=class{constructor(t){this.opts=t}sendEvent(t,r){return V(this,void 0,void 0,function*(){if(!this.isAvailable())throw new Error("navigator.sendBeacon is not supported in this browser. Consider adding a polyfill like \"sendbeacon-polyfill\".");let{baseUrl:n,preprocessRequest:o}=this.opts,a=yield this.getQueryParamsForEventType(t),{url:d,payload:p}=yield this.preProcessRequestAsPotentialJSONString(`${n}/analytics/${t}?${a}`,r,o),m=this.encodeForEventType(t,p),f=new Blob([m],{type:"application/x-www-form-urlencoded"});navigator.sendBeacon(d,f)})}isAvailable(){return"sendBeacon"in navigator}deleteHttpCookieVisitorId(){return Promise.resolve()}preProcessRequestAsPotentialJSONString(t,r,n){return V(this,void 0,void 0,function*(){let o=t,a=r;if(n){let d=yield n({url:t,body:JSON.stringify(r)},"analyticsBeacon"),{url:p,body:m}=d;o=p||t;try{a=JSON.parse(m)}catch(f){console.error("Unable to process the request body as a JSON string",f)}}return{payload:a,url:o}})}encodeForEventType(t,r){return this.isEventTypeLegacy(t)?this.encodeEventToJson(t,r):this.encodeEventToJson(t,r,this.opts.token)}getQueryParamsForEventType(t){return V(this,void 0,void 0,function*(){let{token:r,visitorIdProvider:n}=this.opts,o=yield n.getCurrentVisitorId();return[r&&this.isEventTypeLegacy(t)?`access_token=${r}`:"",o?`visitorId=${o}`:"","discardVisitInfo=true"].filter(a=>!!a).join("&")})}isEventTypeLegacy(t){return[Ce.click,Ce.custom,Ce.search,Ce.view].indexOf(t)!==-1}encodeEventToJson(t,r,n){let o=`${t}Event=${encodeURIComponent(JSON.stringify(r))}`;return n&&(o=`access_token=${encodeURIComponent(n)}&${o}`),o}},qp=class{sendEvent(t,r){return V(this,void 0,void 0,function*(){return Promise.resolve()})}deleteHttpCookieVisitorId(){return V(this,void 0,void 0,function*(){return Promise.resolve()})}},Uy=y.fetch,Os=class{constructor(t){this.opts=t}sendEvent(t,r){return V(this,void 0,void 0,function*(){let{baseUrl:n,visitorIdProvider:o,preprocessRequest:a}=this.opts,d=this.shouldAppendVisitorId(t)?yield this.getVisitorIdParam():"",p={url:`${n}/analytics/${t}${d}`,credentials:"include",mode:"cors",headers:this.getHeaders(),method:"POST",body:JSON.stringify(r)},m=Object.assign(Object.assign({},p),a?yield a(p,"analyticsFetch"):{}),{url:f}=m,g=Gt(m,["url"]),A;try{A=yield Uy(f,g)}catch(v){console.error("An error has occured when sending the event.",v);return}if(A.ok){let v=yield A.json();return v.visitorId&&o.setCurrentVisitorId(v.visitorId),v}else{try{A.json()}catch{}throw console.error(`An error has occured when sending the "${t}" event.`,A,r),new Error(`An error has occurred when sending the "${t}" event. Check the console logs for more details.`)}})}deleteHttpCookieVisitorId(){return V(this,void 0,void 0,function*(){let{baseUrl:t}=this.opts,r=`${t}/analytics/visit`;yield Uy(r,{headers:this.getHeaders(),method:"DELETE"})})}shouldAppendVisitorId(t){return[Ce.click,Ce.custom,Ce.search,Ce.view].indexOf(t)!==-1}getVisitorIdParam(){return V(this,void 0,void 0,function*(){let{visitorIdProvider:t}=this.opts,r=yield t.getCurrentVisitorId();return r?`?visitor=${r}`:""})}getHeaders(){let{token:t}=this.opts;return Object.assign(Object.assign({},t?{Authorization:`Bearer ${t}`}:{}),{"Content-Type":"application/json"})}},Tp=class{constructor(t,r){vp()&&Gy()?this.storage=new Rp:vp()?this.storage=localStorage:(console.warn("BrowserRuntime detected no valid storage available.",this),this.storage=new go),this.client=new Os(t),this.beaconClient=new Ep(t),window.addEventListener("beforeunload",()=>{let n=r();for(let{eventType:o,payload:a}of n)this.beaconClient.sendEvent(o,a)})}getClientDependingOnEventType(t){return t==="click"&&this.beaconClient.isAvailable()?this.beaconClient:this.client}},kp=class{constructor(t,r){this.storage=r||new go,this.client=new Os(t)}getClientDependingOnEventType(t){return this.client}},Ds=class{constructor(){this.storage=new go,this.client=new qp}getClientDependingOnEventType(t){return this.client}},lP="xx",dP=e=>e?.startsWith(lP)||!1,pP=`
|
|
27
|
+
${g}`:g;break;case"event":n.event=g;break;case"id":e(n.id=g);break;case"retry":Hb(g,n,t);break}}}}function Hb(e,t,r){let n=parseInt(e,10);Number.isNaN(n)||r(t.retry=n)}function Gb(e,t){let r=new Uint8Array(e.length+t.length);return r.set(e),r.set(t,e.length),r}function ug(){return{data:"",event:"",id:"",retry:void 0}}var qd="text/event-stream",zb=1e3,mg="last-event-id";function fg(){return typeof window<"u"}function as(e,{signal:t,headers:r,onopen:n,onmessage:o,onclose:a,onerror:d,openWhenHidden:p,fetch:m,...f}){return new Promise((g,A)=>{let v={...r};v.accept||(v.accept=qd);let C;function R(){C?.abort(),document.hidden||q()}!p&&fg()&&document.addEventListener("visibilitychange",R);let b=zb,x;function F(){fg()&&document.removeEventListener("visibilitychange",R),clearTimeout(x),C?.abort()}t?.addEventListener("abort",()=>{F(),g()});let P=m??h,I=n??Wb;function q(){return _q2.apply(this,arguments)}function _q2(){_q2=_asyncToGenerator(function*(){C=i.AbortController?new i.AbortController:null;try{let M=yield P(e,{...f,headers:v,signal:C?.signal});yield I(M),yield lg(M.body,dg(pg(D=>{D?v[mg]=D:delete v[mg]},D=>{b=D},o))),a?.(),F(),g()}catch(M){if(!C?.signal?.aborted)try{let D=d?.(M)??b;clearTimeout(x),x=setTimeout(q,D)}catch(D){F(),A(D)}}});return _q2.apply(this,arguments)}q()})}function Wb(e){let t=e.headers.get("content-type");if(!t?.startsWith(qd))throw new Error(`Expected content-type to be ${qd}, Actual: ${t}`)}l();s();u();c();var jr=class{constructor(t){xe(this,"_basePath");xe(this,"_params",{});this._basePath=t}addParam(t,r){this._params={...this.params,[t]:r}}get basePath(){return this._basePath}get params(){return this._params}get hasParams(){return Object.entries(this._params).length}get href(){return this.hasParams?`${this.basePath}?${Object.entries(this.params).map(([t,r])=>`${t}=${encodeURIComponent(r)}`).join("&")}`:this.basePath}};var Yb=(e,t,r)=>new jr(`${e}/rest/organizations/${t}/machinelearning/streaming/${r}`).href,gg=3,Kb=5e3,Jb="text/event-stream",Od=1,Td=class extends Error{},La=class extends Error{constructor(r){super(r.message);this.payload=r}},kd=class{constructor(){xe(this,"timeouts",new Set)}add(t){this.timeouts.add(t)}remove(t){clearTimeout(t),this.timeouts.delete(t)}isActive(t){return this.timeouts.has(t)}},is=class{constructor(t){xe(this,"logger");this.logger=t.logger}streamGeneratedAnswer(t,r){let{url:n,organizationId:o,streamId:a,accessToken:d}=t,{write:p,abort:m,close:f,resetAnswer:g}=r,A=new kd;if(!a){this.logger.error("No stream ID found");return}let v=0,C,R=()=>{C&&!A.isActive(C)&&(x?.abort(),g(),F())},b=()=>{A.remove(C),C=cg(R,C,Kb),A.add(C)},x=new i.AbortController,F=()=>as(Yb(n,o,a),{method:"GET",fetch:h,headers:{Authorization:`Bearer ${d}`,accept:"*/*"},openWhenHidden:!0,signal:x?.signal,onopen(P){return _asyncToGenerator(function*(){if(P.ok&&P.headers.get("content-type")===Jb)return;throw P.status>=400&&P.status<500&&P.status!==429?new La({message:"Error opening stream",code:P.status}):new Td})()},onmessage:P=>{if(x?.signal.aborted)return;let I=JSON.parse(P.data);if(I.finishReason==="ERROR"){A.remove(C),x?.abort(),m({message:I.errorMessage,code:I.statusCode});return}p(I),v=0,I.finishReason==="COMPLETED"?(A.remove(C),f()):b()},onerror:P=>{if(!x?.signal.aborted){if(A.remove(C),P instanceof La)throw x?.abort(),m(P),P;if(++v>gg){this.logger.info("Maximum retry exceeded.");let I={message:"Failed to complete stream.",code:Od};throw x?.abort(),m(I),new La(I)}this.logger.info(`Retrying...(${v}/${gg})`),g()}}});return F(),x}};l();s();u();c();var ss=e=>e;l();s();u();c();l();s();u();c();var wg=kt(xg(),1);l();s();u();c();var re=new Error("Failed to load reducers."),no=class extends Error{constructor(){super(),this.name="UnauthorizedTokenError",this.message="The token being used to perform the request is unauthorized. It may be expired or invalid."}},xn=class extends Error{constructor(r,n){super();xe(this,"statusCode");this.name="Disconnected",this.message=`Client could not connect to the following URL: ${r}`,this.statusCode=n??0}};l();s();u();c();function bg(e){let t=[];for(let r in e){let n=encodeURIComponent(r),o=encodeURIComponent(e[r]);t.push(`${n}=${o}`)}return t.join("&")}function Fg(e){return typeof e!="object"||!e?!1:Object.values(e).every(xF)}function xF(e){return typeof e=="string"||typeof e=="number"||typeof e=="boolean"}function Ig(e){return e===429}var Ot=class e{static call(t){return _asyncToGenerator(function*(){let r=bF(t),{logger:n}=t,o=yield e.preprocessRequest(r,t);n.info(o,"Platform request");let{url:a,...d}=o,p=/*#__PURE__*/function(){var _ref=_asyncToGenerator(function*(){let m=yield h(a,d);if(Ig(m.status))throw m;return m});return function p(){return _ref.apply(this,arguments)}}();try{let m=yield(0,wg.backOff)(p,{retry:f=>{let g=f&&Ig(f.status);return g&&n.info("Platform retrying request"),g}});switch(m.status){case 419:case 401:throw n.info("Platform renewing token"),new no;case 404:throw new xn(a,m.status);default:return n.info({response:m,requestInfo:o},"Platform response"),m}}catch(m){return m.message==="Failed to fetch"?new xn(a):m}})()}static preprocessRequest(t,r){return _asyncToGenerator(function*(){let{origin:n,preprocessRequest:o,logger:a,requestMetadata:d}=r,{signal:p,...m}=t,f=Qa(m);try{let g=yield o(t,n,d);return{...t,...g}}catch(g){a.error(g,"Platform request preprocessing failed. Returning default request options.")}return f})()}};function ke(e,t="prod",r="platform"){let n=t==="prod"?"":t,o=r==="platform"?"":`.${r}`;return`https://${e}${o}.org${n}.coveo.com`}function ut(e,t="prod"){return`${ke(e,t)}/rest/search/v2`}function us(e,t="prod"){return`${ke(e,t,"analytics")}/rest/organizations/${e}/events/v1`}function bF(e){let{url:t,method:r,requestParams:n,contentType:o,accessToken:a,signal:d}=e,p=e.method==="POST"||e.method==="PUT",m=FF(n,o);return{url:t,method:r,headers:{"Content-Type":o,Authorization:`Bearer ${a}`,...e.headers},...(p&&{body:m}),signal:d}}function FF(e,t){return t==="application/x-www-form-urlencoded"?Fg(e)?bg(e):"":JSON.stringify(e)}l();s();u();c();l();s();u();c();function Ba(e){let{url:t,accessToken:r,organizationId:n,authentication:o,...a}=e;return a}var Ud=e=>{let{response:t}=e;return t.body?IF(e):wF(t)},IF=e=>EF(e)?qF(e):PF(e)?e.body:{message:"unknown",statusCode:0,type:"unknown"},wF=e=>{let t=JSON.parse(JSON.stringify(e,Object.getOwnPropertyNames(e)));return{...t,message:`Client side error: ${t.message||""}`,statusCode:400,type:"ClientError"}};function PF(e){return e.body.statusCode!==void 0}function EF(e){return e.body.exception!==void 0}var qF=e=>({message:e.body.exception.code,statusCode:e.response.status,type:e.body.exception.code});l();s();u();c();function Pg(e){return((e.headers.get("content-type")||"").split(";").find(n=>n.indexOf("charset=")!==-1)||"").split("=")[1]||"UTF-8"}l();s();u();c();var Bd=(e,t,r,n)=>{let o=new jr(`${e.url}${n}`);return o.addParam("organizationId",e.organizationId),e.authentication&&o.addParam("authentication",e.authentication),{accessToken:e.accessToken,method:t,contentType:r,url:o.href,origin:"searchApiFetch"}};var Eg=(e,t)=>{let r=new jr(`${e.url}${t}`);return r.addParam("access_token",e.accessToken),r.addParam("organizationId",e.organizationId),r.addParam("uniqueId",e.uniqueId),e.authentication&&r.addParam("authentication",e.authentication),e.q!==void 0&&r.addParam("q",e.q),e.enableNavigation!==void 0&&r.addParam("enableNavigation",`${e.enableNavigation}`),e.requestedOutputSize!==void 0&&r.addParam("requestedOutputSize",`${e.requestedOutputSize}`),r.href},$d=/*#__PURE__*/function(){var _ref2=_asyncToGenerator(function*(e,t){let r=yield Ot.call({...Bd(e,"POST","application/x-www-form-urlencoded","/html"),requestParams:Ba(e),requestMetadata:{method:"html"},...t});if(r instanceof Error)throw r;let n=Pg(r),o=yield r.arrayBuffer(),d=new TextDecoder(n).decode(o);return TF(d)?{success:d}:{error:Ud({response:r,body:d})}});return function $d(_x4,_x5){return _ref2.apply(this,arguments)}}();function TF(e){return typeof e=="string"}l();s();u();c();l();s();u();c();function oo(){return{answerSnippet:"",documentId:{contentIdKey:"",contentIdValue:""},question:"",relatedQuestions:[],score:0}}function $e(){return{response:{results:[],searchUid:"",totalCountFiltered:0,facets:[],generateAutomaticFacets:{facets:[]},queryCorrections:[],triggers:[],questionAnswer:oo(),pipeline:"",splitTestRun:"",termsToHighlight:{},phrasesToHighlight:{},extendedResults:{}},duration:0,queryExecuted:"",error:null,automaticallyCorrected:!1,isLoading:!1,results:[],searchResponseId:"",requestId:"",questionAnswer:oo(),extendedResults:{},searchAction:void 0}}l();s();u();c();l();s();u();c();function kF(e){return{statusCode:e.statusCode,type:e.name,message:e.message}}function OF(e){return{statusCode:e.code,type:e.name,message:e.message,ignored:!0}}function bn(e,t){if(t&&e.name==="AbortError")return{error:OF(e)};if(e instanceof xn)return{error:kF(e)};throw e}var Vr=e=>e.success!==void 0,we=e=>e.error!==void 0;function qg(e){return e.results!==void 0}function Tg(e){let t=oo();return K(e.questionAnswer)?(e.questionAnswer=t,e):(e.questionAnswer={...t,...e.questionAnswer},e)}l();s();u();c();l();s();u();c();var Hd=(e,t)=>`${e.url}/rest/organizations/${e.organizationId}/insight/v1/configs/${e.insightId}${t??""}`,DF=e=>`${e.url}/rest/organizations/${e.organizationId}/machinelearning/user/actions`,$a=(e,t,r,n)=>{jF(e);let o=Hd(e,n);return{accessToken:e.accessToken,method:t,contentType:r,url:o,origin:"insightApiFetch"}},kg=(e,t,r)=>{VF(e);let n=DF(e);return{accessToken:e.accessToken,method:t,contentType:r,url:n,origin:"insightApiFetch"}},Gd=e=>{let{insightId:t,...r}=Ba(e);return r},Og=e=>{if(!e.url)throw new Error("The 'url' attribute must contain a valid platform URL.");if(!e.organizationId)throw new Error("The 'organizationId' attribute must contain a valid organization ID.");if(!e.accessToken)throw new Error("The 'accessToken' attribute must contain a valid platform access token.")},jF=e=>{if(Og(e),!e.insightId)throw new Error("The 'insightId' attribute must contain a valid Insight Panel configuration ID.")},VF=e=>{if(Og(e),!e.userId)throw new Error("The 'userId' attribute must contain a valid user ID.")};var Dg=e=>({...$a(e,"GET","application/json","/interface"),requestParams:{}});l();s();u();c();var jg=e=>({...$a(e,"POST","application/json","/search"),requestParams:Gd(e)}),Vg=e=>({...$a(e,"POST","application/json","/querysuggest"),requestParams:Gd(e)});l();s();u();c();var Ng=e=>({...kg(e,"POST","application/json"),requestParams:{objectId:e.userId}});var ls=class{constructor(t){this.options=t}getInterface(t){var _this=this;return _asyncToGenerator(function*(){let r=yield Ot.call({...Dg(t),..._this.options});if(r instanceof Error)return bn(r);let n=yield r.json();return r.ok?{success:n}:{error:n}})()}query(t,r){var _this2=this;return _asyncToGenerator(function*(){let n=yield Ot.call({...jg(t),requestMetadata:{method:"search",origin:r?.origin},..._this2.options});if(n instanceof Error)return bn(n);let o=yield n.json();return qg(o)&&(o=Tg(o)),n.ok?{success:o}:{error:o}})()}querySuggest(t){var _this3=this;return _asyncToGenerator(function*(){let r=yield Ot.call({...Vg(t),..._this3.options});if(r instanceof Error)return bn(r);let n=yield r.json();return n.completions?{success:n}:{error:n}})()}userActions(t){var _this4=this;return _asyncToGenerator(function*(){let r=yield Ot.call({...Ng(t),..._this4.options});if(r instanceof Error)return bn(r);let n=yield r.json();return r.ok?{success:n}:{error:n}})()}html(t){var _this5=this;return _asyncToGenerator(function*(){return $d(t,{..._this5.options})})()}};l();s();u();c();l();s();u();c();var B=new N({required:!0,emptyAllowed:!1}),be=new N({required:!1,emptyAllowed:!1}),Pe=new N({required:!0,emptyAllowed:!0}),Mg=new N({required:!1,emptyAllowed:!0}),ds=new te({each:B,required:!0}),Qg=new N({required:!1,emptyAllowed:!1,regex:/^\d+\.\d+\.\d+$/}),Lg=new N({required:!1,emptyAllowed:!1,regex:/^[a-zA-Z0-9_\-.]{1,100}$/}),z0=new N({required:!0,emptyAllowed:!1,regex:/^[a-zA-Z0-9_\-.]{1,100}$/}),Dt=({message:e,name:t,stack:r})=>({message:e,name:t,stack:r}),bt=(e,t)=>{if("required"in t)return{payload:new Se({value:t}).validate({value:e}).value};let o=new U({options:{required:!0},values:t}).validate(e);if(o)throw new vn(o);return{payload:e}},E=(e,t)=>{try{return bt(e,t)}catch(r){return{payload:e,error:Dt(r)}}},Bt=(e,t,r,n)=>{let o=`Check the initialState of ${n}`;return _g(e,t,r,o,"Controller initialization error")},He=(e,t,r,n)=>{let o=`Check the options of ${n}`;return _g(e,t,r,o,"Controller initialization error")},_g=(e,t,r,n,o)=>{try{return t.validate(r,n)}catch(a){throw e.logger.error(a,o),a}};l();s();u();c();l();s();u();c();l();s();u();c();function Ye(e){return`Minified Redux error #${e}; visit https://redux.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `}var NF=typeof Symbol=="function"&&Symbol.observable||"@@observable",Ug=NF,zd=()=>Math.random().toString(36).substring(7).split("").join("."),MF={INIT:`@@redux/INIT${zd()}`,REPLACE:`@@redux/REPLACE${zd()}`,PROBE_UNKNOWN_ACTION:()=>`@@redux/PROBE_UNKNOWN_ACTION${zd()}`},ps=MF;function $t(e){if(typeof e!="object"||e===null)return!1;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t||Object.getPrototypeOf(e)===null}function Wd(e,t,r){if(typeof e!="function")throw new Error(Ye(2));if(typeof t=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(Ye(0));if(typeof t=="function"&&typeof r>"u"&&(r=t,t=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(Ye(1));return r(Wd)(e,t)}let n=e,o=t,a=new Map,d=a,p=0,m=!1;function f(){d===a&&(d=new Map,a.forEach((x,F)=>{d.set(F,x)}))}function g(){if(m)throw new Error(Ye(3));return o}function A(x){if(typeof x!="function")throw new Error(Ye(4));if(m)throw new Error(Ye(5));let F=!0;f();let P=p++;return d.set(P,x),function(){if(F){if(m)throw new Error(Ye(6));F=!1,f(),d.delete(P),a=null}}}function v(x){if(!$t(x))throw new Error(Ye(7));if(typeof x.type>"u")throw new Error(Ye(8));if(typeof x.type!="string")throw new Error(Ye(17));if(m)throw new Error(Ye(9));try{m=!0,o=n(o,x)}finally{m=!1}return(a=d).forEach(P=>{P()}),x}function C(x){if(typeof x!="function")throw new Error(Ye(10));n=x,v({type:ps.REPLACE})}function R(){let x=A;return{subscribe(F){if(typeof F!="object"||F===null)throw new Error(Ye(11));function P(){let q=F;q.next&&q.next(g())}return P(),{unsubscribe:x(P)}},[Ug](){return this}}}return v({type:ps.INIT}),{dispatch:v,subscribe:A,getState:g,replaceReducer:C,[Ug]:R}}function QF(e){Object.keys(e).forEach(t=>{let r=e[t];if(typeof r(void 0,{type:ps.INIT})>"u")throw new Error(Ye(12));if(typeof r(void 0,{type:ps.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(Ye(13))})}function ao(e){let t=Object.keys(e),r={};for(let d=0;d<t.length;d++){let p=t[d];typeof e[p]=="function"&&(r[p]=e[p])}let n=Object.keys(r),o,a;try{QF(r)}catch(d){a=d}return function(p={},m){if(a)throw a;let f=!1,g={};for(let A=0;A<n.length;A++){let v=n[A],C=r[v],R=p[v],b=C(R,m);if(typeof b>"u"){let x=m&&m.type;throw new Error(Ye(14))}g[v]=b,f=f||b!==R}return f=f||n.length!==Object.keys(p).length,f?g:p}}function io(...e){return e.length===0?t=>t:e.length===1?e[0]:e.reduce((t,r)=>(...n)=>t(r(...n)))}function Bg(...e){return t=>(r,n)=>{let o=t(r,n),a=()=>{throw new Error(Ye(15))},d={getState:o.getState,dispatch:(m,...f)=>a(m,...f)},p=e.map(m=>m(d));return a=io(...p)(o.dispatch),{...o,dispatch:a}}}function ms(e){return $t(e)&&"type"in e&&typeof e.type=="string"}l();s();u();c();var op=Symbol.for("immer-nothing"),Ha=Symbol.for("immer-draftable"),lt=Symbol.for("immer-state");function Ke(e,...t){throw new Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var In=Object.getPrototypeOf;function St(e){return!!e&&!!e[lt]}function dt(e){return e?Wg(e)||Array.isArray(e)||!!e[Ha]||!!e.constructor?.[Ha]||so(e)||Ja(e):!1}var LF=Object.prototype.constructor.toString();function Wg(e){if(!e||typeof e!="object")return!1;let t=In(e);if(t===null)return!0;let r=Object.hasOwnProperty.call(t,"constructor")&&t.constructor;return r===Object?!0:typeof r=="function"&&Function.toString.call(r)===LF}function ap(e){return St(e)||Ke(15,e),e[lt].base_}function Ga(e,t){wn(e)===0?Reflect.ownKeys(e).forEach(r=>{t(r,e[r],e)}):e.forEach((r,n)=>t(n,r,e))}function wn(e){let t=e[lt];return t?t.type_:Array.isArray(e)?1:so(e)?2:Ja(e)?3:0}function za(e,t){return wn(e)===2?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function Yd(e,t){return wn(e)===2?e.get(t):e[t]}function Yg(e,t,r){let n=wn(e);n===2?e.set(t,r):n===3?e.add(r):e[t]=r}function _F(e,t){return e===t?e!==0||1/e===1/t:e!==e&&t!==t}function so(e){return e instanceof Map}function Ja(e){return e instanceof Set}function Fn(e){return e.copy_||e.base_}function Xd(e,t){if(so(e))return new Map(e);if(Ja(e))return new Set(e);if(Array.isArray(e))return Array.prototype.slice.call(e);let r=Wg(e);if(t===!0||t==="class_only"&&!r){let n=Object.getOwnPropertyDescriptors(e);delete n[lt];let o=Reflect.ownKeys(n);for(let a=0;a<o.length;a++){let d=o[a],p=n[d];p.writable===!1&&(p.writable=!0,p.configurable=!0),(p.get||p.set)&&(n[d]={configurable:!0,writable:!0,enumerable:p.enumerable,value:e[d]})}return Object.create(In(e),n)}else{let n=In(e);if(n!==null&&r)return{...e};let o=Object.create(n);return Object.assign(o,e)}}function hs(e,t=!1){return Ss(e)||St(e)||!dt(e)||(wn(e)>1&&Object.defineProperties(e,{set:{value:fs},add:{value:fs},clear:{value:fs},delete:{value:fs}}),Object.freeze(e),t&&Object.values(e).forEach(r=>hs(r,!0))),e}function fs(){Ke(2)}function Ss(e){return Object.isFrozen(e)}var Zd={};function Pn(e){let t=Zd[e];return t||Ke(0,e),t}function UF(e,t){Zd[e]||(Zd[e]=t)}var Wa;function Kg(){return Wa}function BF(e,t){return{drafts_:[],parent_:e,immer_:t,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function $g(e,t){t&&(Pn("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function ep(e){tp(e),e.drafts_.forEach($F),e.drafts_=null}function tp(e){e===Wa&&(Wa=e.parent_)}function Hg(e){return Wa=BF(Wa,e)}function $F(e){let t=e[lt];t.type_===0||t.type_===1?t.revoke_():t.revoked_=!0}function Gg(e,t){t.unfinalizedDrafts_=t.drafts_.length;let r=t.drafts_[0];return e!==void 0&&e!==r?(r[lt].modified_&&(ep(t),Ke(4)),dt(e)&&(e=gs(t,e),t.parent_||ys(t,e)),t.patches_&&Pn("Patches").generateReplacementPatches_(r[lt].base_,e,t.patches_,t.inversePatches_)):e=gs(t,r,[]),ep(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e!==op?e:void 0}function gs(e,t,r){if(Ss(t))return t;let n=t[lt];if(!n)return Ga(t,(o,a)=>zg(e,n,t,o,a,r)),t;if(n.scope_!==e)return t;if(!n.modified_)return ys(e,n.base_,!0),n.base_;if(!n.finalized_){n.finalized_=!0,n.scope_.unfinalizedDrafts_--;let o=n.copy_,a=o,d=!1;n.type_===3&&(a=new Set(o),o.clear(),d=!0),Ga(a,(p,m)=>zg(e,n,o,p,m,r,d)),ys(e,o,!1),r&&e.patches_&&Pn("Patches").generatePatches_(n,r,e.patches_,e.inversePatches_)}return n.copy_}function zg(e,t,r,n,o,a,d){if(St(o)){let p=a&&t&&t.type_!==3&&!za(t.assigned_,n)?a.concat(n):void 0,m=gs(e,o,p);if(Yg(r,n,m),St(m))e.canAutoFreeze_=!1;else return}else d&&r.add(o);if(dt(o)&&!Ss(o)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;gs(e,o),(!t||!t.scope_.parent_)&&typeof n!="symbol"&&(so(r)?r.has(n):Object.prototype.propertyIsEnumerable.call(r,n))&&ys(e,o)}}function ys(e,t,r=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&hs(t,r)}function HF(e,t){let r=Array.isArray(e),n={type_:r?1:0,scope_:t?t.scope_:Kg(),modified_:!1,finalized_:!1,assigned_:{},parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1},o=n,a=ip;r&&(o=[n],a=Ya);let{revoke:d,proxy:p}=Proxy.revocable(o,a);return n.draft_=p,n.revoke_=d,p}var ip={get(e,t){if(t===lt)return e;let r=Fn(e);if(!za(r,t))return GF(e,r,t);let n=r[t];return e.finalized_||!dt(n)?n:n===Kd(e.base_,t)?(Jd(e),e.copy_[t]=np(n,e)):n},has(e,t){return t in Fn(e)},ownKeys(e){return Reflect.ownKeys(Fn(e))},set(e,t,r){let n=Jg(Fn(e),t);if(n?.set)return n.set.call(e.draft_,r),!0;if(!e.modified_){let o=Kd(Fn(e),t),a=o?.[lt];if(a&&a.base_===r)return e.copy_[t]=r,e.assigned_[t]=!1,!0;if(_F(r,o)&&(r!==void 0||za(e.base_,t)))return!0;Jd(e),rp(e)}return e.copy_[t]===r&&(r!==void 0||t in e.copy_)||Number.isNaN(r)&&Number.isNaN(e.copy_[t])||(e.copy_[t]=r,e.assigned_[t]=!0),!0},deleteProperty(e,t){return Kd(e.base_,t)!==void 0||t in e.base_?(e.assigned_[t]=!1,Jd(e),rp(e)):delete e.assigned_[t],e.copy_&&delete e.copy_[t],!0},getOwnPropertyDescriptor(e,t){let r=Fn(e),n=Reflect.getOwnPropertyDescriptor(r,t);return n&&{writable:!0,configurable:e.type_!==1||t!=="length",enumerable:n.enumerable,value:r[t]}},defineProperty(){Ke(11)},getPrototypeOf(e){return In(e.base_)},setPrototypeOf(){Ke(12)}},Ya={};Ga(ip,(e,t)=>{Ya[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}});Ya.deleteProperty=function(e,t){return Ya.set.call(this,e,t,void 0)};Ya.set=function(e,t,r){return ip.set.call(this,e[0],t,r,e[0])};function Kd(e,t){let r=e[lt];return(r?Fn(r):e)[t]}function GF(e,t,r){let n=Jg(t,r);return n?"value"in n?n.value:n.get?.call(e.draft_):void 0}function Jg(e,t){if(!(t in e))return;let r=In(e);for(;r;){let n=Object.getOwnPropertyDescriptor(r,t);if(n)return n;r=In(r)}}function rp(e){e.modified_||(e.modified_=!0,e.parent_&&rp(e.parent_))}function Jd(e){e.copy_||(e.copy_=Xd(e.base_,e.scope_.immer_.useStrictShallowCopy_))}var zF=class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.produce=(t,r,n)=>{if(typeof t=="function"&&typeof r!="function"){let a=r;r=t;let d=this;return function(m=a,...f){return d.produce(m,g=>r.call(this,g,...f))}}typeof r!="function"&&Ke(6),n!==void 0&&typeof n!="function"&&Ke(7);let o;if(dt(t)){let a=Hg(this),d=np(t,void 0),p=!0;try{o=r(d),p=!1}finally{p?ep(a):tp(a)}return $g(a,n),Gg(o,a)}else if(!t||typeof t!="object"){if(o=r(t),o===void 0&&(o=t),o===op&&(o=void 0),this.autoFreeze_&&hs(o,!0),n){let a=[],d=[];Pn("Patches").generateReplacementPatches_(t,o,a,d),n(a,d)}return o}else Ke(1,t)},this.produceWithPatches=(t,r)=>{if(typeof t=="function")return(d,...p)=>this.produceWithPatches(d,m=>t(m,...p));let n,o;return[this.produce(t,r,(d,p)=>{n=d,o=p}),n,o]},typeof e?.autoFreeze=="boolean"&&this.setAutoFreeze(e.autoFreeze),typeof e?.useStrictShallowCopy=="boolean"&&this.setUseStrictShallowCopy(e.useStrictShallowCopy)}createDraft(e){dt(e)||Ke(8),St(e)&&(e=Xg(e));let t=Hg(this),r=np(e,void 0);return r[lt].isManual_=!0,tp(t),r}finishDraft(e,t){let r=e&&e[lt];(!r||!r.isManual_)&&Ke(9);let{scope_:n}=r;return $g(n,t),Gg(void 0,n)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}applyPatches(e,t){let r;for(r=t.length-1;r>=0;r--){let o=t[r];if(o.path.length===0&&o.op==="replace"){e=o.value;break}}r>-1&&(t=t.slice(r+1));let n=Pn("Patches").applyPatches_;return St(e)?n(e,t):this.produce(e,o=>n(o,t))}};function np(e,t){let r=so(e)?Pn("MapSet").proxyMap_(e,t):Ja(e)?Pn("MapSet").proxySet_(e,t):HF(e,t);return(t?t.scope_:Kg()).drafts_.push(r),r}function Xg(e){return St(e)||Ke(10,e),Zg(e)}function Zg(e){if(!dt(e)||Ss(e))return e;let t=e[lt],r;if(t){if(!t.modified_)return t.base_;t.finalized_=!0,r=Xd(e,t.scope_.immer_.useStrictShallowCopy_)}else r=Xd(e,!0);return Ga(r,(n,o)=>{Yg(r,n,Zg(o))}),t&&(t.finalized_=!1),r}function ey(){let t="replace",r="add",n="remove";function o(v,C,R,b){switch(v.type_){case 0:case 2:return d(v,C,R,b);case 1:return a(v,C,R,b);case 3:return p(v,C,R,b)}}function a(v,C,R,b){let{base_:x,assigned_:F}=v,P=v.copy_;P.length<x.length&&([x,P]=[P,x],[R,b]=[b,R]);for(let I=0;I<x.length;I++)if(F[I]&&P[I]!==x[I]){let q=C.concat([I]);R.push({op:t,path:q,value:A(P[I])}),b.push({op:t,path:q,value:A(x[I])})}for(let I=x.length;I<P.length;I++){let q=C.concat([I]);R.push({op:r,path:q,value:A(P[I])})}for(let I=P.length-1;x.length<=I;--I){let q=C.concat([I]);b.push({op:n,path:q})}}function d(v,C,R,b){let{base_:x,copy_:F}=v;Ga(v.assigned_,(P,I)=>{let q=Yd(x,P),M=Yd(F,P),D=I?za(x,P)?t:r:n;if(q===M&&D===t)return;let T=C.concat(P);R.push(D===n?{op:D,path:T}:{op:D,path:T,value:M}),b.push(D===r?{op:n,path:T}:D===n?{op:r,path:T,value:A(q)}:{op:t,path:T,value:A(q)})})}function p(v,C,R,b){let{base_:x,copy_:F}=v,P=0;x.forEach(I=>{if(!F.has(I)){let q=C.concat([P]);R.push({op:n,path:q,value:I}),b.unshift({op:r,path:q,value:I})}P++}),P=0,F.forEach(I=>{if(!x.has(I)){let q=C.concat([P]);R.push({op:r,path:q,value:I}),b.unshift({op:n,path:q,value:I})}P++})}function m(v,C,R,b){R.push({op:t,path:[],value:C===op?void 0:C}),b.push({op:t,path:[],value:v})}function f(v,C){return C.forEach(R=>{let{path:b,op:x}=R,F=v;for(let M=0;M<b.length-1;M++){let D=wn(F),T=b[M];typeof T!="string"&&typeof T!="number"&&(T=""+T),(D===0||D===1)&&(T==="__proto__"||T==="constructor")&&Ke(19),typeof F=="function"&&T==="prototype"&&Ke(19),F=Yd(F,T),typeof F!="object"&&Ke(18,b.join("/"))}let P=wn(F),I=g(R.value),q=b[b.length-1];switch(x){case t:switch(P){case 2:return F.set(q,I);case 3:Ke(16);default:return F[q]=I}case r:switch(P){case 1:return q==="-"?F.push(I):F.splice(q,0,I);case 2:return F.set(q,I);case 3:return F.add(I);default:return F[q]=I}case n:switch(P){case 1:return F.splice(q,1);case 2:return F.delete(q);case 3:return F.delete(R.value);default:return delete F[q]}default:Ke(17,x)}}),v}function g(v){if(!dt(v))return v;if(Array.isArray(v))return v.map(g);if(so(v))return new Map(Array.from(v.entries()).map(([R,b])=>[R,g(b)]));if(Ja(v))return new Set(Array.from(v).map(g));let C=Object.create(In(v));for(let R in v)C[R]=g(v[R]);return za(v,Ha)&&(C[Ha]=v[Ha]),C}function A(v){return St(v)?g(v):v}UF("Patches",{applyPatches_:f,generatePatches_:o,generateReplacementPatches_:m})}var Ka=new zF,Ar=Ka.produce,Cs=Ka.produceWithPatches.bind(Ka);var sp=Ka.applyPatches.bind(Ka);l();s();u();c();function WF(e,t=`expected a function, instead received ${typeof e}`){if(typeof e!="function")throw new TypeError(t)}function YF(e,t=`expected an object, instead received ${typeof e}`){if(typeof e!="object")throw new TypeError(t)}function KF(e,t="expected all items to be functions, instead received the following types: "){if(!e.every(r=>typeof r=="function")){let r=e.map(n=>typeof n=="function"?`function ${n.name||"unnamed"}()`:typeof n).join(", ");throw new TypeError(`${t}[${r}]`)}}var ty=e=>Array.isArray(e)?e:[e];function JF(e){let t=Array.isArray(e[0])?e[0]:e;return KF(t,"createSelector expects all input-selectors to be functions, but received the following types: "),t}function XF(e,t){let r=[],{length:n}=e;for(let o=0;o<n;o++)r.push(e[o].apply(null,t));return r}var lQ=Symbol();var dQ=Object.getPrototypeOf({});var ZF=class{constructor(e){this.value=e}deref(){return this.value}},eI=typeof WeakRef<"u"?WeakRef:ZF,tI=0,ry=1;function As(){return{s:tI,v:void 0,o:null,p:null}}function co(e,t={}){let r=As(),{resultEqualityCheck:n}=t,o,a=0;function d(){let p=r,{length:m}=arguments;for(let A=0,v=m;A<v;A++){let C=arguments[A];if(typeof C=="function"||typeof C=="object"&&C!==null){let R=p.o;R===null&&(p.o=R=new WeakMap);let b=R.get(C);b===void 0?(p=As(),R.set(C,p)):p=b}else{let R=p.p;R===null&&(p.p=R=new Map);let b=R.get(C);b===void 0?(p=As(),R.set(C,p)):p=b}}let f=p,g;if(p.s===ry)g=p.v;else if(g=e.apply(null,arguments),a++,n){let A=o?.deref?.()??o;A!=null&&n(A,g)&&(g=A,a!==0&&a--),o=typeof g=="object"&&g!==null||typeof g=="function"?new eI(g):g}return f.s=ry,f.v=g,g}return d.clearCache=()=>{r=As(),d.resetResultsCount()},d.resultsCount=()=>a,d.resetResultsCount=()=>{a=0},d}function ny(e,...t){let r=typeof e=="function"?{memoize:e,memoizeOptions:t}:e,n=(...o)=>{let a=0,d=0,p,m={},f=o.pop();typeof f=="object"&&(m=f,f=o.pop()),WF(f,`createSelector expects an output function after the inputs, but received: [${typeof f}]`);let g={...r,...m},{memoize:A,memoizeOptions:v=[],argsMemoize:C=co,argsMemoizeOptions:R=[],devModeChecks:b={}}=g,x=ty(v),F=ty(R),P=JF(o),I=A(function(){return a++,f.apply(null,arguments)},...x),q=!0,M=C(function(){d++;let T=XF(P,arguments);return p=I.apply(null,T),p},...F);return Object.assign(M,{resultFunc:f,memoizedResultFunc:I,dependencies:P,dependencyRecomputations:()=>d,resetDependencyRecomputations:()=>{d=0},lastResult:()=>p,recomputations:()=>a,resetRecomputations:()=>{a=0},memoize:A,argsMemoize:C})};return Object.assign(n,{withTypes:()=>n}),n}var se=ny(co),rI=Object.assign((e,t=se)=>{YF(e,`createStructuredSelector expects first argument to be an object where each property is a selector, instead received a ${typeof e}`);let r=Object.keys(e),n=r.map(a=>e[a]);return t(n,(...a)=>a.reduce((d,p,m)=>(d[r[m]]=p,d),{}))},{withTypes:()=>rI});l();s();u();c();function oy(e){return({dispatch:r,getState:n})=>o=>a=>typeof a=="function"?a(r,n,e):o(a)}var ay=oy(),iy=oy;var nI=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?io:io.apply(null,arguments)},EQ=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__:function(){return function(e){return e}},oI=e=>e&&typeof e.match=="function";function w(e,t){function r(...n){if(t){let o=t(...n);if(!o)throw new Error(jt(0));return{type:e,payload:o.payload,...("meta"in o&&{meta:o.meta}),...("error"in o&&{error:o.error})}}return{type:e,payload:n[0]}}return r.toString=()=>`${e}`,r.type=e,r.match=n=>ms(n)&&n.type===e,r}var dy=class Xa extends Array{constructor(...t){super(...t),Object.setPrototypeOf(this,Xa.prototype)}static get[Symbol.species](){return Xa}concat(...t){return super.concat.apply(this,t)}prepend(...t){return t.length===1&&Array.isArray(t[0])?new Xa(...t[0].concat(this)):new Xa(...t.concat(this))}};function sy(e){return dt(e)?Ar(e,()=>{}):e}function cy(e,t,r){return e.has(t)?e.get(t):e.set(t,r(t)).get(t)}function aI(e){return typeof e=="boolean"}var iI=()=>function(t){let{thunk:r=!0,immutableCheck:n=!0,serializableCheck:o=!0,actionCreatorCheck:a=!0}=t??{},d=new dy;return r&&(aI(r)?d.push(ay):d.push(iy(r.extraArgument))),d},Za="RTK_autoBatch",lo=()=>e=>({payload:e,meta:{[Za]:!0}}),uy=e=>t=>{setTimeout(t,e)},sI=(e={type:"raf"})=>t=>(...r)=>{let n=t(...r),o=!0,a=!1,d=!1,p=new Set,m=e.type==="tick"?queueMicrotask:e.type==="raf"?typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:uy(10):e.type==="callback"?e.queueNotification:uy(e.timeout),f=()=>{d=!1,a&&(a=!1,p.forEach(g=>g()))};return Object.assign({},n,{subscribe(g){let A=()=>o&&g(),v=n.subscribe(A);return p.add(g),()=>{v(),p.delete(g)}},dispatch(g){try{return o=!g?.meta?.[Za],a=!o,a&&(d||(d=!0,m(f))),n.dispatch(g)}finally{o=!0}}})},cI=e=>function(r){let{autoBatch:n=!0}=r??{},o=new dy(e);return n&&o.push(sI(typeof n=="object"?n:void 0)),o};function py(e){let t=iI(),{reducer:r=void 0,middleware:n,devTools:o=!0,preloadedState:a=void 0,enhancers:d=void 0}=e||{},p;if(typeof r=="function")p=r;else if($t(r))p=ao(r);else throw new Error(jt(1));let m;typeof n=="function"?m=n(t):m=t();let f=io;o&&(f=nI({trace:!1,...(typeof o=="object"&&o)}));let g=Bg(...m),A=cI(g),v=typeof d=="function"?d(A):A(),C=f(...v);return Wd(p,a,C)}function my(e){let t={},r=[],n,o={addCase(a,d){let p=typeof a=="string"?a:a.type;if(!p)throw new Error(jt(28));if(p in t)throw new Error(jt(29));return t[p]=d,o},addMatcher(a,d){return r.push({matcher:a,reducer:d}),o},addDefaultCase(a){return n=a,o}};return e(o),[t,r,n]}function uI(e){return typeof e=="function"}function oe(e,t){let[r,n,o]=my(t),a;if(uI(e))a=()=>sy(e());else{let p=sy(e);a=()=>p}function d(p=a(),m){let f=[r[m.type],...n.filter(({matcher:g})=>g(m)).map(({reducer:g})=>g)];return f.filter(g=>!!g).length===0&&(f=[o]),f.reduce((g,A)=>{if(A)if(St(g)){let C=A(g,m);return C===void 0?g:C}else{if(dt(g))return Ar(g,v=>A(v,m));{let v=A(g,m);if(v===void 0){if(g===null)return g;throw Error("A case reducer on a non-draftable value must not return undefined")}return v}}return g},p)}return d.getInitialState=a,d}var fy=(e,t)=>oI(e)?e.match(t):e(t);function Ht(...e){return t=>e.some(r=>fy(r,t))}function uo(...e){return t=>e.every(r=>fy(r,t))}function Rs(e,t){if(!e||!e.meta)return!1;let r=typeof e.meta.requestId=="string",n=t.indexOf(e.meta.requestStatus)>-1;return r&&n}function ei(e){return typeof e[0]=="function"&&"pending"in e[0]&&"fulfilled"in e[0]&&"rejected"in e[0]}function xs(...e){return e.length===0?t=>Rs(t,["pending"]):ei(e)?Ht(...e.map(t=>t.pending)):xs()(e[0])}function En(...e){return e.length===0?t=>Rs(t,["rejected"]):ei(e)?Ht(...e.map(t=>t.rejected)):En()(e[0])}function ti(...e){let t=r=>r&&r.meta&&r.meta.rejectedWithValue;return e.length===0?uo(En(...e),t):ei(e)?uo(En(...e),t):ti()(e[0])}function vr(...e){return e.length===0?t=>Rs(t,["fulfilled"]):ei(e)?Ht(...e.map(t=>t.fulfilled)):vr()(e[0])}function bs(...e){return e.length===0?t=>Rs(t,["pending","fulfilled","rejected"]):ei(e)?Ht(...e.flatMap(t=>[t.pending,t.rejected,t.fulfilled])):bs()(e[0])}var lI="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",Fs=(e=21)=>{let t="",r=e;for(;r--;)t+=lI[Math.random()*64|0];return t},dI=["name","message","stack","code"],cp=class{constructor(e,t){xe(this,"_type");this.payload=e,this.meta=t}},ly=class{constructor(e,t){xe(this,"_type");this.payload=e,this.meta=t}},pI=e=>{if(typeof e=="object"&&e!==null){let t={};for(let r of dI)typeof e[r]=="string"&&(t[r]=e[r]);return t}return{message:String(e)}},ee=(()=>{function e(t,r,n){let o=w(t+"/fulfilled",(m,f,g,A)=>({payload:m,meta:{...(A||{}),arg:g,requestId:f,requestStatus:"fulfilled"}})),a=w(t+"/pending",(m,f,g)=>({payload:void 0,meta:{...(g||{}),arg:f,requestId:m,requestStatus:"pending"}})),d=w(t+"/rejected",(m,f,g,A,v)=>({payload:A,error:(n&&n.serializeError||pI)(m||"Rejected"),meta:{...(v||{}),arg:g,requestId:f,rejectedWithValue:!!A,requestStatus:"rejected",aborted:m?.name==="AbortError",condition:m?.name==="ConditionError"}}));function p(m){return(f,g,A)=>{let v=n?.idGenerator?n.idGenerator(m):Fs(),C=new i.AbortController,R,b;function x(P){b=P,C.abort()}let F=_asyncToGenerator(function*(){let P;try{let q=n?.condition?.(m,{getState:g,extra:A});if(fI(q)&&(q=yield q),q===!1||C.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};let M=new Promise((D,T)=>{R=()=>{T({name:"AbortError",message:b||"Aborted"})},C.signal.addEventListener("abort",R)});f(a(v,m,n?.getPendingMeta?.({requestId:v,arg:m},{getState:g,extra:A}))),P=yield Promise.race([M,Promise.resolve(r(m,{dispatch:f,getState:g,extra:A,requestId:v,signal:C.signal,abort:x,rejectWithValue:(D,T)=>new cp(D,T),fulfillWithValue:(D,T)=>new ly(D,T)})).then(D=>{if(D instanceof cp)throw D;return D instanceof ly?o(D.payload,v,m,D.meta):o(D,v,m)})])}catch(q){P=q instanceof cp?d(null,v,m,q.payload,q.meta):d(q,v,m)}finally{R&&C.signal.removeEventListener("abort",R)}return n&&!n.dispatchConditionRejection&&d.match(P)&&P.meta.condition||f(P),P})();return Object.assign(F,{abort:x,requestId:v,arg:m,unwrap(){return F.then(mI)}})}}return Object.assign(p,{pending:a,rejected:d,fulfilled:o,settled:Ht(d,o),typePrefix:t})}return e.withTypes=()=>e,e})();function mI(e){if(e.meta&&e.meta.rejectedWithValue)throw e.payload;if(e.error)throw e.error;return e.payload}function fI(e){return e!==null&&typeof e=="object"&&typeof e.then=="function"}var gy=Symbol.for("rtk-slice-createasyncthunk"),DQ={[gy]:ee};function gI(e,t){return`${e}/${t}`}function yI({creators:e}={}){let t=e?.asyncThunk?.[gy];return function(n){let{name:o,reducerPath:a=o}=n;if(!o)throw new Error(jt(11));typeof process<"u";let d=(typeof n.reducers=="function"?n.reducers(SI()):n.reducers)||{},p=Object.keys(d),m={sliceCaseReducersByName:{},sliceCaseReducersByType:{},actionCreators:{},sliceMatchers:[]},f={addCase(P,I){let q=typeof P=="string"?P:P.type;if(!q)throw new Error(jt(12));if(q in m.sliceCaseReducersByType)throw new Error(jt(13));return m.sliceCaseReducersByType[q]=I,f},addMatcher(P,I){return m.sliceMatchers.push({matcher:P,reducer:I}),f},exposeAction(P,I){return m.actionCreators[P]=I,f},exposeCaseReducer(P,I){return m.sliceCaseReducersByName[P]=I,f}};p.forEach(P=>{let I=d[P],q={reducerName:P,type:gI(o,P),createNotation:typeof n.reducers=="function"};AI(I)?RI(q,I,f,t):CI(q,I,f)});function g(){let[P={},I=[],q=void 0]=typeof n.extraReducers=="function"?my(n.extraReducers):[n.extraReducers],M={...P,...m.sliceCaseReducersByType};return oe(n.initialState,D=>{for(let T in M)D.addCase(T,M[T]);for(let T of m.sliceMatchers)D.addMatcher(T.matcher,T.reducer);for(let T of I)D.addMatcher(T.matcher,T.reducer);q&&D.addDefaultCase(q)})}let A=P=>P,v=new Map,C;function R(P,I){return C||(C=g()),C(P,I)}function b(){return C||(C=g()),C.getInitialState()}function x(P,I=!1){function q(D){let T=D[P];return typeof T>"u"&&I&&(T=b()),T}function M(D=A){let T=cy(v,I,()=>new WeakMap);return cy(T,D,()=>{let O={};for(let[j,Q]of Object.entries(n.selectors??{}))O[j]=hI(Q,D,b,I);return O})}return{reducerPath:P,getSelectors:M,get selectors(){return M(q)},selectSlice:q}}let F={name:o,reducer:R,actions:m.actionCreators,caseReducers:m.sliceCaseReducersByName,getInitialState:b,...x(a),injectInto(P,{reducerPath:I,...q}={}){let M=I??a;return P.inject({reducerPath:M,reducer:R},q),{...F,...x(M,!0)}}};return F}}function hI(e,t,r,n){function o(a,...d){let p=t(a);return typeof p>"u"&&n&&(p=r()),e(p,...d)}return o.unwrapped=e,o}var qn=yI();function SI(){function e(t,r){return{_reducerDefinitionType:"asyncThunk",payloadCreator:t,...r}}return e.withTypes=()=>e,{reducer(t){return Object.assign({[t.name](...r){return t(...r)}}[t.name],{_reducerDefinitionType:"reducer"})},preparedReducer(t,r){return{_reducerDefinitionType:"reducerWithPrepare",prepare:t,reducer:r}},asyncThunk:e}}function CI({type:e,reducerName:t,createNotation:r},n,o){let a,d;if("reducer"in n){if(r&&!vI(n))throw new Error(jt(17));a=n.reducer,d=n.prepare}else a=n;o.addCase(e,a).exposeCaseReducer(t,a).exposeAction(t,d?w(e,d):w(e))}function AI(e){return e._reducerDefinitionType==="asyncThunk"}function vI(e){return e._reducerDefinitionType==="reducerWithPrepare"}function RI({type:e,reducerName:t},r,n,o){if(!o)throw new Error(jt(18));let{payloadCreator:a,fulfilled:d,pending:p,rejected:m,settled:f,options:g}=r,A=o(e,a,g);n.exposeAction(t,A),d&&n.addCase(A.fulfilled,d),p&&n.addCase(A.pending,p),m&&n.addCase(A.rejected,m),f&&n.addMatcher(A.settled,f),n.exposeCaseReducer(t,{fulfilled:d||vs,pending:p||vs,rejected:m||vs,settled:f||vs})}function vs(){}var yy="listener",hy="completed",Sy="cancelled",jQ=`task-${Sy}`,VQ=`task-${hy}`,NQ=`${yy}-${Sy}`,MQ=`${yy}-${hy}`;var{assign:Cy}=Object;var up="listenerMiddleware";var xI=Cy(w(`${up}/add`),{withTypes:()=>xI}),QQ=w(`${up}/removeAll`),bI=Cy(w(`${up}/remove`),{withTypes:()=>bI});var LQ=Symbol.for("rtk-state-proxy-original");function jt(e){return`Minified Redux Toolkit error #${e}; visit https://redux-toolkit.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `}l();s();u();c();l();s();u();c();l();s();u();c();l();s();u();c();l();s();u();c();var Ay=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i;function FI(e){return typeof e=="string"&&Ay.test(e)}var lp=FI;l();s();u();c();var Je=[];for(let e=0;e<256;++e)Je.push((e+256).toString(16).slice(1));function vy(e,t=0){return(Je[e[t+0]]+Je[e[t+1]]+Je[e[t+2]]+Je[e[t+3]]+"-"+Je[e[t+4]]+Je[e[t+5]]+"-"+Je[e[t+6]]+Je[e[t+7]]+"-"+Je[e[t+8]]+Je[e[t+9]]+"-"+Je[e[t+10]]+Je[e[t+11]]+Je[e[t+12]]+Je[e[t+13]]+Je[e[t+14]]+Je[e[t+15]]).toLowerCase()}l();s();u();c();var dp,II=new Uint8Array(16);function pp(){if(!dp){if(typeof crypto>"u"||!crypto.getRandomValues)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");dp=crypto.getRandomValues.bind(crypto)}return dp(II)}l();s();u();c();l();s();u();c();var wI=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),mp={randomUUID:wI};function PI(e,t,r){if(mp.randomUUID&&!t&&!e)return mp.randomUUID();e=e||{};let n=e.random??e.rng?.()??pp();if(n.length<16)throw new Error("Random bytes length must be >= 16");if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){if(r=r||0,r<0||r+16>t.length)throw new RangeError(`UUID byte range ${r}:${r+15} is out of buffer bounds`);for(let o=0;o<16;++o)t[r+o]=n[o];return t}return vy(n)}var fp=PI;l();s();u();c();function Ry(){let e=typeof window<"u";return{sendMessage(t){e&&window.postMessage(t,"*")}}}function EI({config:e,environment:t,event:r,listenerManager:n}){let{url:o,token:a,mode:d}=e;d!=="disabled"&&(n.call(r),t.send(o,a,r))}var xy="visitorId";function qI(e){return{getClientId:()=>{let t=e.get(),r=t.storage,n=r.getItem(xy),o=n&&lp(n)?n:t.generateUUID();return r.setItem(xy,o),o}}}var Py="1.2.7",gp=128,Ey=192,by=224,Fy=240,TI=248;function kI(e){return(e&TI)===Fy?4:(e&Fy)===by?3:(e&by)===Ey?2:1}function OI(e,t){if(t<0||e.length<=t)return e;let r=e.indexOf("%",t-2);for(r<0||r>t?r=t:t=r;r>2&&e.charAt(r-3)=="%";){let n=Number.parseInt(e.substring(r-2,r),16);if((n&gp)!=gp)break;if(r-=3,(n&Ey)!=gp){t-r>=kI(n)*3&&(r=t);break}}return e.substring(0,r)}function DI(e){let{trackingId:t}=e;return{trackingId:t}}function jI(e){return(e.source||[]).concat([`relay@${Py}`])}function qy(e,t,r,n){let{getReferrer:o,getLocation:a,getUserAgent:d}=r,p=DI(t),m=n.getClientId();return Object.freeze({type:e,config:p,ts:Date.now(),source:jI(t),clientId:m,userAgent:d(),referrer:Iy(o()),location:Iy(a())})}function Iy(e){return e!==null?OI(e,1024):null}function VI(e,t,r,n,o){return{...t,meta:qy(e,r,n,o)}}var NI="*";function MI(){let e=[];function t({type:m,callback:f}){return e.findIndex(g=>g.type===m&&g.callback===f)}function r(m,f){return m.type==="*"||f===m.type}function n(m){return t(m)<0&&e.push(m),()=>p(m.type,m.callback)}function o(m){e.forEach(f=>{if(r(f,m.meta.type))try{f.callback(m)}catch(g){console.error(g)}})}function a(m){if(m===NI)e.length=0;else for(let f=e.length-1;f>=0;f--)e[f].type===m&&e.splice(f,1)}function d(m){let f=t(m);f>=0&&e.splice(f,1)}function p(m,f){f?d({type:m,callback:f}):a(m)}return{add:n,call:o,remove:p}}function wy({url:e,token:t,trackingId:r,...n}){return Object.freeze({url:e,token:t,trackingId:r,...(!!n.mode&&{mode:n.mode}),...(!!n.source&&{source:n.source}),...(!!n.environment&&{environment:n.environment})})}function QI(e){let t=wy(e);return{get:()=>t,update:r=>{t=wy({...t,...r})}}}var yp=LI();function LI(){let e="coveo_",t=r=>{let n=r.split(".").slice(-2);return n.length==2?n.join("."):""};return{getItem(r){let n=`${e}${r}=`,o=document.cookie.split(";");for(let a of o){let d=a.replace(/^\s+/,"");if(d.lastIndexOf(n,0)===0)return d.substring(n.length,d.length)}return null},setItem(r,n,o){let a=t(window.location.hostname),d=`;expires=${new Date(new Date().getTime()+o).toUTCString()}`,p=a?`;domain=${a}`:"";document.cookie=`${e}${r}=${n}${d}${p};path=/;SameSite=Lax`},removeItem(r){this.setItem(r,"",-1)}}}function _I(){return{getItem(e){return yp.getItem(e)||localStorage.getItem(e)},removeItem(e){yp.removeItem(e),localStorage.removeItem(e)},setItem(e,t){localStorage.setItem(e,t),yp.setItem(e,t,31556952e3)}}}function UI(){let e=document.referrer;return e===""?null:e}function hp(){return{runtime:"browser",send:(e,t,r)=>{let n=navigator.sendBeacon(`${e}?access_token=${t}`,new Blob([JSON.stringify([r])],{type:"application/json"}));if(Ry().sendMessage({kind:"EVENT_PROTOCOL",event:r,url:e,token:t}),!n)throw new Error("Failed to send the event(s) because the payload size exceeded the maximum allowed size (32 KB). Please contact support if the problem persists.")},getReferrer:()=>UI(),getLocation:()=>window.location.href,getUserAgent:()=>navigator.userAgent,generateUUID:()=>fp(),storage:_I()}}function BI(){try{let e="__storage_test__";return localStorage.setItem(e,e),localStorage.removeItem(e),!0}catch(e){return e instanceof DOMException&&e.name==="QuotaExceededError"&&localStorage&&localStorage.length!==0}}function $I(){return{getItem(){return null},removeItem(){},setItem(){}}}function HI(){return{runtime:"null",send:()=>{},getReferrer:()=>null,getLocation:()=>null,getUserAgent:()=>null,generateUUID:()=>"",storage:$I()}}function GI(e){let t=e.get().mode!=="disabled",r=e.get().environment,n=HI();return t&&r?{storage:n.storage,...r,runtime:"custom"}:t&&zI()&&BI()?hp():n}function zI(){try{return typeof window=="object"}catch{return!1}}function WI(e){return{get:()=>Object.freeze(GI(e))}}function Ty(e){let t=QI(e),r=MI(),n=WI(t),o=qI(n);return{emit:(a,d)=>{let p=t.get(),m=n.get(),f=VI(a,d,p,m,o);return EI({config:p,environment:m,event:f,listenerManager:r})},getMeta:a=>qy(a,t.get(),n.get(),o),on:(a,d)=>r.add({type:a,callback:d}),off:(a,d)=>r.remove(a,d),updateConfig:a=>t.update(a),version:Py}}l();s();u();c();function ky(){return typeof window<"u"&&typeof document<"u"}l();s();u();c();l();s();u();c();var po="3.30.2",Oy=["@coveo/atomic","@coveo/quantic"];var Nr=se(e=>e.source,e=>Object.entries(e).map(([t,r])=>`${t}@${r}`).concat(`@coveo/headless@${po}`));var ri=se(e=>e.configuration.organizationId,e=>e.configuration.environment,e=>e.configuration.accessToken,e=>e.configuration.analytics,e=>Nr(e.configuration.analytics),(e,t)=>t,(e,t,r,{trackingId:n,apiBaseUrl:o,enabled:a},d,p)=>{let m=KI(p);return Ty({mode:a?"emit":"disabled",url:o??us(e,t),token:r,trackingId:n??null,source:d,environment:m})}),YI={generateUUID:()=>"",getLocation:()=>null,getReferrer:()=>null,getUserAgent:()=>null,send:()=>{},storage:{getItem:()=>null,setItem:()=>{},removeItem:()=>{}}},KI=e=>{if(!e)return;let t=e();return{...(ky()?hp():YI),generateUUID:()=>t.clientId,getLocation:()=>t.location,getReferrer:()=>t.referrer,getUserAgent:()=>t.userAgent}};l();s();u();c();l();s();u();c();function Gt(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var o=0,n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]]);return r}function V(e,t,r,n){function o(a){return a instanceof r?a:new r(function(d){d(a)})}return new(r||(r=Promise))(function(a,d){function p(g){try{f(n.next(g))}catch(A){d(A)}}function m(g){try{f(n.throw(g))}catch(A){d(A)}}function f(g){g.done?a(g.value):o(g.value).then(p,m)}f((n=n.apply(e,t||[])).next())})}var Ce;(function(e){e.search="search",e.click="click",e.custom="custom",e.view="view",e.collect="collect"})(Ce||(Ce={}));function Ap(){return typeof window<"u"}function Dp(){return typeof navigator<"u"}function mo(){return typeof document<"u"}function vp(){try{return typeof localStorage<"u"}catch{return!1}}function JI(){try{return typeof sessionStorage<"u"}catch{return!1}}function Gy(){return Dp()&&navigator.cookieEnabled}var XI=[Ce.click,Ce.custom,Ce.search,Ce.view],ZI=(e,t)=>XI.indexOf(e)!==-1?Object.assign({language:mo()?document.documentElement.lang:"unknown",userAgent:Dp()?navigator.userAgent:"unknown"},t):t,oi=class e{static set(t,r,n){var o,a,d,p;n&&(a=new Date,a.setTime(a.getTime()+n)),p=window.location.hostname,p.indexOf(".")===-1?Dy(t,r,a):(d=p.split("."),o=d[d.length-2]+"."+d[d.length-1],Dy(t,r,a,o))}static get(t){for(var r=t+"=",n=document.cookie.split(";"),o=0;o<n.length;o++){var a=n[o];if(a=a.replace(/^\s+/,""),a.lastIndexOf(r,0)===0)return a.substring(r.length,a.length)}return null}static erase(t){e.set(t,"",-1)}};function Dy(e,t,r,n){document.cookie=`${e}=${t}`+(r?`;expires=${r.toUTCString()}`:"")+(n?`;domain=${n}`:"")+";path=/;SameSite=Lax"}function ew(){return vp()?localStorage:Gy()?new ai:JI()?sessionStorage:new go}var ai=class e{getItem(t){return oi.get(`${e.prefix}${t}`)}removeItem(t){oi.erase(`${e.prefix}${t}`)}setItem(t,r,n){oi.set(`${e.prefix}${t}`,r,n)}};ai.prefix="coveo_";var Rp=class{constructor(){this.cookieStorage=new ai}getItem(t){return localStorage.getItem(t)||this.cookieStorage.getItem(t)}removeItem(t){this.cookieStorage.removeItem(t),localStorage.removeItem(t)}setItem(t,r){localStorage.setItem(t,r),this.cookieStorage.setItem(t,r,31556926e3)}},go=class{getItem(t){return null}removeItem(t){}setItem(t,r){}},Is="__coveo.analytics.history",tw=20,rw=1e3*60,nw=75,Es=class{constructor(t){this.store=t||ew()}addElement(t){t.internalTime=new Date().getTime(),t=this.cropQueryElement(this.stripEmptyQuery(t));let r=this.getHistoryWithInternalTime();r!=null?this.isValidEntry(t)&&this.setHistory([t].concat(r)):this.setHistory([t])}addElementAsync(t){return V(this,void 0,void 0,function*(){t.internalTime=new Date().getTime(),t=this.cropQueryElement(this.stripEmptyQuery(t));let r=yield this.getHistoryWithInternalTimeAsync();r!=null?this.isValidEntry(t)&&this.setHistory([t].concat(r)):this.setHistory([t])})}getHistory(){let t=this.getHistoryWithInternalTime();return this.stripEmptyQueries(this.stripInternalTime(t))}getHistoryAsync(){return V(this,void 0,void 0,function*(){let t=yield this.getHistoryWithInternalTimeAsync();return this.stripEmptyQueries(this.stripInternalTime(t))})}getHistoryWithInternalTime(){try{let t=this.store.getItem(Is);return t&&typeof t=="string"?JSON.parse(t):[]}catch{return[]}}getHistoryWithInternalTimeAsync(){return V(this,void 0,void 0,function*(){try{let t=yield this.store.getItem(Is);return t?JSON.parse(t):[]}catch{return[]}})}setHistory(t){try{this.store.setItem(Is,JSON.stringify(t.slice(0,tw)))}catch{}}clear(){try{this.store.removeItem(Is)}catch{}}getMostRecentElement(){let t=this.getHistoryWithInternalTime();return Array.isArray(t)?t.sort((n,o)=>(o.internalTime||0)-(n.internalTime||0))[0]:null}cropQueryElement(t){return t.name&&t.value&&t.name.toLowerCase()==="query"&&(t.value=t.value.slice(0,nw)),t}isValidEntry(t){let r=this.getMostRecentElement();return r&&r.value==t.value?(t.internalTime||0)-(r.internalTime||0)>rw:!0}stripInternalTime(t){return Array.isArray(t)?t.map(r=>{let{name:n,time:o,value:a}=r;return{name:n,time:o,value:a}}):[]}stripEmptyQuery(t){let{name:r,time:n,value:o}=t;return r&&typeof o=="string"&&r.toLowerCase()==="query"&&o.trim()===""?{name:r,time:n}:t}stripEmptyQueries(t){return t.map(r=>this.stripEmptyQuery(r))}};var ow=(e,t)=>V(void 0,void 0,void 0,function*(){return e===Ce.view?(yield aw(t.contentIdValue),Object.assign({location:window.location.toString(),referrer:document.referrer,title:document.title},t)):t}),aw=e=>V(void 0,void 0,void 0,function*(){let t=new Es,r={name:"PageView",value:e,time:new Date().toISOString()};yield t.addElementAsync(r)}),ws,iw=new Uint8Array(16);function sw(){if(!ws&&(ws=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!ws))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return ws(iw)}var cw=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function qs(e){return typeof e=="string"&&cw.test(e)}var Xe=[];for(let e=0;e<256;++e)Xe.push((e+256).toString(16).slice(1));function zy(e,t=0){return(Xe[e[t+0]]+Xe[e[t+1]]+Xe[e[t+2]]+Xe[e[t+3]]+"-"+Xe[e[t+4]]+Xe[e[t+5]]+"-"+Xe[e[t+6]]+Xe[e[t+7]]+"-"+Xe[e[t+8]]+Xe[e[t+9]]+"-"+Xe[e[t+10]]+Xe[e[t+11]]+Xe[e[t+12]]+Xe[e[t+13]]+Xe[e[t+14]]+Xe[e[t+15]]).toLowerCase()}function uw(e){if(!qs(e))throw TypeError("Invalid UUID");let t,r=new Uint8Array(16);return r[0]=(t=parseInt(e.slice(0,8),16))>>>24,r[1]=t>>>16&255,r[2]=t>>>8&255,r[3]=t&255,r[4]=(t=parseInt(e.slice(9,13),16))>>>8,r[5]=t&255,r[6]=(t=parseInt(e.slice(14,18),16))>>>8,r[7]=t&255,r[8]=(t=parseInt(e.slice(19,23),16))>>>8,r[9]=t&255,r[10]=(t=parseInt(e.slice(24,36),16))/1099511627776&255,r[11]=t/4294967296&255,r[12]=t>>>24&255,r[13]=t>>>16&255,r[14]=t>>>8&255,r[15]=t&255,r}function lw(e){e=unescape(encodeURIComponent(e));let t=[];for(let r=0;r<e.length;++r)t.push(e.charCodeAt(r));return t}var dw="6ba7b810-9dad-11d1-80b4-00c04fd430c8",pw="6ba7b811-9dad-11d1-80b4-00c04fd430c8";function mw(e,t,r){function n(o,a,d,p){var m;if(typeof o=="string"&&(o=lw(o)),typeof a=="string"&&(a=uw(a)),((m=a)===null||m===void 0?void 0:m.length)!==16)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");let f=new Uint8Array(16+o.length);if(f.set(a),f.set(o,a.length),f=r(f),f[6]=f[6]&15|t,f[8]=f[8]&63|128,d){p=p||0;for(let g=0;g<16;++g)d[p+g]=f[g];return d}return zy(f)}try{n.name=e}catch{}return n.DNS=dw,n.URL=pw,n}var fw=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),jy={randomUUID:fw};function Tn(e,t,r){if(jy.randomUUID&&!t&&!e)return jy.randomUUID();e=e||{};let n=e.random||(e.rng||sw)();if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){r=r||0;for(let o=0;o<16;++o)t[r+o]=n[o];return t}return zy(n)}function gw(e,t,r,n){switch(e){case 0:return t&r^~t&n;case 1:return t^r^n;case 2:return t&r^t&n^r&n;case 3:return t^r^n}}function Sp(e,t){return e<<t|e>>>32-t}function yw(e){let t=[1518500249,1859775393,2400959708,3395469782],r=[1732584193,4023233417,2562383102,271733878,3285377520];if(typeof e=="string"){let d=unescape(encodeURIComponent(e));e=[];for(let p=0;p<d.length;++p)e.push(d.charCodeAt(p))}else Array.isArray(e)||(e=Array.prototype.slice.call(e));e.push(128);let n=e.length/4+2,o=Math.ceil(n/16),a=new Array(o);for(let d=0;d<o;++d){let p=new Uint32Array(16);for(let m=0;m<16;++m)p[m]=e[d*64+m*4]<<24|e[d*64+m*4+1]<<16|e[d*64+m*4+2]<<8|e[d*64+m*4+3];a[d]=p}a[o-1][14]=(e.length-1)*8/Math.pow(2,32),a[o-1][14]=Math.floor(a[o-1][14]),a[o-1][15]=(e.length-1)*8&4294967295;for(let d=0;d<o;++d){let p=new Uint32Array(80);for(let C=0;C<16;++C)p[C]=a[d][C];for(let C=16;C<80;++C)p[C]=Sp(p[C-3]^p[C-8]^p[C-14]^p[C-16],1);let m=r[0],f=r[1],g=r[2],A=r[3],v=r[4];for(let C=0;C<80;++C){let R=Math.floor(C/20),b=Sp(m,5)+gw(R,f,g,A)+v+t[R]+p[C]>>>0;v=A,A=g,g=Sp(f,30)>>>0,f=m,m=b}r[0]=r[0]+m>>>0,r[1]=r[1]+f>>>0,r[2]=r[2]+g>>>0,r[3]=r[3]+A>>>0,r[4]=r[4]+v>>>0}return[r[0]>>24&255,r[0]>>16&255,r[0]>>8&255,r[0]&255,r[1]>>24&255,r[1]>>16&255,r[1]>>8&255,r[1]&255,r[2]>>24&255,r[2]>>16&255,r[2]>>8&255,r[2]&255,r[3]>>24&255,r[3]>>16&255,r[3]>>8&255,r[3]&255,r[4]>>24&255,r[4]>>16&255,r[4]>>8&255,r[4]&255]}var hw=mw("v5",80,yw),Vy=hw,Wy="2.30.45",Ny=e=>`${e.protocol}//${e.hostname}${e.pathname.indexOf("/")===0?e.pathname:`/${e.pathname}`}${e.search}`,ni={pageview:"pageview",event:"event"},Ts=class{constructor({client:t,uuidGenerator:r=Tn}){this.client=t,this.uuidGenerator=r}},xp=class extends Ts{constructor({client:t,uuidGenerator:r=Tn}){super({client:t,uuidGenerator:r}),this.actionData={},this.pageViewId=r(),this.nextPageViewId=this.pageViewId,this.currentLocation=Ny(window.location),this.lastReferrer=mo()?document.referrer:"",this.addHooks()}getApi(t){switch(t){case"setAction":return this.setAction;default:return null}}setAction(t,r){this.action=t,this.actionData=r}clearData(){this.clearPluginData(),this.action=void 0,this.actionData={}}getLocationInformation(t,r){return Object.assign({hitType:t},this.getNextValues(t,r))}updateLocationInformation(t,r){this.updateLocationForNextPageView(t,r)}getDefaultContextInformation(t){let r={title:mo()?document.title:"",encoding:mo()?document.characterSet:"UTF-8"},n={screenResolution:`${screen.width}x${screen.height}`,screenColor:`${screen.colorDepth}-bit`},o={language:navigator.language,userAgent:navigator.userAgent},a={time:Date.now(),eventId:this.uuidGenerator()};return Object.assign(Object.assign(Object.assign(Object.assign({},a),n),o),r)}updateLocationForNextPageView(t,r){let{pageViewId:n,referrer:o,location:a}=this.getNextValues(t,r);this.lastReferrer=o,this.pageViewId=n,this.currentLocation=a,t===ni.pageview&&(this.nextPageViewId=this.uuidGenerator(),this.hasSentFirstPageView=!0)}getNextValues(t,r){return{pageViewId:t===ni.pageview?this.nextPageViewId:this.pageViewId,referrer:t===ni.pageview&&this.hasSentFirstPageView?this.currentLocation:this.lastReferrer,location:t===ni.pageview?this.getCurrentLocationFromPayload(r):this.currentLocation}}getCurrentLocationFromPayload(t){if(t.page){let r=o=>o.replace(/^\/?(.*)$/,"/$1");return`${(o=>o.split("/").slice(0,3).join("/"))(this.currentLocation)}${r(t.page)}`}else return Ny(window.location)}},Mr=class e{constructor(t,r){if(!qs(t))throw Error("Not a valid uuid");this.clientId=t,this.creationDate=Math.floor(r/1e3)}toString(){return this.clientId.replace(/-/g,"")+"."+this.creationDate.toString()}get expired(){let t=Math.floor(Date.now()/1e3)-this.creationDate;return t<0||t>e.expirationTime}validate(t,r){return!this.expired&&this.matchReferrer(t,r)}matchReferrer(t,r){try{let n=new URL(t);return r.some(o=>new RegExp(o.replace(/\\/g,"\\\\").replace(/\./g,"\\.").replace(/\*/g,".*")+"$").test(n.host))}catch{return!1}}static fromString(t){let r=t.split(".");if(r.length!==2)return null;let[n,o]=r;if(n.length!==32||isNaN(parseInt(o)))return null;let a=n.substring(0,8)+"-"+n.substring(8,12)+"-"+n.substring(12,16)+"-"+n.substring(16,20)+"-"+n.substring(20,32);return qs(a)?new e(a,Number.parseInt(o)*1e3):null}};Mr.cvo_cid="cvo_cid";Mr.expirationTime=120;var bp=class extends Ts{constructor({client:t,uuidGenerator:r=Tn}){super({client:t,uuidGenerator:r})}getApi(t){switch(t){case"decorate":return this.decorate;case"acceptFrom":return this.acceptFrom;default:return null}}decorate(t){return V(this,void 0,void 0,function*(){if(!this.client.getCurrentVisitorId)throw new Error("Could not retrieve current clientId");try{let r=new URL(t),n=yield this.client.getCurrentVisitorId();return r.searchParams.set(Mr.cvo_cid,new Mr(n,Date.now()).toString()),r.toString()}catch{throw new Error("Invalid URL provided")}})}acceptFrom(t){this.client.setAcceptedLinkReferrers(t)}};bp.Id="link";var It=Object.keys;function Ps(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}var Cp=128,Yy=192,My=224,Qy=240;function Sw(e){return(e&248)===Qy?4:(e&Qy)===My?3:(e&My)===Yy?2:1}function Cw(e,t){if(t<0||e.length<=t)return e;let r=e.indexOf("%",t-2);for(r<0||r>t?r=t:t=r;r>2&&e.charAt(r-3)=="%";){let n=Number.parseInt(e.substring(r-2,r),16);if((n&Cp)!=Cp)break;if(r-=3,(n&Yy)!=Cp){t-r>=Sw(n)*3&&(r=t);break}}return e.substring(0,r)}var Fp={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"},Aw=It(Fp).map(e=>Fp[e]),vw=[...Aw].join("|"),Rw=new RegExp(`^(${vw}$)`),xw={svcAction:"svc_action",svcActionData:"svc_action_data"},bw=e=>It(e).filter(t=>e[t]!==void 0).reduce((t,r)=>{let n=Fp[r]||r;return Object.assign(Object.assign({},t),{[n]:e[r]})},{}),Fw=e=>Rw.test(e),Iw=[Fw],Ly={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",price:"pr",quantity:"qt",coupon:"cc",position:"ps",group:"group"},_y={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",position:"ps",price:"pr",group:"group"},tt={action:"pa",list:"pal",listSource:"pls"},ks={id:"ti",revenue:"tr",tax:"tt",shipping:"ts",coupon:"tcc",affiliation:"ta",step:"cos",option:"col"},ww=["loyaltyCardId","loyaltyTier","thirdPartyPersona","companyName","favoriteStore","storeName","userIndustry","userRole","userDepartment","businessUnit"],Ip={id:"quoteId",affiliation:"quoteAffiliation"},wp={id:"reviewId",rating:"reviewRating",comment:"reviewComment"},Pw={add:tt,bookmark_add:tt,bookmark_remove:tt,click:tt,checkout:tt,checkout_option:tt,detail:tt,impression:tt,remove:tt,refund:Object.assign(Object.assign({},tt),ks),purchase:Object.assign(Object.assign({},tt),ks),quickview:tt,quote:Object.assign(Object.assign({},tt),Ip),review:Object.assign(Object.assign({},tt),wp)},Ew=It(Ly).map(e=>Ly[e]),qw=It(_y).map(e=>_y[e]),Tw=It(tt).map(e=>tt[e]),kw=It(ks).map(e=>ks[e]),Ow=It(wp).map(e=>wp[e]),Dw=It(Ip).map(e=>Ip[e]),jw=[...Ew,"custom"].join("|"),Vw=[...qw,"custom"].join("|"),Ky="(pr[0-9]+)",Jy="(il[0-9]+pi[0-9]+)",Nw=new RegExp(`^${Ky}(${jw})$`),Mw=new RegExp(`^(${Jy}(${Vw}))|(il[0-9]+nm)$`),Qw=new RegExp(`^(${Tw.join("|")})$`),Lw=new RegExp(`^(${kw.join("|")})$`),_w=new RegExp(`^${Ky}custom$`),Uw=new RegExp(`^${Jy}custom$`),Bw=new RegExp(`^(${[...ww,...Ow,...Dw].join("|")})$`),$w=e=>Nw.test(e),Hw=e=>Mw.test(e),Gw=e=>Qw.test(e),zw=e=>Lw.test(e),Ww=e=>Bw.test(e),Yw=[Hw,$w,Gw,zw,Ww],Kw=[_w,Uw],Jw={anonymizeIp:"aip"},Xw={eventCategory:"ec",eventAction:"ea",eventLabel:"el",eventValue:"ev",page:"dp",visitorId:"cid",clientId:"cid",userId:"uid",currencyCode:"cu"},Zw={hitType:"t",pageViewId:"pid",encoding:"de",location:"dl",referrer:"dr",screenColor:"sd",screenResolution:"sr",title:"dt",userAgent:"ua",language:"ul",eventId:"z",time:"tm"},eP=["contentId","contentIdKey","contentType","searchHub","tab","searchUid","permanentId","contentLocale","trackingId"],tP=Object.assign(Object.assign(Object.assign(Object.assign({},Jw),Xw),Zw),eP.reduce((e,t)=>Object.assign(Object.assign({},e),{[t]:t}),{})),Pp=Object.assign(Object.assign({},tP),xw),rP=e=>{let t=!!e.action&&Pw[e.action]||{};return It(e).reduce((r,n)=>{let o=t[n]||Pp[n]||n;return Object.assign(Object.assign({},r),{[o]:e[n]})},{})},nP=It(Pp).map(e=>Pp[e]),oP=e=>nP.indexOf(e)!==-1,aP=e=>e==="custom",iP=e=>[...Yw,...Iw,oP,aP].some(t=>t(e)),sP=e=>It(e).reduce((t,r)=>{let n=cP(r);return n?Object.assign(Object.assign({},t),uP(n,e[r])):Object.assign(Object.assign({},t),{[r]:e[r]})},{}),cP=e=>{let t;return[...Kw].every(r=>{var n;return t=(n=r.exec(e))===null||n===void 0?void 0:n[1],!t}),t},uP=(e,t)=>It(t).reduce((r,n)=>Object.assign(Object.assign({},r),{[`${e}${n}`]:t[n]}),{}),Ep=class{constructor(t){this.opts=t}sendEvent(t,r){return V(this,void 0,void 0,function*(){if(!this.isAvailable())throw new Error("navigator.sendBeacon is not supported in this browser. Consider adding a polyfill like \"sendbeacon-polyfill\".");let{baseUrl:n,preprocessRequest:o}=this.opts,a=yield this.getQueryParamsForEventType(t),{url:d,payload:p}=yield this.preProcessRequestAsPotentialJSONString(`${n}/analytics/${t}?${a}`,r,o),m=this.encodeForEventType(t,p),f=new Blob([m],{type:"application/x-www-form-urlencoded"});navigator.sendBeacon(d,f)})}isAvailable(){return"sendBeacon"in navigator}deleteHttpCookieVisitorId(){return Promise.resolve()}preProcessRequestAsPotentialJSONString(t,r,n){return V(this,void 0,void 0,function*(){let o=t,a=r;if(n){let d=yield n({url:t,body:JSON.stringify(r)},"analyticsBeacon"),{url:p,body:m}=d;o=p||t;try{a=JSON.parse(m)}catch(f){console.error("Unable to process the request body as a JSON string",f)}}return{payload:a,url:o}})}encodeForEventType(t,r){return this.isEventTypeLegacy(t)?this.encodeEventToJson(t,r):this.encodeEventToJson(t,r,this.opts.token)}getQueryParamsForEventType(t){return V(this,void 0,void 0,function*(){let{token:r,visitorIdProvider:n}=this.opts,o=yield n.getCurrentVisitorId();return[r&&this.isEventTypeLegacy(t)?`access_token=${r}`:"",o?`visitorId=${o}`:"","discardVisitInfo=true"].filter(a=>!!a).join("&")})}isEventTypeLegacy(t){return[Ce.click,Ce.custom,Ce.search,Ce.view].indexOf(t)!==-1}encodeEventToJson(t,r,n){let o=`${t}Event=${encodeURIComponent(JSON.stringify(r))}`;return n&&(o=`access_token=${encodeURIComponent(n)}&${o}`),o}},qp=class{sendEvent(t,r){return V(this,void 0,void 0,function*(){return Promise.resolve()})}deleteHttpCookieVisitorId(){return V(this,void 0,void 0,function*(){return Promise.resolve()})}},Uy=y.fetch,Os=class{constructor(t){this.opts=t}sendEvent(t,r){return V(this,void 0,void 0,function*(){let{baseUrl:n,visitorIdProvider:o,preprocessRequest:a}=this.opts,d=this.shouldAppendVisitorId(t)?yield this.getVisitorIdParam():"",p={url:`${n}/analytics/${t}${d}`,credentials:"include",mode:"cors",headers:this.getHeaders(),method:"POST",body:JSON.stringify(r)},m=Object.assign(Object.assign({},p),a?yield a(p,"analyticsFetch"):{}),{url:f}=m,g=Gt(m,["url"]),A;try{A=yield Uy(f,g)}catch(v){console.error("An error has occured when sending the event.",v);return}if(A.ok){let v=yield A.json();return v.visitorId&&o.setCurrentVisitorId(v.visitorId),v}else{try{A.json()}catch{}throw console.error(`An error has occured when sending the "${t}" event.`,A,r),new Error(`An error has occurred when sending the "${t}" event. Check the console logs for more details.`)}})}deleteHttpCookieVisitorId(){return V(this,void 0,void 0,function*(){let{baseUrl:t}=this.opts,r=`${t}/analytics/visit`;yield Uy(r,{headers:this.getHeaders(),method:"DELETE"})})}shouldAppendVisitorId(t){return[Ce.click,Ce.custom,Ce.search,Ce.view].indexOf(t)!==-1}getVisitorIdParam(){return V(this,void 0,void 0,function*(){let{visitorIdProvider:t}=this.opts,r=yield t.getCurrentVisitorId();return r?`?visitor=${r}`:""})}getHeaders(){let{token:t}=this.opts;return Object.assign(Object.assign({},t?{Authorization:`Bearer ${t}`}:{}),{"Content-Type":"application/json"})}},Tp=class{constructor(t,r){vp()&&Gy()?this.storage=new Rp:vp()?this.storage=localStorage:(console.warn("BrowserRuntime detected no valid storage available.",this),this.storage=new go),this.client=new Os(t),this.beaconClient=new Ep(t),window.addEventListener("beforeunload",()=>{let n=r();for(let{eventType:o,payload:a}of n)this.beaconClient.sendEvent(o,a)})}getClientDependingOnEventType(t){return t==="click"&&this.beaconClient.isAvailable()?this.beaconClient:this.client}},kp=class{constructor(t,r){this.storage=r||new go,this.client=new Os(t)}getClientDependingOnEventType(t){return this.client}},Ds=class{constructor(){this.storage=new go,this.client=new qp}getClientDependingOnEventType(t){return this.client}},lP="xx",dP=e=>e?.startsWith(lP)||!1,pP=`
|
|
28
28
|
We've detected you're using React Native but have not provided the corresponding runtime,
|
|
29
29
|
for an optimal experience please use the "coveo.analytics/react-native" subpackage.
|
|
30
30
|
Follow the Readme on how to set it up: https://github.com/coveo/coveo.analytics.js#using-react-native
|
|
@@ -50,4 +50,4 @@ For more information, refer to the documentation: https://docs.coveo.com/en/o3r9
|
|
|
50
50
|
* limitations under the License.
|
|
51
51
|
*/if(__exports!=exports)module.exports=exports;return module.exports});
|
|
52
52
|
|
|
53
|
-
window.coveoQuanticVersion = '3.30.3-pre.
|
|
53
|
+
window.coveoQuanticVersion = '3.30.3-pre.b400a05b95';
|