@grafana/faro-web-sdk 1.7.3 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/dist/bundle/faro-web-sdk.iife.js +1 -1
  2. package/dist/bundle/types/instrumentations/console/instrumentation.d.ts +1 -1
  3. package/dist/bundle/types/instrumentations/errors/instrumentation.d.ts +1 -1
  4. package/dist/bundle/types/instrumentations/instrumentationConstants.d.ts +1 -0
  5. package/dist/bundle/types/instrumentations/performance/instrumentation.d.ts +1 -1
  6. package/dist/bundle/types/instrumentations/performance/performanceConstants.d.ts +0 -1
  7. package/dist/bundle/types/instrumentations/performance/performanceUtils.d.ts +3 -0
  8. package/dist/bundle/types/instrumentations/session/instrumentation.d.ts +1 -1
  9. package/dist/bundle/types/instrumentations/session/sessionManager/getSessionManagerByConfig.d.ts +3 -0
  10. package/dist/bundle/types/instrumentations/session/sessionManager/index.d.ts +1 -0
  11. package/dist/bundle/types/instrumentations/session/sessionManager/sessionConstants.d.ts +3 -0
  12. package/dist/bundle/types/instrumentations/session/sessionManager/sessionManagerUtils.d.ts +4 -1
  13. package/dist/bundle/types/instrumentations/session/sessionManager/types.d.ts +3 -0
  14. package/dist/bundle/types/instrumentations/view/instrumentation.d.ts +1 -1
  15. package/dist/bundle/types/instrumentations/webVitals/instrumentation.d.ts +2 -9
  16. package/dist/bundle/types/instrumentations/webVitals/webVitalsBasic.d.ts +14 -0
  17. package/dist/bundle/types/instrumentations/webVitals/webVitalsWithAttribution.d.ts +16 -0
  18. package/dist/bundle/types/transports/console/transport.d.ts +1 -1
  19. package/dist/bundle/types/transports/fetch/transport.d.ts +2 -1
  20. package/dist/cjs/config/makeCoreConfig.js +8 -6
  21. package/dist/cjs/config/makeCoreConfig.js.map +1 -1
  22. package/dist/cjs/instrumentations/instrumentationConstants.js +5 -0
  23. package/dist/cjs/instrumentations/instrumentationConstants.js.map +1 -0
  24. package/dist/cjs/instrumentations/performance/navigation.js +7 -4
  25. package/dist/cjs/instrumentations/performance/navigation.js.map +1 -1
  26. package/dist/cjs/instrumentations/performance/performanceConstants.js +1 -2
  27. package/dist/cjs/instrumentations/performance/performanceConstants.js.map +1 -1
  28. package/dist/cjs/instrumentations/performance/performanceUtils.js +21 -1
  29. package/dist/cjs/instrumentations/performance/performanceUtils.js.map +1 -1
  30. package/dist/cjs/instrumentations/performance/performanceUtilsTestData.js +12 -1
  31. package/dist/cjs/instrumentations/performance/performanceUtilsTestData.js.map +1 -1
  32. package/dist/cjs/instrumentations/performance/resource.js +2 -1
  33. package/dist/cjs/instrumentations/performance/resource.js.map +1 -1
  34. package/dist/cjs/instrumentations/session/instrumentation.js +1 -2
  35. package/dist/cjs/instrumentations/session/instrumentation.js.map +1 -1
  36. package/dist/cjs/instrumentations/session/sessionManager/getSessionManagerByConfig.js +10 -0
  37. package/dist/cjs/instrumentations/session/sessionManager/getSessionManagerByConfig.js.map +1 -0
  38. package/dist/cjs/instrumentations/session/sessionManager/index.js +3 -1
  39. package/dist/cjs/instrumentations/session/sessionManager/index.js.map +1 -1
  40. package/dist/cjs/instrumentations/session/sessionManager/sessionConstants.js +4 -1
  41. package/dist/cjs/instrumentations/session/sessionManager/sessionConstants.js.map +1 -1
  42. package/dist/cjs/instrumentations/session/sessionManager/sessionManagerUtils.js +6 -5
  43. package/dist/cjs/instrumentations/session/sessionManager/sessionManagerUtils.js.map +1 -1
  44. package/dist/cjs/instrumentations/session/sessionManager/types.js.map +1 -1
  45. package/dist/cjs/instrumentations/webVitals/instrumentation.js +9 -21
  46. package/dist/cjs/instrumentations/webVitals/instrumentation.js.map +1 -1
  47. package/dist/cjs/instrumentations/webVitals/webVitalsBasic.js +35 -0
  48. package/dist/cjs/instrumentations/webVitals/webVitalsBasic.js.map +1 -0
  49. package/dist/cjs/instrumentations/webVitals/webVitalsWithAttribution.js +136 -0
  50. package/dist/cjs/instrumentations/webVitals/webVitalsWithAttribution.js.map +1 -0
  51. package/dist/cjs/transports/fetch/transport.js +33 -9
  52. package/dist/cjs/transports/fetch/transport.js.map +1 -1
  53. package/dist/esm/config/makeCoreConfig.js +9 -7
  54. package/dist/esm/config/makeCoreConfig.js.map +1 -1
  55. package/dist/esm/instrumentations/instrumentationConstants.js +2 -0
  56. package/dist/esm/instrumentations/instrumentationConstants.js.map +1 -0
  57. package/dist/esm/instrumentations/performance/navigation.js +7 -4
  58. package/dist/esm/instrumentations/performance/navigation.js.map +1 -1
  59. package/dist/esm/instrumentations/performance/performanceConstants.js +0 -1
  60. package/dist/esm/instrumentations/performance/performanceConstants.js.map +1 -1
  61. package/dist/esm/instrumentations/performance/performanceUtils.js +17 -0
  62. package/dist/esm/instrumentations/performance/performanceUtils.js.map +1 -1
  63. package/dist/esm/instrumentations/performance/performanceUtilsTestData.js +12 -1
  64. package/dist/esm/instrumentations/performance/performanceUtilsTestData.js.map +1 -1
  65. package/dist/esm/instrumentations/performance/resource.js +3 -2
  66. package/dist/esm/instrumentations/performance/resource.js.map +1 -1
  67. package/dist/esm/instrumentations/session/instrumentation.js +2 -3
  68. package/dist/esm/instrumentations/session/instrumentation.js.map +1 -1
  69. package/dist/esm/instrumentations/session/sessionManager/getSessionManagerByConfig.js +6 -0
  70. package/dist/esm/instrumentations/session/sessionManager/getSessionManagerByConfig.js.map +1 -0
  71. package/dist/esm/instrumentations/session/sessionManager/index.js +1 -0
  72. package/dist/esm/instrumentations/session/sessionManager/index.js.map +1 -1
  73. package/dist/esm/instrumentations/session/sessionManager/sessionConstants.js +4 -1
  74. package/dist/esm/instrumentations/session/sessionManager/sessionConstants.js.map +1 -1
  75. package/dist/esm/instrumentations/session/sessionManager/sessionManagerUtils.js +3 -3
  76. package/dist/esm/instrumentations/session/sessionManager/sessionManagerUtils.js.map +1 -1
  77. package/dist/esm/instrumentations/session/sessionManager/types.js.map +1 -1
  78. package/dist/esm/instrumentations/webVitals/instrumentation.js +10 -19
  79. package/dist/esm/instrumentations/webVitals/instrumentation.js.map +1 -1
  80. package/dist/esm/instrumentations/webVitals/webVitalsBasic.js +27 -0
  81. package/dist/esm/instrumentations/webVitals/webVitalsBasic.js.map +1 -0
  82. package/dist/esm/instrumentations/webVitals/webVitalsWithAttribution.js +124 -0
  83. package/dist/esm/instrumentations/webVitals/webVitalsWithAttribution.js.map +1 -0
  84. package/dist/esm/transports/fetch/transport.js +24 -3
  85. package/dist/esm/transports/fetch/transport.js.map +1 -1
  86. package/dist/types/instrumentations/console/instrumentation.d.ts +1 -1
  87. package/dist/types/instrumentations/errors/instrumentation.d.ts +1 -1
  88. package/dist/types/instrumentations/instrumentationConstants.d.ts +1 -0
  89. package/dist/types/instrumentations/performance/instrumentation.d.ts +1 -1
  90. package/dist/types/instrumentations/performance/performanceConstants.d.ts +0 -1
  91. package/dist/types/instrumentations/performance/performanceUtils.d.ts +3 -0
  92. package/dist/types/instrumentations/session/instrumentation.d.ts +1 -1
  93. package/dist/types/instrumentations/session/sessionManager/getSessionManagerByConfig.d.ts +3 -0
  94. package/dist/types/instrumentations/session/sessionManager/index.d.ts +1 -0
  95. package/dist/types/instrumentations/session/sessionManager/sessionConstants.d.ts +3 -0
  96. package/dist/types/instrumentations/session/sessionManager/sessionManagerUtils.d.ts +4 -1
  97. package/dist/types/instrumentations/session/sessionManager/types.d.ts +3 -0
  98. package/dist/types/instrumentations/view/instrumentation.d.ts +1 -1
  99. package/dist/types/instrumentations/webVitals/instrumentation.d.ts +2 -9
  100. package/dist/types/instrumentations/webVitals/webVitalsBasic.d.ts +14 -0
  101. package/dist/types/instrumentations/webVitals/webVitalsWithAttribution.d.ts +16 -0
  102. package/dist/types/transports/console/transport.d.ts +1 -1
  103. package/dist/types/transports/fetch/transport.d.ts +2 -1
  104. package/package.json +4 -4
@@ -1 +1 @@
1
- var GrafanaFaroWebSdk=function(e){"use strict";function n(e,n){return typeof e===n}function t(e,n){return Object.prototype.toString.call(e)===`[object ${n}]`}function i(e,n){try{return e instanceof n}catch(e){return!1}}const o=e=>n(e,"null"),r=e=>n(e,"string"),s=e=>n(e,"number")&&!isNaN(e)||n(e,"bigint"),a=e=>!o(e)&&n(e,"object"),l=e=>n(e,"function"),u=e=>t(e,"Array"),c=e=>!a(e)&&!l(e),d="undefined"!=typeof Event,p=e=>d&&i(e,Event),f="undefined"!=typeof Error,g=e=>f&&i(e,Error),m=e=>t(e,"ErrorEvent"),v=e=>t(e,"DOMError"),b=e=>t(e,"DOMException"),h="undefined"!=typeof Element,w="undefined"!=typeof Map;function y(e,t){if(e===t)return!0;if(n(e,"number")&&isNaN(e))return n(t,"number")&&isNaN(t);const i=u(e),o=u(t);if(i!==o)return!1;if(i&&o){const n=e.length;if(n!==t.length)return!1;for(let i=n;0!=i--;)if(!y(e[i],t[i]))return!1;return!0}const r=a(e),s=a(t);if(r!==s)return!1;if(e&&t&&r&&s){const n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(let e of n)if(!i.includes(e))return!1;for(let i of n)if(!y(e[i],t[i]))return!1;return!0}return!1}function S(){return(new Date).toISOString()}var E;e.LogLevel=void 0,(E=e.LogLevel||(e.LogLevel={})).TRACE="trace",E.DEBUG="debug",E.INFO="info",E.LOG="log",E.WARN="warn",E.ERROR="error";const T=e.LogLevel.LOG,k=[e.LogLevel.TRACE,e.LogLevel.DEBUG,e.LogLevel.INFO,e.LogLevel.LOG,e.LogLevel.WARN,e.LogLevel.ERROR];function I(){}function x(e){const{size:n,concurrency:t}=e,i=[];let o=0;const r=()=>{if(o<t&&i.length){const{producer:e,resolve:n,reject:t}=i.shift();o++,e().then((e=>{o--,r(),n(e)}),(e=>{o--,r(),t(e)}))}};return{add:e=>{if(i.length+o>=n)throw new Error("Task buffer full");return new Promise(((n,t)=>{i.push({producer:e,resolve:n,reject:t}),r()}))}}}const O="abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ0123456789";function L(e=10){return Array.from(Array(e)).map((()=>O[Math.floor(Math.random()*O.length)])).join("")}const N="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof global?global:"undefined"!=typeof self?self:void 0;function j(){return Date.now()}class A{constructor(e,n){var t,i;this.signalBuffer=[],this.itemLimit=null!==(t=null==n?void 0:n.itemLimit)&&void 0!==t?t:50,this.sendTimeout=null!==(i=null==n?void 0:n.sendTimeout)&&void 0!==i?i:250,this.paused=(null==n?void 0:n.paused)||!1,this.sendFn=e,this.flushInterval=-1,this.paused||this.start(),document.addEventListener("visibilitychange",(()=>{"hidden"===document.visibilityState&&this.flush()}))}addItem(e){this.paused||(this.signalBuffer.push(e),this.signalBuffer.length>=this.itemLimit&&this.flush())}start(){this.paused=!1,this.sendTimeout>0&&(this.flushInterval=window.setInterval((()=>this.flush()),this.sendTimeout))}pause(){this.paused=!0,clearInterval(this.flushInterval)}groupItems(e){const n=new Map;return e.forEach((e=>{const t=JSON.stringify(e.meta);let i=n.get(t);i=void 0===i?[e]:[...i,e],n.set(t,i)})),Array.from(n.values())}flush(){if(this.paused||0===this.signalBuffer.length)return;this.groupItems(this.signalBuffer).forEach(this.sendFn),this.signalBuffer=[]}}var C;e.TransportItemType=void 0,(C=e.TransportItemType||(e.TransportItemType={})).EXCEPTION="exception",C.LOG="log",C.MEASUREMENT="measurement",C.TRACE="trace",C.EVENT="event";const R={[e.TransportItemType.EXCEPTION]:"exceptions",[e.TransportItemType.LOG]:"logs",[e.TransportItemType.MEASUREMENT]:"measurements",[e.TransportItemType.TRACE]:"traces",[e.TransportItemType.EVENT]:"events"};function _(n){return t=>{if(t.type===e.TransportItemType.EXCEPTION&&t.payload){const e=t.payload,i=`${e.type}: ${e.value}`;if(function(e,n){return e.some((e=>r(e)?n.includes(e):!!n.match(e)))}(n,i))return null}return t}}function M(e,n,t,i){var o;n.debug("Initializing transports");const r=[];let s=t.paused,a=[];const l=e=>{let n=e;for(const e of a){const t=n.map(e).filter(Boolean);if(0===t.length)return[];n=t}return n},u=e=>{const t=l(e);if(0!==t.length)for(const e of r)n.debug(`Transporting item using ${e.name}\n`,t),e.isBatched()&&e.send(t)};let c;(null===(o=t.batching)||void 0===o?void 0:o.enabled)&&(c=new A(u,{sendTimeout:t.batching.sendTimeout,itemLimit:t.batching.itemLimit,paused:s}));return{add:(...o)=>{n.debug("Adding transports"),o.forEach((o=>{n.debug(`Adding "${o.name}" transport`);r.some((e=>e===o))?n.warn(`Transport ${o.name} is already added`):(o.unpatchedConsole=e,o.internalLogger=n,o.config=t,o.metas=i,r.push(o))}))},addBeforeSendHooks:(...e)=>{n.debug("Adding beforeSendHooks\n",a),e.forEach((e=>{e&&a.push(e)}))},addIgnoreErrorsPatterns:(...e)=>{n.debug("Adding ignoreErrorsPatterns\n",e),e.forEach((e=>{e&&a.push(_(e))}))},getBeforeSendHooks:()=>[...a],execute:e=>{var i;s||((null===(i=t.batching)||void 0===i?void 0:i.enabled)&&(null==c||c.addItem(e)),(e=>{var i,o;if((null===(i=t.batching)||void 0===i?void 0:i.enabled)&&r.every((e=>e.isBatched())))return;const[s]=l([e]);if(void 0!==s)for(const e of r)n.debug(`Transporting item using ${e.name}\n`,s),e.isBatched()?(null===(o=t.batching)||void 0===o?void 0:o.enabled)||e.send([s]):e.send(s)})(e))},isPaused:()=>s,pause:()=>{n.debug("Pausing transports"),null==c||c.pause(),s=!0},remove:(...e)=>{n.debug("Removing transports"),e.forEach((e=>{n.debug(`Removing "${e.name}" transport`);const t=r.indexOf(e);-1!==t?r.splice(t,1):n.warn(`Transport "${e.name}" is not added`)}))},removeBeforeSendHooks:(...e)=>{a.filter((n=>!e.includes(n)))},get transports(){return[...r]},unpause:()=>{n.debug("Unpausing transports"),null==c||c.start(),s=!1}}}var P;e.InternalLoggerLevel=void 0,(P=e.InternalLoggerLevel||(e.InternalLoggerLevel={}))[P.OFF=0]="OFF",P[P.ERROR=1]="ERROR",P[P.WARN=2]="WARN",P[P.INFO=3]="INFO",P[P.VERBOSE=4]="VERBOSE";const U={debug:I,error:I,info:I,prefix:"Faro",warn:I},D=e.InternalLoggerLevel.ERROR,B=Object.assign({},console);let z=B;function F(e){var n;return z=null!==(n=e.unpatchedConsole)&&void 0!==n?n:z,z}function $(n=B,t=D){const i=U;return t>e.InternalLoggerLevel.OFF&&(i.error=t>=e.InternalLoggerLevel.ERROR?function(...e){n.error(`${i.prefix}\n`,...e)}:I,i.warn=t>=e.InternalLoggerLevel.WARN?function(...e){n.warn(`${i.prefix}\n`,...e)}:I,i.info=t>=e.InternalLoggerLevel.INFO?function(...e){n.info(`${i.prefix}\n`,...e)}:I,i.debug=t>=e.InternalLoggerLevel.VERBOSE?function(...e){n.debug(`${i.prefix}\n`,...e)}:I),i}let V=U;function q(e,n){return V=$(e,n.internalLoggerLevel),V}class G{constructor(){this.unpatchedConsole=B,this.internalLogger=U,this.config={},this.metas={}}logDebug(...e){this.internalLogger.debug(`${this.name}\n`,...e)}logInfo(...e){this.internalLogger.info(`${this.name}\n`,...e)}logWarn(...e){this.internalLogger.warn(`${this.name}\n`,...e)}logError(...e){this.internalLogger.error(`${this.name}\n`,...e)}}class H extends G{isBatched(){return!1}getIgnoreUrls(){return[]}}function W(e,n){var t,i;if(void 0===n)return e;if(void 0===e)return{resourceSpans:n};const o=null===(t=e.resourceSpans)||void 0===t?void 0:t[0];if(void 0===o)return e;const r=(null==o?void 0:o.scopeSpans)||[],s=(null===(i=null==n?void 0:n[0])||void 0===i?void 0:i.scopeSpans)||[];return Object.assign(Object.assign({},e),{resourceSpans:[Object.assign(Object.assign({},o),{scopeSpans:[...r,...s]})]})}function K(n){let t={meta:{}};return void 0!==n[0]&&(t.meta=n[0].meta),n.forEach((n=>{switch(n.type){case e.TransportItemType.LOG:case e.TransportItemType.EVENT:case e.TransportItemType.EXCEPTION:case e.TransportItemType.MEASUREMENT:const i=R[n.type],o=t[i];t=Object.assign(Object.assign({},t),{[i]:void 0===o?[n.payload]:[...o,n.payload]});break;case e.TransportItemType.TRACE:t=Object.assign(Object.assign({},t),{traces:W(t.traces,n.payload.resourceSpans)})}})),t}const X="Error";let J;function Z(n,t,i,r,s){t.debug("Initializing API");const a=function(n,t,i,o,r){let s;return t.debug("Initializing traces API"),{getOTEL:()=>s,getTraceContext:()=>{const e=null==s?void 0:s.trace.getSpanContext(s.context.active());return e?{trace_id:e.traceId,span_id:e.spanId}:void 0},initOTEL:(e,n)=>{t.debug("Initializing OpenTelemetry"),s={trace:e,context:n}},isOTELInitialized:()=>!!s,pushTraces:n=>{try{const i={type:e.TransportItemType.TRACE,payload:n,meta:o.value};t.debug("Pushing trace\n",i),r.execute(i)}catch(e){t.error("Error pushing trace\n",e)}}}}(0,t,0,r,s);return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},a),function(n,t,i,r,s,a){var l;t.debug("Initializing exceptions API");let u=null;J=null!==(l=i.parseStacktrace)&&void 0!==l?l:J;const c=e=>{t.debug("Changing stacktrace parser"),J=null!=e?e:J};return c(i.parseStacktrace),{changeStacktraceParser:c,getStacktraceParser:()=>J,pushError:(n,{skipDedupe:l,stackFrames:c,type:d,context:p,spanContext:f}={})=>{d=d||n.name||X;const g={meta:r.value,payload:{type:d,value:n.message,timestamp:S(),trace:f?{trace_id:f.traceId,span_id:f.spanId}:a.getTraceContext(),context:null!=p?p:{}},type:e.TransportItemType.EXCEPTION};(null==(c=null!=c?c:n.stack?null==J?void 0:J(n).frames:void 0)?void 0:c.length)&&(g.payload.stacktrace={frames:c});const m={type:g.payload.type,value:g.payload.value,stackTrace:g.payload.stacktrace,context:g.payload.context};l||!i.dedupe||o(u)||!y(m,u)?(u=m,t.debug("Pushing exception\n",g),s.execute(g)):t.debug("Skipping error push because it is the same as the last one\n",g.payload)}}}(0,t,i,r,s,a)),function(e,n,t,i,o){let r,s,a;n.debug("Initializing meta API");const l=e=>{s&&i.remove(s),s={user:e},i.add(s)},u=e=>{r&&i.remove(r),r={session:e},i.add(r)};return{setUser:l,resetUser:l,setSession:u,resetSession:u,getSession:()=>i.value.session,setView:e=>{var n;if((null===(n=null==a?void 0:a.view)||void 0===n?void 0:n.name)===(null==e?void 0:e.name))return;const t=a;a={view:e},i.add(a),t&&i.remove(t)},getView:()=>i.value.view}}(0,t,0,r)),function(n,t,i,r,s,a){var l;t.debug("Initializing logs API");let u=null;const c=null!==(l=i.logArgsSerializer)&&void 0!==l?l:e=>e.map((e=>{try{return String(e)}catch(e){return""}})).join(" ");return{pushLog:(n,{context:l,level:d,skipDedupe:p,spanContext:f}={})=>{try{const g={type:e.TransportItemType.LOG,payload:{message:c(n),level:null!=d?d:T,context:null!=l?l:{},timestamp:S(),trace:f?{trace_id:f.traceId,span_id:f.spanId}:a.getTraceContext()},meta:r.value},m={message:g.payload.message,level:g.payload.level,context:g.payload.context};if(!p&&i.dedupe&&!o(u)&&y(m,u))return void t.debug("Skipping log push because it is the same as the last one\n",g.payload);u=m,t.debug("Pushing log\n",g),s.execute(g)}catch(e){t.error("Error pushing log\n",e)}}}}(0,t,i,r,s,a)),function(n,t,i,r,s,a){t.debug("Initializing measurements API");let l=null;return{pushMeasurement:(n,{skipDedupe:u,context:c,spanContext:d}={})=>{var p;try{const f={type:e.TransportItemType.MEASUREMENT,payload:Object.assign(Object.assign({},n),{trace:d?{trace_id:d.traceId,span_id:d.spanId}:a.getTraceContext(),timestamp:null!==(p=n.timestamp)&&void 0!==p?p:S(),context:null!=c?c:{}}),meta:r.value},g={type:f.payload.type,values:f.payload.values,context:f.payload.context};if(!u&&i.dedupe&&!o(l)&&y(g,l))return void t.debug("Skipping measurement push because it is the same as the last one\n",f.payload);l=g,t.debug("Pushing measurement\n",f),s.execute(f)}catch(e){t.error("Error pushing measurement\n",e)}}}}(0,t,i,r,s,a)),function(n,t,i,r,s,a){let l=null;return{pushEvent:(n,u,c,{skipDedupe:d,spanContext:p}={})=>{try{const f={meta:r.value,payload:{name:n,domain:null!=c?c:i.eventDomain,attributes:u,timestamp:S(),trace:p?{trace_id:p.traceId,span_id:p.spanId}:a.getTraceContext()},type:e.TransportItemType.EVENT},g={name:f.payload.name,attributes:f.payload.attributes,domain:f.payload.domain};if(!d&&i.dedupe&&!o(l)&&y(g,l))return void t.debug("Skipping event push because it is the same as the last one\n",f.payload);l=g,t.debug("Pushing event\n",f),s.execute(f)}catch(e){t.error("Error pushing event",e)}}}}(0,t,i,r,s,a))}class Y extends G{constructor(){super(...arguments),this.api={},this.transports={}}}const Q="1.7.3";const ee="_faroInternal";function ne(e){e.config.isolate?e.internalLogger.debug("Skipping registering internal Faro instance on global object"):(e.internalLogger.debug("Registering internal Faro instance on global object"),Object.defineProperty(N,ee,{configurable:!1,enumerable:!1,writable:!1,value:e}))}function te(){return ee in N}function ie(n,t,i,o,r,s,a){return t.debug("Initializing Faro"),e.faro={api:s,config:i,instrumentations:a,internalLogger:t,metas:o,pause:r.pause,transports:r,unpatchedConsole:n,unpause:r.unpause},ne(e.faro),function(e){if(e.config.preventGlobalExposure)e.internalLogger.debug("Skipping registering public Faro instance in the global scope");else{if(e.internalLogger.debug(`Registering public faro reference in the global scope using "${e.config.globalObjectKey}" key`),e.config.globalObjectKey in N)return void e.internalLogger.warn(`Skipping global registration due to key "${e.config.globalObjectKey}" being used already. Please set "globalObjectKey" to something else or set "preventGlobalExposure" to "true"`);Object.defineProperty(N,e.config.globalObjectKey,{configurable:!1,writable:!1,value:e})}}(e.faro),e.faro}function oe(e){const n=F(e),t=q(n,e);if(te()&&!e.isolate)return void t.error('Faro is already registered. Either add instrumentations, transports etc. to the global faro instance or use the "isolate" property');t.debug("Initializing");const i=function(e,n,t){let i=[],o=[];const r=()=>i.reduce(((e,n)=>Object.assign(e,l(n)?n():n)),{}),s=()=>{if(o.length){const e=r();o.forEach((n=>n(e)))}};return{add:(...e)=>{n.debug("Adding metas\n",e),i.push(...e),s()},remove:(...e)=>{n.debug("Removing metas\n",e),i=i.filter((n=>!e.includes(n))),s()},addListener:e=>{n.debug("Adding metas listener\n",e),o.push(e)},removeListener:e=>{n.debug("Removing metas listener\n",e),o=o.filter((n=>n!==e))},get value(){return r()}}}(0,t),o=M(n,t,e,i),r=Z(0,t,e,i,o),s=function(e,n,t,i,o,r){n.debug("Initializing instrumentations");const s=[];return{add:(...a)=>{n.debug("Adding instrumentations"),a.forEach((a=>{n.debug(`Adding "${a.name}" instrumentation`),s.some((e=>e.name===a.name))?n.warn(`Instrumentation ${a.name} is already added`):(a.unpatchedConsole=e,a.internalLogger=n,a.config=t,a.metas=i,a.transports=o,a.api=r,s.push(a),a.initialize())}))},get instrumentations(){return[...s]},remove:(...e)=>{n.debug("Removing instrumentations"),e.forEach((e=>{var t,i;n.debug(`Removing "${e.name}" instrumentation`);const o=s.reduce(((n,t,i)=>null===n&&t.name===e.name?i:null),null);o?(null===(i=(t=s[o]).destroy)||void 0===i||i.call(t),s.splice(o,1)):n.warn(`Instrumentation "${e.name}" is not added`)}))}}}(n,t,e,i,o,r),a=ie(n,t,e,i,o,r,s);return function(e){var n,t;const i={sdk:{version:Q},app:{bundleId:e.config.app.name&&(o=e.config.app.name,null==N?void 0:N[`__faroBundleId_${o}`])}};var o;const r=null===(n=e.config.sessionTracking)||void 0===n?void 0:n.session;r&&e.api.setSession(r),e.config.app&&(i.app=Object.assign(Object.assign({},e.config.app),i.app)),e.config.user&&(i.user=e.config.user),e.config.view&&(i.view=e.config.view),e.metas.add(i,...null!==(t=e.config.metas)&&void 0!==t?t:[])}(a),function(e){e.transports.add(...e.config.transports),e.transports.addBeforeSendHooks(e.config.beforeSend),e.transports.addIgnoreErrorsPatterns(e.config.ignoreErrors)}(a),function(e){e.instrumentations.add(...e.config.instrumentations)}(a),a}e.faro={};const re="faro",se={enabled:!0,sendTimeout:250,itemLimit:50},ae="view_changed",le="session_start",ue="session_resume",ce="session_extend";var de="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},pe={exports:{}};!function(e,n){!function(t,i){var o="function",r="undefined",s="object",a="string",l="major",u="model",c="name",d="type",p="vendor",f="version",g="architecture",m="console",v="mobile",b="tablet",h="smarttv",w="wearable",y="embedded",S="Amazon",E="Apple",T="ASUS",k="BlackBerry",I="Browser",x="Chrome",O="Firefox",L="Google",N="Huawei",j="LG",A="Microsoft",C="Motorola",R="Opera",_="Samsung",M="Sharp",P="Sony",U="Xiaomi",D="Zebra",B="Facebook",z="Chromium OS",F="Mac OS",$=function(e){for(var n={},t=0;t<e.length;t++)n[e[t].toUpperCase()]=e[t];return n},V=function(e,n){return typeof e===a&&-1!==q(n).indexOf(q(e))},q=function(e){return e.toLowerCase()},G=function(e,n){if(typeof e===a)return e=e.replace(/^\s\s*/,""),typeof n===r?e:e.substring(0,350)},H=function(e,n){for(var t,r,a,l,u,c,d=0;d<n.length&&!u;){var p=n[d],f=n[d+1];for(t=r=0;t<p.length&&!u&&p[t];)if(u=p[t++].exec(e))for(a=0;a<f.length;a++)c=u[++r],typeof(l=f[a])===s&&l.length>0?2===l.length?typeof l[1]==o?this[l[0]]=l[1].call(this,c):this[l[0]]=l[1]:3===l.length?typeof l[1]!==o||l[1].exec&&l[1].test?this[l[0]]=c?c.replace(l[1],l[2]):i:this[l[0]]=c?l[1].call(this,c,l[2]):i:4===l.length&&(this[l[0]]=c?l[3].call(this,c.replace(l[1],l[2])):i):this[l]=c||i;d+=2}},W=function(e,n){for(var t in n)if(typeof n[t]===s&&n[t].length>0){for(var o=0;o<n[t].length;o++)if(V(n[t][o],e))return"?"===t?i:t}else if(V(n[t],e))return"?"===t?i:t;return e},K={ME:"4.90","NT 3.11":"NT3.51","NT 4.0":"NT4.0",2e3:"NT 5.0",XP:["NT 5.1","NT 5.2"],Vista:"NT 6.0",7:"NT 6.1",8:"NT 6.2",8.1:"NT 6.3",10:["NT 6.4","NT 10.0"],RT:"ARM"},X={browser:[[/\b(?:crmo|crios)\/([\w\.]+)/i],[f,[c,"Chrome"]],[/edg(?:e|ios|a)?\/([\w\.]+)/i],[f,[c,"Edge"]],[/(opera mini)\/([-\w\.]+)/i,/(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i,/(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i],[c,f],[/opios[\/ ]+([\w\.]+)/i],[f,[c,R+" Mini"]],[/\bopr\/([\w\.]+)/i],[f,[c,R]],[/(kindle)\/([\w\.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer)[\/ ]?([\w\.]*)/i,/(avant |iemobile|slim)(?:browser)?[\/ ]?([\w\.]*)/i,/(ba?idubrowser)[\/ ]?([\w\.]+)/i,/(?:ms|\()(ie) ([\w\.]+)/i,/(flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|quark|qupzilla|falkon|rekonq|puffin|brave|whale(?!.+naver)|qqbrowserlite|qq|duckduckgo)\/([-\w\.]+)/i,/(heytap|ovi)browser\/([\d\.]+)/i,/(weibo)__([\d\.]+)/i],[c,f],[/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i],[f,[c,"UC"+I]],[/microm.+\bqbcore\/([\w\.]+)/i,/\bqbcore\/([\w\.]+).+microm/i],[f,[c,"WeChat(Win) Desktop"]],[/micromessenger\/([\w\.]+)/i],[f,[c,"WeChat"]],[/konqueror\/([\w\.]+)/i],[f,[c,"Konqueror"]],[/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i],[f,[c,"IE"]],[/ya(?:search)?browser\/([\w\.]+)/i],[f,[c,"Yandex"]],[/(avast|avg)\/([\w\.]+)/i],[[c,/(.+)/,"$1 Secure "+I],f],[/\bfocus\/([\w\.]+)/i],[f,[c,O+" Focus"]],[/\bopt\/([\w\.]+)/i],[f,[c,R+" Touch"]],[/coc_coc\w+\/([\w\.]+)/i],[f,[c,"Coc Coc"]],[/dolfin\/([\w\.]+)/i],[f,[c,"Dolphin"]],[/coast\/([\w\.]+)/i],[f,[c,R+" Coast"]],[/miuibrowser\/([\w\.]+)/i],[f,[c,"MIUI "+I]],[/fxios\/([-\w\.]+)/i],[f,[c,O]],[/\bqihu|(qi?ho?o?|360)browser/i],[[c,"360 "+I]],[/(oculus|samsung|sailfish|huawei)browser\/([\w\.]+)/i],[[c,/(.+)/,"$1 "+I],f],[/(comodo_dragon)\/([\w\.]+)/i],[[c,/_/g," "],f],[/(electron)\/([\w\.]+) safari/i,/(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i,/m?(qqbrowser|baiduboxapp|2345Explorer)[\/ ]?([\w\.]+)/i],[c,f],[/(metasr)[\/ ]?([\w\.]+)/i,/(lbbrowser)/i,/\[(linkedin)app\]/i],[c],[/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i],[[c,B],f],[/(kakao(?:talk|story))[\/ ]([\w\.]+)/i,/(naver)\(.*?(\d+\.[\w\.]+).*\)/i,/safari (line)\/([\w\.]+)/i,/\b(line)\/([\w\.]+)\/iab/i,/(chromium|instagram|snapchat)[\/ ]([-\w\.]+)/i],[c,f],[/\bgsa\/([\w\.]+) .*safari\//i],[f,[c,"GSA"]],[/musical_ly(?:.+app_?version\/|_)([\w\.]+)/i],[f,[c,"TikTok"]],[/headlesschrome(?:\/([\w\.]+)| )/i],[f,[c,x+" Headless"]],[/ wv\).+(chrome)\/([\w\.]+)/i],[[c,x+" WebView"],f],[/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i],[f,[c,"Android "+I]],[/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i],[c,f],[/version\/([\w\.\,]+) .*mobile\/\w+ (safari)/i],[f,[c,"Mobile Safari"]],[/version\/([\w(\.|\,)]+) .*(mobile ?safari|safari)/i],[f,c],[/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i],[c,[f,W,{"1.0":"/8",1.2:"/1",1.3:"/3","2.0":"/412","2.0.2":"/416","2.0.3":"/417","2.0.4":"/419","?":"/"}]],[/(webkit|khtml)\/([\w\.]+)/i],[c,f],[/(navigator|netscape\d?)\/([-\w\.]+)/i],[[c,"Netscape"],f],[/mobile vr; rv:([\w\.]+)\).+firefox/i],[f,[c,O+" Reality"]],[/ekiohf.+(flow)\/([\w\.]+)/i,/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror|klar)[\/ ]?([\w\.\+]+)/i,/(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|palemoon|basilisk|waterfox)\/([-\w\.]+)$/i,/(firefox)\/([\w\.]+)/i,/(mozilla)\/([\w\.]+) .+rv\:.+gecko\/\d+/i,/(polaris|lynx|dillo|icab|doris|amaya|w3m|netsurf|sleipnir|obigo|mosaic|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i,/(links) \(([\w\.]+)/i,/panasonic;(viera)/i],[c,f],[/(cobalt)\/([\w\.]+)/i],[c,[f,/master.|lts./,""]]],cpu:[[/(?:(amd|x(?:(?:86|64)[-_])?|wow|win)64)[;\)]/i],[[g,"amd64"]],[/(ia32(?=;))/i],[[g,q]],[/((?:i[346]|x)86)[;\)]/i],[[g,"ia32"]],[/\b(aarch64|arm(v?8e?l?|_?64))\b/i],[[g,"arm64"]],[/\b(arm(?:v[67])?ht?n?[fl]p?)\b/i],[[g,"armhf"]],[/windows (ce|mobile); ppc;/i],[[g,"arm"]],[/((?:ppc|powerpc)(?:64)?)(?: mac|;|\))/i],[[g,/ower/,"",q]],[/(sun4\w)[;\)]/i],[[g,"sparc"]],[/((?:avr32|ia64(?=;))|68k(?=\))|\barm(?=v(?:[1-7]|[5-7]1)l?|;|eabi)|(?=atmel )avr|(?:irix|mips|sparc)(?:64)?\b|pa-risc)/i],[[g,q]]],device:[[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i],[u,[p,_],[d,b]],[/\b((?:s[cgp]h|gt|sm)-\w+|sc[g-]?[\d]+a?|galaxy nexus)/i,/samsung[- ]([-\w]+)/i,/sec-(sgh\w+)/i],[u,[p,_],[d,v]],[/(?:\/|\()(ip(?:hone|od)[\w, ]*)(?:\/|;)/i],[u,[p,E],[d,v]],[/\((ipad);[-\w\),; ]+apple/i,/applecoremedia\/[\w\.]+ \((ipad)/i,/\b(ipad)\d\d?,\d\d?[;\]].+ios/i],[u,[p,E],[d,b]],[/(macintosh);/i],[u,[p,E]],[/\b(sh-?[altvz]?\d\d[a-ekm]?)/i],[u,[p,M],[d,v]],[/\b((?:ag[rs][23]?|bah2?|sht?|btv)-a?[lw]\d{2})\b(?!.+d\/s)/i],[u,[p,N],[d,b]],[/(?:huawei|honor)([-\w ]+)[;\)]/i,/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][012359c][adn]?)\b(?!.+d\/s)/i],[u,[p,N],[d,v]],[/\b(poco[\w ]+|m2\d{3}j\d\d[a-z]{2})(?: bui|\))/i,/\b; (\w+) build\/hm\1/i,/\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i,/\b(redmi[\-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i,/\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note lte|max|cc)?[_ ]?(?:\d?\w?)[_ ]?(?:plus|se|lite)?)(?: bui|\))/i],[[u,/_/g," "],[p,U],[d,v]],[/\b(mi[-_ ]?(?:pad)(?:[\w_ ]+))(?: bui|\))/i],[[u,/_/g," "],[p,U],[d,b]],[/; (\w+) bui.+ oppo/i,/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i],[u,[p,"OPPO"],[d,v]],[/vivo (\w+)(?: bui|\))/i,/\b(v[12]\d{3}\w?[at])(?: bui|;)/i],[u,[p,"Vivo"],[d,v]],[/\b(rmx[12]\d{3})(?: bui|;|\))/i],[u,[p,"Realme"],[d,v]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i,/\bmot(?:orola)?[- ](\w*)/i,/((?:moto[\w\(\) ]+|xt\d{3,4}|nexus 6)(?= bui|\)))/i],[u,[p,C],[d,v]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i],[u,[p,C],[d,b]],[/((?=lg)?[vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i],[u,[p,j],[d,b]],[/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i,/\blg[-e;\/ ]+((?!browser|netcast|android tv)\w+)/i,/\blg-?([\d\w]+) bui/i],[u,[p,j],[d,v]],[/(ideatab[-\w ]+)/i,/lenovo ?(s[56]000[-\w]+|tab(?:[\w ]+)|yt[-\d\w]{6}|tb[-\d\w]{6})/i],[u,[p,"Lenovo"],[d,b]],[/(?:maemo|nokia).*(n900|lumia \d+)/i,/nokia[-_ ]?([-\w\.]*)/i],[[u,/_/g," "],[p,"Nokia"],[d,v]],[/(pixel c)\b/i],[u,[p,L],[d,b]],[/droid.+; (pixel[\daxl ]{0,6})(?: bui|\))/i],[u,[p,L],[d,v]],[/droid.+ (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-a\w[4-7][12])(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i],[u,[p,P],[d,v]],[/sony tablet [ps]/i,/\b(?:sony)?sgp\w+(?: bui|\))/i],[[u,"Xperia Tablet"],[p,P],[d,b]],[/ (kb2005|in20[12]5|be20[12][59])\b/i,/(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i],[u,[p,"OnePlus"],[d,v]],[/(alexa)webm/i,/(kf[a-z]{2}wi|aeo[c-r]{2})( bui|\))/i,/(kf[a-z]+)( bui|\)).+silk\//i],[u,[p,S],[d,b]],[/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i],[[u,/(.+)/g,"Fire Phone $1"],[p,S],[d,v]],[/(playbook);[-\w\),; ]+(rim)/i],[u,p,[d,b]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,/\(bb10; (\w+)/i],[u,[p,k],[d,v]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i],[u,[p,T],[d,b]],[/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i],[u,[p,T],[d,v]],[/(nexus 9)/i],[u,[p,"HTC"],[d,b]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,/(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i],[p,[u,/_/g," "],[d,v]],[/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i],[u,[p,"Acer"],[d,b]],[/droid.+; (m[1-5] note) bui/i,/\bmz-([-\w]{2,})/i],[u,[p,"Meizu"],[d,v]],[/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus|dell|meizu|motorola|polytron|infinix|tecno)[-_ ]?([-\w]*)/i,/(hp) ([\w ]+\w)/i,/(asus)-?(\w+)/i,/(microsoft); (lumia[\w ]+)/i,/(lenovo)[-_ ]?([-\w]+)/i,/(jolla)/i,/(oppo) ?([\w ]+) bui/i],[p,u,[d,v]],[/(kobo)\s(ereader|touch)/i,/(archos) (gamepad2?)/i,/(hp).+(touchpad(?!.+tablet)|tablet)/i,/(kindle)\/([\w\.]+)/i,/(nook)[\w ]+build\/(\w+)/i,/(dell) (strea[kpr\d ]*[\dko])/i,/(le[- ]+pan)[- ]+(\w{1,9}) bui/i,/(trinity)[- ]*(t\d{3}) bui/i,/(gigaset)[- ]+(q\w{1,9}) bui/i,/(vodafone) ([\w ]+)(?:\)| bui)/i],[p,u,[d,b]],[/(surface duo)/i],[u,[p,A],[d,b]],[/droid [\d\.]+; (fp\du?)(?: b|\))/i],[u,[p,"Fairphone"],[d,v]],[/(u304aa)/i],[u,[p,"AT&T"],[d,v]],[/\bsie-(\w*)/i],[u,[p,"Siemens"],[d,v]],[/\b(rct\w+) b/i],[u,[p,"RCA"],[d,b]],[/\b(venue[\d ]{2,7}) b/i],[u,[p,"Dell"],[d,b]],[/\b(q(?:mv|ta)\w+) b/i],[u,[p,"Verizon"],[d,b]],[/\b(?:barnes[& ]+noble |bn[rt])([\w\+ ]*) b/i],[u,[p,"Barnes & Noble"],[d,b]],[/\b(tm\d{3}\w+) b/i],[u,[p,"NuVision"],[d,b]],[/\b(k88) b/i],[u,[p,"ZTE"],[d,b]],[/\b(nx\d{3}j) b/i],[u,[p,"ZTE"],[d,v]],[/\b(gen\d{3}) b.+49h/i],[u,[p,"Swiss"],[d,v]],[/\b(zur\d{3}) b/i],[u,[p,"Swiss"],[d,b]],[/\b((zeki)?tb.*\b) b/i],[u,[p,"Zeki"],[d,b]],[/\b([yr]\d{2}) b/i,/\b(dragon[- ]+touch |dt)(\w{5}) b/i],[[p,"Dragon Touch"],u,[d,b]],[/\b(ns-?\w{0,9}) b/i],[u,[p,"Insignia"],[d,b]],[/\b((nxa|next)-?\w{0,9}) b/i],[u,[p,"NextBook"],[d,b]],[/\b(xtreme\_)?(v(1[045]|2[015]|[3469]0|7[05])) b/i],[[p,"Voice"],u,[d,v]],[/\b(lvtel\-)?(v1[12]) b/i],[[p,"LvTel"],u,[d,v]],[/\b(ph-1) /i],[u,[p,"Essential"],[d,v]],[/\b(v(100md|700na|7011|917g).*\b) b/i],[u,[p,"Envizen"],[d,b]],[/\b(trio[-\w\. ]+) b/i],[u,[p,"MachSpeed"],[d,b]],[/\btu_(1491) b/i],[u,[p,"Rotor"],[d,b]],[/(shield[\w ]+) b/i],[u,[p,"Nvidia"],[d,b]],[/(sprint) (\w+)/i],[p,u,[d,v]],[/(kin\.[onetw]{3})/i],[[u,/\./g," "],[p,A],[d,v]],[/droid.+; (cc6666?|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i],[u,[p,D],[d,b]],[/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i],[u,[p,D],[d,v]],[/smart-tv.+(samsung)/i],[p,[d,h]],[/hbbtv.+maple;(\d+)/i],[[u,/^/,"SmartTV"],[p,_],[d,h]],[/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i],[[p,j],[d,h]],[/(apple) ?tv/i],[p,[u,E+" TV"],[d,h]],[/crkey/i],[[u,x+"cast"],[p,L],[d,h]],[/droid.+aft(\w+)( bui|\))/i],[u,[p,S],[d,h]],[/\(dtv[\);].+(aquos)/i,/(aquos-tv[\w ]+)\)/i],[u,[p,M],[d,h]],[/(bravia[\w ]+)( bui|\))/i],[u,[p,P],[d,h]],[/(mitv-\w{5}) bui/i],[u,[p,U],[d,h]],[/Hbbtv.*(technisat) (.*);/i],[p,u,[d,h]],[/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i,/hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i],[[p,G],[u,G],[d,h]],[/\b(android tv|smart[- ]?tv|opera tv|tv; rv:)\b/i],[[d,h]],[/(ouya)/i,/(nintendo) ([wids3utch]+)/i],[p,u,[d,m]],[/droid.+; (shield) bui/i],[u,[p,"Nvidia"],[d,m]],[/(playstation [345portablevi]+)/i],[u,[p,P],[d,m]],[/\b(xbox(?: one)?(?!; xbox))[\); ]/i],[u,[p,A],[d,m]],[/((pebble))app/i],[p,u,[d,w]],[/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i],[u,[p,E],[d,w]],[/droid.+; (glass) \d/i],[u,[p,L],[d,w]],[/droid.+; (wt63?0{2,3})\)/i],[u,[p,D],[d,w]],[/(quest( 2| pro)?)/i],[u,[p,B],[d,w]],[/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i],[p,[d,y]],[/(aeobc)\b/i],[u,[p,S],[d,y]],[/droid .+?; ([^;]+?)(?: bui|\) applew).+? mobile safari/i],[u,[d,v]],[/droid .+?; ([^;]+?)(?: bui|\) applew).+?(?! mobile) safari/i],[u,[d,b]],[/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i],[[d,b]],[/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i],[[d,v]],[/(android[-\w\. ]{0,9});.+buil/i],[u,[p,"Generic"]]],engine:[[/windows.+ edge\/([\w\.]+)/i],[f,[c,"EdgeHTML"]],[/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i],[f,[c,"Blink"]],[/(presto)\/([\w\.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna)\/([\w\.]+)/i,/ekioh(flow)\/([\w\.]+)/i,/(khtml|tasman|links)[\/ ]\(?([\w\.]+)/i,/(icab)[\/ ]([23]\.[\d\.]+)/i,/\b(libweb)/i],[c,f],[/rv\:([\w\.]{1,9})\b.+(gecko)/i],[f,c]],os:[[/microsoft (windows) (vista|xp)/i],[c,f],[/(windows) nt 6\.2; (arm)/i,/(windows (?:phone(?: os)?|mobile))[\/ ]?([\d\.\w ]*)/i,/(windows)[\/ ]?([ntce\d\. ]+\w)(?!.+xbox)/i],[c,[f,W,K]],[/(win(?=3|9|n)|win 9x )([nt\d\.]+)/i],[[c,"Windows"],[f,W,K]],[/ip[honead]{2,4}\b(?:.*os ([\w]+) like mac|; opera)/i,/(?:ios;fbsv\/|iphone.+ios[\/ ])([\d\.]+)/i,/cfnetwork\/.+darwin/i],[[f,/_/g,"."],[c,"iOS"]],[/(mac os x) ?([\w\. ]*)/i,/(macintosh|mac_powerpc\b)(?!.+haiku)/i],[[c,F],[f,/_/g,"."]],[/droid ([\w\.]+)\b.+(android[- ]x86|harmonyos)/i],[f,c],[/(android|webos|qnx|bada|rim tablet os|maemo|meego|sailfish)[-\/ ]?([\w\.]*)/i,/(blackberry)\w*\/([\w\.]*)/i,/(tizen|kaios)[\/ ]([\w\.]+)/i,/\((series40);/i],[c,f],[/\(bb(10);/i],[f,[c,k]],[/(?:symbian ?os|symbos|s60(?=;)|series60)[-\/ ]?([\w\.]*)/i],[f,[c,"Symbian"]],[/mozilla\/[\d\.]+ \((?:mobile|tablet|tv|mobile; [\w ]+); rv:.+ gecko\/([\w\.]+)/i],[f,[c,O+" OS"]],[/web0s;.+rt(tv)/i,/\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i],[f,[c,"webOS"]],[/watch(?: ?os[,\/]|\d,\d\/)([\d\.]+)/i],[f,[c,"watchOS"]],[/crkey\/([\d\.]+)/i],[f,[c,x+"cast"]],[/(cros) [\w]+(?:\)| ([\w\.]+)\b)/i],[[c,z],f],[/panasonic;(viera)/i,/(netrange)mmh/i,/(nettv)\/(\d+\.[\w\.]+)/i,/(nintendo|playstation) ([wids345portablevuch]+)/i,/(xbox); +xbox ([^\);]+)/i,/\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i,/(mint)[\/\(\) ]?(\w*)/i,/(mageia|vectorlinux)[; ]/i,/([kxln]?ubuntu|debian|suse|opensuse|gentoo|arch(?= linux)|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire)(?: gnu\/linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i,/(hurd|linux) ?([\w\.]*)/i,/(gnu) ?([\w\.]*)/i,/\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i,/(haiku) (\w+)/i],[c,f],[/(sunos) ?([\w\.\d]*)/i],[[c,"Solaris"],f],[/((?:open)?solaris)[-\/ ]?([\w\.]*)/i,/(aix) ((\d)(?=\.|\)| )[\w\.])*/i,/\b(beos|os\/2|amigaos|morphos|openvms|fuchsia|hp-ux|serenityos)/i,/(unix) ?([\w\.]*)/i],[c,f]]},J=function(e,n){if(typeof e===s&&(n=e,e=i),!(this instanceof J))return new J(e,n).getResult();var m=typeof t!==r&&t.navigator?t.navigator:i,h=e||(m&&m.userAgent?m.userAgent:""),w=m&&m.userAgentData?m.userAgentData:i,y=n?function(e,n){var t={};for(var i in e)n[i]&&n[i].length%2==0?t[i]=n[i].concat(e[i]):t[i]=e[i];return t}(X,n):X,S=m&&m.userAgent==h;return this.getBrowser=function(){var e,n={};return n[c]=i,n[f]=i,H.call(n,h,y.browser),n[l]=typeof(e=n[f])===a?e.replace(/[^\d\.]/g,"").split(".")[0]:i,S&&m&&m.brave&&typeof m.brave.isBrave==o&&(n[c]="Brave"),n},this.getCPU=function(){var e={};return e[g]=i,H.call(e,h,y.cpu),e},this.getDevice=function(){var e={};return e[p]=i,e[u]=i,e[d]=i,H.call(e,h,y.device),S&&!e[d]&&w&&w.mobile&&(e[d]=v),S&&"Macintosh"==e[u]&&m&&typeof m.standalone!==r&&m.maxTouchPoints&&m.maxTouchPoints>2&&(e[u]="iPad",e[d]=b),e},this.getEngine=function(){var e={};return e[c]=i,e[f]=i,H.call(e,h,y.engine),e},this.getOS=function(){var e={};return e[c]=i,e[f]=i,H.call(e,h,y.os),S&&!e[c]&&w&&"Unknown"!=w.platform&&(e[c]=w.platform.replace(/chrome os/i,z).replace(/macos/i,F)),e},this.getResult=function(){return{ua:this.getUA(),browser:this.getBrowser(),engine:this.getEngine(),os:this.getOS(),device:this.getDevice(),cpu:this.getCPU()}},this.getUA=function(){return h},this.setUA=function(e){return h=typeof e===a&&e.length>350?G(e,350):e,this},this.setUA(h),this};J.VERSION="1.0.36",J.BROWSER=$([c,f,l]),J.CPU=$([g]),J.DEVICE=$([u,p,d,m,v,h,b,w,y]),J.ENGINE=J.OS=$([c,f]),e.exports&&(n=e.exports=J),n.UAParser=J;var Z=typeof t!==r&&(t.jQuery||t.Zepto);if(Z&&!Z.ua){var Y=new J;Z.ua=Y.getResult(),Z.ua.get=function(){return Y.getUA()},Z.ua.set=function(e){Y.setUA(e);var n=Y.getResult();for(var t in n)Z.ua[t]=n[t]}}}("object"==typeof window?window:de)}(pe,pe.exports);var fe=pe.exports;const ge=()=>{const e=new fe.UAParser,{name:n,version:t}=e.getBrowser(),{name:i,version:o}=e.getOS(),r=e.getUA(),s=navigator.language,a=navigator.userAgent.includes("Mobi"),l=function(){if(!n||!t)return;if("userAgentData"in navigator&&navigator.userAgentData)return navigator.userAgentData.brands;return}(),u="unknown";return{browser:{name:null!=n?n:u,version:null!=t?t:u,os:`${null!=i?i:u} ${null!=o?o:u}`,userAgent:null!=r?r:u,language:null!=s?s:u,mobile:a,brands:null!=l?l:u,viewportWidth:`${window.innerWidth}`,viewportHeight:`${window.innerHeight}`}}},me=()=>({page:{url:location.href}}),ve=[ge,me];function be(n){var t,i,o,r;return{id:null!==(r=null===(o=null===(i=null===(t=e.faro.config)||void 0===t?void 0:t.sessionTracking)||void 0===i?void 0:i.generateSessionId)||void 0===o?void 0:o.call(i))&&void 0!==r?r:L(),attributes:n}}const he={name:"default"},we="sessionStorage",ye="localStorage";function Se(n){var t;try{let e;e=window[n];const t="__faro_storage_test__";return e.setItem(t,t),e.removeItem(t),!0}catch(i){return null===(t=e.faro.internalLogger)||void 0===t||t.info(`Web storage of type ${n} is not available. Reason: ${i}`),!1}}function Ee(e,n){return Oe(n)?window[n].getItem(e):null}function Te(e,n,t){if(Oe(t))try{window[t].setItem(e,n)}catch(e){}}function ke(e,n){Oe(n)&&window[n].removeItem(e)}const Ie=Se(ye),xe=Se(we);function Oe(e){return e===ye?Ie:e===we&&xe}function Le(e,n){let t,i=!1;const o=()=>{null!=t?(e(...t),t=null,setTimeout(o,n)):i=!1};return(...r)=>{i?t=r:(e(...r),i=!0,setTimeout(o,n))}}function Ne(){var n,t,i;const o=e.faro.config.sessionTracking;let r=null!==(i=null!==(t=null===(n=null==o?void 0:o.sampler)||void 0===n?void 0:n.call(o,{metas:e.faro.metas.value}))&&void 0!==t?t:null==o?void 0:o.samplingRate)&&void 0!==i?i:1;if("number"!=typeof r){r=0}return Math.random()<r}const je="com.grafana.faro.session",Ae=144e5,Ce=9e5,Re=96e4,_e={enabled:!0,persistent:!1,maxSessionPersistenceTime:Re};function Me({sessionId:n,started:t,lastActivity:i,isSampled:o=!0}={}){var r,s;const a=j(),l=null===(s=null===(r=e.faro.config)||void 0===r?void 0:r.sessionTracking)||void 0===s?void 0:s.generateSessionId;return null==n&&(n="function"==typeof l?l():L()),{sessionId:n,lastActivity:null!=i?i:a,started:null!=t?t:a,isSampled:o}}function Pe(e){if(null==e)return!1;const n=j();if(!(n-e.started<Ae))return!1;return n-e.lastActivity<Ce}function Ue({fetchUserSession:n,storeUserSession:t}){return function(){var i,o,r;if(!n||!t)return;const s=e.faro.config.sessionTracking,a=null==s?void 0:s.persistent;if(a&&!Ie||!a&&!xe)return;const l=n();if(Pe(l))t(Object.assign(Object.assign({},l),{lastActivity:j()}));else{let n=De(Me({isSampled:Ne()}),l);t(n),null===(i=e.faro.api)||void 0===i||i.setSession(n.sessionMeta),null===(o=null==s?void 0:s.onSessionChange)||void 0===o||o.call(s,null!==(r=null==l?void 0:l.sessionMeta)&&void 0!==r?r:null,n.sessionMeta)}}}function De(n,t){var i,o,r,s;return Object.assign(Object.assign({},n),{sessionMeta:{id:n.sessionId,attributes:Object.assign(Object.assign(Object.assign(Object.assign({},null===(o=null===(i=e.faro.config.sessionTracking)||void 0===i?void 0:i.session)||void 0===o?void 0:o.attributes),null!==(s=null===(r=e.faro.metas.value.session)||void 0===r?void 0:r.attributes)&&void 0!==s?s:{}),null!=t?{previousSession:t.sessionId}:{}),{isSampled:n.isSampled.toString()})}})}class Be{constructor(){this.updateSession=Le((()=>this.updateUserSession()),1e3),this.updateUserSession=Ue({fetchUserSession:Be.fetchUserSession,storeUserSession:Be.storeUserSession}),this.init()}static removeUserSession(){ke(je,Be.storageTypeLocal)}static storeUserSession(e){Te(je,JSON.stringify(e),Be.storageTypeLocal)}static fetchUserSession(){const e=Ee(je,Be.storageTypeLocal);return e?JSON.parse(e):null}init(){document.addEventListener("visibilitychange",(()=>{"visible"===document.visibilityState&&this.updateSession()})),e.faro.metas.addListener((function(n){const t=n.session,i=Be.fetchUserSession();if(t&&t.id!==(null==i?void 0:i.sessionId)){const n=De(Me({sessionId:t.id,isSampled:Ne()}),i);Be.storeUserSession(n),e.faro.api.setSession(n.sessionMeta)}}))}}Be.storageTypeLocal=ye;class ze{constructor(){this.updateSession=Le((()=>this.updateUserSession()),1e3),this.updateUserSession=Ue({fetchUserSession:ze.fetchUserSession,storeUserSession:ze.storeUserSession}),this.init()}static removeUserSession(){ke(je,ze.storageTypeSession)}static storeUserSession(e){Te(je,JSON.stringify(e),ze.storageTypeSession)}static fetchUserSession(){const e=Ee(je,ze.storageTypeSession);return e?JSON.parse(e):null}init(){document.addEventListener("visibilitychange",(()=>{"visible"===document.visibilityState&&this.updateSession()})),e.faro.metas.addListener((function(n){const t=n.session,i=ze.fetchUserSession();if(t&&t.id!==(null==i?void 0:i.sessionId)){const n=De(Me({sessionId:t.id,isSampled:Ne()}),i);ze.storeUserSession(n),e.faro.api.setSession(n.sessionMeta)}}))}}ze.storageTypeSession=we;class Fe extends Y{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-session",this.version=Q}sendSessionStartEvent(e){var n,t;const i=e.session;if(i&&i.id!==(null===(n=this.notifiedSession)||void 0===n?void 0:n.id)){if(this.notifiedSession&&this.notifiedSession.id===(null===(t=i.attributes)||void 0===t?void 0:t.previousSession))return this.api.pushEvent(ce,{},void 0,{skipDedupe:!0}),void(this.notifiedSession=i);this.notifiedSession=i,this.api.pushEvent(le,{},void 0,{skipDedupe:!0})}}createInitialSession(e,n){var t,i,o,r,s;let a,l,u=e.fetchUserSession();if(n.persistent&&n.maxSessionPersistenceTime&&u){const e=j();u.lastActivity<e-n.maxSessionPersistenceTime&&(Be.removeUserSession(),u=null)}if(Pe(u)){const e=null==u?void 0:u.sessionId;l=Me({sessionId:e,isSampled:u.isSampled||!1,started:null==u?void 0:u.started}),l.sessionMeta={id:e,attributes:Object.assign(Object.assign(Object.assign({},null===(t=n.session)||void 0===t?void 0:t.attributes),null===(i=null==u?void 0:u.sessionMeta)||void 0===i?void 0:i.attributes),{isSampled:l.isSampled.toString()})},a=ue}else{const e=null!==(r=null===(o=n.session)||void 0===o?void 0:o.id)&&void 0!==r?r:be().id;l=Me({sessionId:e,isSampled:Ne()}),l.sessionMeta={id:e,attributes:Object.assign({isSampled:l.isSampled.toString()},null===(s=n.session)||void 0===s?void 0:s.attributes)},a=le}return{initialSession:l,lifecycleType:a}}registerBeforeSendHook(e){var n;const{updateSession:t}=new e;null===(n=this.transports)||void 0===n||n.addBeforeSendHooks((e=>{var n,i,o;t();const r=null===(n=e.meta.session)||void 0===n?void 0:n.attributes;if(r&&"true"===(null==r?void 0:r.isSampled)){let n=JSON.parse(JSON.stringify(e));const t=null===(i=n.meta.session)||void 0===i?void 0:i.attributes;return null==t||delete t.isSampled,0===Object.keys(null!=t?t:{}).length&&(null===(o=n.meta.session)||void 0===o||delete o.attributes),n}return null}))}initialize(){this.logDebug("init session instrumentation");const e=this.config.sessionTracking;if(null==e?void 0:e.enabled){const n=(null==e?void 0:e.persistent)?Be:ze;this.registerBeforeSendHook(n);const{initialSession:t,lifecycleType:i}=this.createInitialSession(n,e);n.storeUserSession(t);const o=t.sessionMeta;this.notifiedSession=o,this.api.setSession(o),i===le&&this.api.pushEvent(le,{},void 0,{skipDedupe:!0}),i===ue&&this.api.pushEvent(ue,{},void 0,{skipDedupe:!0})}this.metas.addListener(this.sendSessionStartEvent.bind(this))}}class $e extends Y{constructor(e={}){super(),this.options=e,this.name="@grafana/faro-web-sdk:instrumentation-console",this.version=Q}initialize(){this.logDebug("Initializing\n",this.options),k.filter((e=>{var n;return!(null!==(n=this.options.disabledLevels)&&void 0!==n?n:$e.defaultDisabledLevels).includes(e)})).forEach((e=>{console[e]=(...n)=>{try{this.api.pushLog(n,{level:e})}catch(e){this.logError(e)}finally{this.unpatchedConsole[e](...n)}}}))}}$e.defaultDisabledLevels=[e.LogLevel.DEBUG,e.LogLevel.TRACE,e.LogLevel.LOG];const Ve=/^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i,qe=/^\s*at (?:(.*\).*?|.*?) ?\((?:address at )?)?((?:file|https?|blob|chrome-extension|address|native|eval|webpack|<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,Ge=/\((\S*)(?::(\d+))(?::(\d+))\)/,He="address at ",We=He.length,Ke=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:file|https?|blob|chrome|webpack|resource|moz-extension|safari-extension|safari-web-extension|capacitor)?:\/.*?|\[native code]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i,Xe=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,Je="safari-extension",Ze="safari-web-extension",Ye=/Minified React error #\d+;/i;function Qe(e,n,t,i){const o={filename:e||document.location.href,function:n||"?"};return void 0!==t&&(o.lineno=t),void 0!==i&&(o.colno=i),o}function en(e,n){const t=null==e?void 0:e.includes(Je),i=!t&&(null==e?void 0:e.includes(Ze));return t||i?[(null==e?void 0:e.includes("@"))?e.split("@")[0]:e,t?`${Je}:${n}`:`${Ze}:${n}`]:[e,n]}function nn(e){let n=[];e.stacktrace?n=e.stacktrace.split("\n").filter(((e,n)=>n%2==0)):e.stack&&(n=e.stack.split("\n"));const t=n.reduce(((n,t,i)=>{let o,r,a,l,u;if(o=qe.exec(t)){if(r=o[1],a=o[2],l=o[3],u=o[4],null==a?void 0:a.startsWith("eval")){const e=Ge.exec(a);e&&(a=e[1],l=e[2],u=e[3])}a=(null==a?void 0:a.startsWith(He))?a.substring(We):a,[r,a]=en(r,a)}else if(o=Ke.exec(t)){if(r=o[1],a=o[3],l=o[4],u=o[5],a&&a.includes(" > eval")){const e=Xe.exec(a);e&&(r=r||"eval",a=e[1],l=e[2])}else 0===i&&!u&&s(e.columnNumber)&&(u=String(e.columnNumber+1));[r,a]=en(r,a)}return(a||r)&&n.push(Qe(a,r,l?Number(l):void 0,u?Number(u):void 0)),n}),[]);return Ye.test(e.message)?t.slice(1):t}function tn(e){return{frames:nn(e)}}function on(e){let n,t,i,o,r=[];if(m(e)&&e.error)n=e.error.message,t=e.error.name,r=nn(e.error);else if((i=v(e))||b(e)){const{name:o,message:r}=e;t=null!=o?o:i?"DOMError":"DOMException",n=r?`${t}: ${r}`:t}else g(e)?(n=e.message,r=nn(e)):(a(e)||(o=p(e)))&&(t=o?e.constructor.name:void 0,n=`Non-Error exception captured with keys: ${Object.keys(e)}`);return[n,t,r]}function rn(e){const n=window.onerror;window.onerror=(...t)=>{try{const[i,o,s,a,l]=t;let u,c,d=[];const p=r(i),f=Qe(o,"?",s,a);l||!p?([u,c,d]=on(null!=l?l:i),0===d.length&&(d=[f])):p&&([u,c]=function(e){var n,t;const i=e.match(Ve),o=null!==(n=null==i?void 0:i[1])&&void 0!==n?n:X;return[null!==(t=null==i?void 0:i[2])&&void 0!==t?t:e,o]}(i),d=[f]),u&&e.pushError(new Error(u),{type:c,stackFrames:d})}finally{null==n||n.apply(window,t)}}}class sn extends Y{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-errors",this.version=Q}initialize(){var e;this.logDebug("Initializing"),rn(this.api),e=this.api,window.addEventListener("unhandledrejection",(n=>{var t,i;let o,r,s=n;s.reason?s=n.reason:(null===(t=n.detail)||void 0===t?void 0:t.reason)&&(s=null===(i=n.detail)||void 0===i?void 0:i.reason);let a=[];c(s)?(o=`Non-Error promise rejection captured with value: ${String(s)}`,r="UnhandledRejection"):[o,r,a]=on(s),o&&e.pushError(new Error(o),{type:r,stackFrames:a})}))}}class an extends Y{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-view",this.version=Q}sendViewChangedEvent(e){var n,t,i;const o=e.view;o&&o.name!==(null===(n=this.notifiedView)||void 0===n?void 0:n.name)&&(this.api.pushEvent(ae,{fromView:null!==(i=null===(t=this.notifiedView)||void 0===t?void 0:t.name)&&void 0!==i?i:"",toView:o.name},void 0,{skipDedupe:!0}),this.notifiedView=o)}initialize(){this.sendViewChangedEvent(this.metas.value),this.metas.addListener(this.sendViewChangedEvent.bind(this))}}var ln,un,cn,dn,pn,fn=-1,gn=function(e){addEventListener("pageshow",(function(n){n.persisted&&(fn=n.timeStamp,e(n))}),!0)},mn=function(){return window.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0]},vn=function(){var e=mn();return e&&e.activationStart||0},bn=function(e,n){var t=mn(),i="navigate";return fn>=0?i="back-forward-cache":t&&(document.prerendering||vn()>0?i="prerender":document.wasDiscarded?i="restore":t.type&&(i=t.type.replace(/_/g,"-"))),{name:e,value:void 0===n?-1:n,rating:"good",delta:0,entries:[],id:"v3-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:i}},hn=function(e,n,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var i=new PerformanceObserver((function(e){Promise.resolve().then((function(){n(e.getEntries())}))}));return i.observe(Object.assign({type:e,buffered:!0},t||{})),i}}catch(e){}},wn=function(e,n,t,i){var o,r;return function(s){n.value>=0&&(s||i)&&((r=n.value-(o||0))||void 0===o)&&(o=n.value,n.delta=r,n.rating=function(e,n){return e>n[1]?"poor":e>n[0]?"needs-improvement":"good"}(n.value,t),e(n))}},yn=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},Sn=function(e){var n=function(n){"pagehide"!==n.type&&"hidden"!==document.visibilityState||e(n)};addEventListener("visibilitychange",n,!0),addEventListener("pagehide",n,!0)},En=function(e){var n=!1;return function(t){n||(e(t),n=!0)}},Tn=-1,kn=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},In=function(e){"hidden"===document.visibilityState&&Tn>-1&&(Tn="visibilitychange"===e.type?e.timeStamp:0,On())},xn=function(){addEventListener("visibilitychange",In,!0),addEventListener("prerenderingchange",In,!0)},On=function(){removeEventListener("visibilitychange",In,!0),removeEventListener("prerenderingchange",In,!0)},Ln=function(){return Tn<0&&(Tn=kn(),xn(),gn((function(){setTimeout((function(){Tn=kn(),xn()}),0)}))),{get firstHiddenTime(){return Tn}}},Nn=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},jn=[1800,3e3],An=function(e,n){n=n||{},Nn((function(){var t,i=Ln(),o=bn("FCP"),r=hn("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(r.disconnect(),e.startTime<i.firstHiddenTime&&(o.value=Math.max(e.startTime-vn(),0),o.entries.push(e),t(!0)))}))}));r&&(t=wn(e,o,jn,n.reportAllChanges),gn((function(i){o=bn("FCP"),t=wn(e,o,jn,n.reportAllChanges),yn((function(){o.value=performance.now()-i.timeStamp,t(!0)}))})))}))},Cn=[.1,.25],Rn={passive:!0,capture:!0},_n=new Date,Mn=function(e,n){ln||(ln=n,un=e,cn=new Date,Dn(removeEventListener),Pn())},Pn=function(){if(un>=0&&un<cn-_n){var e={entryType:"first-input",name:ln.type,target:ln.target,cancelable:ln.cancelable,startTime:ln.timeStamp,processingStart:ln.timeStamp+un};dn.forEach((function(n){n(e)})),dn=[]}},Un=function(e){if(e.cancelable){var n=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,n){var t=function(){Mn(e,n),o()},i=function(){o()},o=function(){removeEventListener("pointerup",t,Rn),removeEventListener("pointercancel",i,Rn)};addEventListener("pointerup",t,Rn),addEventListener("pointercancel",i,Rn)}(n,e):Mn(n,e)}},Dn=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(n){return e(n,Un,Rn)}))},Bn=[100,300],zn=0,Fn=1/0,$n=0,Vn=function(e){e.forEach((function(e){e.interactionId&&(Fn=Math.min(Fn,e.interactionId),$n=Math.max($n,e.interactionId),zn=$n?($n-Fn)/7+1:0)}))},qn=function(){return pn?zn:performance.interactionCount||0},Gn=function(){"interactionCount"in performance||pn||(pn=hn("event",Vn,{type:"event",buffered:!0,durationThreshold:0}))},Hn=[200,500],Wn=0,Kn=function(){return qn()-Wn},Xn=[],Jn={},Zn=function(e){var n=Xn[Xn.length-1],t=Jn[e.interactionId];if(t||Xn.length<10||e.duration>n.latency){if(t)t.entries.push(e),t.latency=Math.max(t.latency,e.duration);else{var i={id:e.interactionId,latency:e.duration,entries:[e]};Jn[i.id]=i,Xn.push(i)}Xn.sort((function(e,n){return n.latency-e.latency})),Xn.splice(10).forEach((function(e){delete Jn[e.id]}))}},Yn=[2500,4e3],Qn={},et=[800,1800],nt=function e(n){document.prerendering?Nn((function(){return e(n)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(n)}),!0):setTimeout(n,0)};class tt extends Y{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-web-vitals",this.version=Q}initialize(){this.logDebug("Initializing"),Object.entries(tt.mapping).forEach((([e,n])=>{n((n=>{this.api.pushMeasurement({type:"web-vitals",values:{[e]:n.value}})}))}))}}function it(e,n,t,i){return new(t||(t=Promise))((function(o,r){function s(e){try{l(i.next(e))}catch(e){r(e)}}function a(e){try{l(i.throw(e))}catch(e){r(e)}}function l(e){var n;e.done?o(e.value):(n=e.value,n instanceof t?n:new t((function(e){e(n)}))).then(s,a)}l((i=i.apply(e,n||[])).next())}))}tt.mapping={cls:function(e,n){n=n||{},An(En((function(){var t,i=bn("CLS",0),o=0,r=[],s=function(e){e.forEach((function(e){if(!e.hadRecentInput){var n=r[0],t=r[r.length-1];o&&e.startTime-t.startTime<1e3&&e.startTime-n.startTime<5e3?(o+=e.value,r.push(e)):(o=e.value,r=[e])}})),o>i.value&&(i.value=o,i.entries=r,t())},a=hn("layout-shift",s);a&&(t=wn(e,i,Cn,n.reportAllChanges),Sn((function(){s(a.takeRecords()),t(!0)})),gn((function(){o=0,i=bn("CLS",0),t=wn(e,i,Cn,n.reportAllChanges),yn((function(){return t()}))})),setTimeout(t,0))})))},fcp:An,fid:function(e,n){n=n||{},Nn((function(){var t,i=Ln(),o=bn("FID"),r=function(e){e.startTime<i.firstHiddenTime&&(o.value=e.processingStart-e.startTime,o.entries.push(e),t(!0))},s=function(e){e.forEach(r)},a=hn("first-input",s);t=wn(e,o,Bn,n.reportAllChanges),a&&Sn(En((function(){s(a.takeRecords()),a.disconnect()}))),a&&gn((function(){var i;o=bn("FID"),t=wn(e,o,Bn,n.reportAllChanges),dn=[],un=-1,ln=null,Dn(addEventListener),i=r,dn.push(i),Pn()}))}))},inp:function(e,n){n=n||{},Nn((function(){var t;Gn();var i,o=bn("INP"),r=function(e){e.forEach((function(e){e.interactionId&&Zn(e),"first-input"===e.entryType&&!Xn.some((function(n){return n.entries.some((function(n){return e.duration===n.duration&&e.startTime===n.startTime}))}))&&Zn(e)}));var n,t=(n=Math.min(Xn.length-1,Math.floor(Kn()/50)),Xn[n]);t&&t.latency!==o.value&&(o.value=t.latency,o.entries=t.entries,i())},s=hn("event",r,{durationThreshold:null!==(t=n.durationThreshold)&&void 0!==t?t:40});i=wn(e,o,Hn,n.reportAllChanges),s&&("interactionId"in PerformanceEventTiming.prototype&&s.observe({type:"first-input",buffered:!0}),Sn((function(){r(s.takeRecords()),o.value<0&&Kn()>0&&(o.value=0,o.entries=[]),i(!0)})),gn((function(){Xn=[],Wn=qn(),o=bn("INP"),i=wn(e,o,Hn,n.reportAllChanges)})))}))},lcp:function(e,n){n=n||{},Nn((function(){var t,i=Ln(),o=bn("LCP"),r=function(e){var n=e[e.length-1];n&&n.startTime<i.firstHiddenTime&&(o.value=Math.max(n.startTime-vn(),0),o.entries=[n],t())},s=hn("largest-contentful-paint",r);if(s){t=wn(e,o,Yn,n.reportAllChanges);var a=En((function(){Qn[o.id]||(r(s.takeRecords()),s.disconnect(),Qn[o.id]=!0,t(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return setTimeout(a,0)}),!0)})),Sn(a),gn((function(i){o=bn("LCP"),t=wn(e,o,Yn,n.reportAllChanges),yn((function(){o.value=performance.now()-i.timeStamp,Qn[o.id]=!0,t(!0)}))}))}}))},ttfb:function(e,n){n=n||{};var t=bn("TTFB"),i=wn(e,t,et,n.reportAllChanges);nt((function(){var o=mn();if(o){var r=o.responseStart;if(r<=0||r>performance.now())return;t.value=Math.max(r-vn(),0),t.entries=[o],i(!0),gn((function(){t=bn("TTFB",0),(i=wn(e,t,et,n.reportAllChanges))(!0)}))}}))}},"function"==typeof SuppressedError&&SuppressedError;const ot="com.grafana.faro.lastNavigationId";function rt(e=[],n){return e.some((e=>e&&null!=n.match(e)))}function st(e,n={}){for(const[t,i]of Object.entries(n)){const n=e[t];return null!=n&&(u(i)?i.includes(n):n===i)}return!0}function at(e){const{connectEnd:n,connectStart:t,decodedBodySize:i,domainLookupEnd:o,domainLookupStart:r,duration:s,encodedBodySize:a,fetchStart:l,initiatorType:u,name:c,nextHopProtocol:d,redirectEnd:p,redirectStart:f,renderBlockingStatus:g,requestStart:m,responseEnd:v,responseStart:b,responseStatus:h,secureConnectionStart:w,transferSize:y,workerStart:S}=e;return{name:c,duration:ut(s),tcpHandshakeTime:ut(n-t),dnsLookupTime:ut(o-r),tlsNegotiationTime:ut(m-w),responseStatus:ut(h),redirectTime:ut(p-f),requestTime:ut(b-m),responseTime:ut(v-b),fetchTime:ut(v-l),serviceWorkerTime:ut(l-S),decodedBodySize:ut(i),encodedBodySize:ut(a),cacheHitStatus:function(){let e="fullLoad";0===y?i>0&&(e="cache"):null!=h?304===h&&(e="conditionalFetch"):a>0&&y<a&&(e="conditionalFetch");return e}(),renderBlockingStatus:ut(g),protocol:d,initiatorType:u}}function lt(e){const{activationStart:n,domComplete:t,domContentLoadedEventEnd:i,domContentLoadedEventStart:o,domInteractive:r,fetchStart:s,loadEventEnd:a,loadEventStart:l,responseStart:u,type:c}=e,d=function(){var e;if(null!=(null===(e=performance.timing)||void 0===e?void 0:e.domLoading))return performance.timing.domLoading-performance.timeOrigin;return null}();return Object.assign({visibilityState:document.visibilityState,pageLoadTime:ut(t-s),documentParsingTime:ut(d?r-d:null),domProcessingTime:ut(t-r),domContentLoadHandlerTime:ut(i-o),onLoadTime:ut(a-l),ttfb:ut(Math.max(u-(null!=n?n:0),0)),type:c},at(e))}function ut(e){return null==e?"unknown":"number"==typeof e?Math.round(e).toString():e.toString()}const ct={initiatorType:["xmlhttprequest","fetch"]};class dt extends Y{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-performance",this.version=Q}initialize(){"PerformanceObserver"in window?function(e){if("complete"===document.readyState)e();else{const n=()=>{"complete"===document.readyState&&(e(),document.removeEventListener("readystatechange",n))};document.addEventListener("readystatechange",n)}}((()=>it(this,void 0,void 0,(function*(){const n=this.api.pushEvent,t=this.getIgnoreUrls(),{faroNavigationId:i}=yield function(e,n){let t;const i=new Promise((e=>{t=e}));return new PerformanceObserver((i=>{var o;const[r]=i.getEntries();if(null==r||rt(n,r.name))return;const s=null!==(o=Ee(ot,we))&&void 0!==o?o:"unknown",a=Object.assign(Object.assign({},lt(r.toJSON())),{faroNavigationId:L(),faroPreviousNavigationId:s});Te(ot,a.faroNavigationId,we),e("faro.performance.navigation",a),t(a)})).observe({type:"navigation",buffered:!0}),i}(n,t);null!=i&&function(n,t,i){const o=e.faro.config.trackResources;new PerformanceObserver((e=>{const r=e.getEntries();for(const e of r){if(rt(i,e.name))return;const r=e.toJSON();if(null==o&&st(r,ct)||o){const e=Object.assign(Object.assign({},at(r)),{faroNavigationId:n,faroResourceId:L()});t("faro.performance.resource",e)}}})).observe({type:"resource",buffered:!0})}(i,n,t)})))):this.logDebug("performance observer not supported. Disable performance instrumentation.")}getIgnoreUrls(){var e;return null===(e=this.transports.transports)||void 0===e?void 0:e.flatMap((e=>e.getIgnoreUrls()))}}function pt(e={}){const n=[new sn,new tt,new Fe,new an];return!1!==e.enablePerformanceInstrumentation&&n.unshift(new dt),!1!==e.captureConsole&&n.push(new $e({disabledLevels:e.captureConsoleDisabledLevels})),n}const ft="browser",gt=()=>{const e=window.k6;return{k6:Object.assign({isK6Browser:!0},(null==e?void 0:e.testRunId)&&{testRunId:null==e?void 0:e.testRunId})}};class mt extends H{constructor(e){var n,t,i,o;super(),this.options=e,this.name="@grafana/faro-web-sdk:transport-fetch",this.version=Q,this.disabledUntil=new Date,this.rateLimitBackoffMs=null!==(n=e.defaultRateLimitBackoffMs)&&void 0!==n?n:5e3,this.getNow=null!==(t=e.getNow)&&void 0!==t?t:()=>Date.now(),this.promiseBuffer=x({size:null!==(i=e.bufferSize)&&void 0!==i?i:30,concurrency:null!==(o=e.concurrency)&&void 0!==o?o:5})}send(e){return it(this,void 0,void 0,(function*(){try{if(this.disabledUntil>new Date(this.getNow()))return this.logWarn(`Dropping transport item due to too many requests. Backoff until ${this.disabledUntil}`),Promise.resolve();yield this.promiseBuffer.add((()=>{const n=JSON.stringify(K(e)),{url:t,requestOptions:i,apiKey:o}=this.options,r=null!=i?i:{},{headers:s}=r,a=function(e,n){var t={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&n.indexOf(i)<0&&(t[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(e);o<i.length;o++)n.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(e,i[o])&&(t[i[o]]=e[i[o]])}return t}(r,["headers"]);let l;const u=this.metas.value.session;return null!=u&&(l=u.id),fetch(t,Object.assign({method:"POST",headers:Object.assign(Object.assign(Object.assign({"Content-Type":"application/json"},null!=s?s:{}),o?{"x-api-key":o}:{}),l?{"x-faro-session-id":l}:{}),body:n,keepalive:n.length<=6e4},null!=a?a:{})).then((e=>(429===e.status&&(this.disabledUntil=this.getRetryAfterDate(e),this.logWarn(`Too many requests, backing off until ${this.disabledUntil}`)),e.text().catch(I),e))).catch((e=>{this.logError("Failed sending payload to the receiver\n",JSON.parse(n),e)}))}))}catch(e){this.logError(e)}}))}getIgnoreUrls(){var e;return[this.options.url].concat(null!==(e=this.config.ignoreUrls)&&void 0!==e?e:[])}isBatched(){return!0}getRetryAfterDate(e){const n=this.getNow(),t=e.headers.get("Retry-After");if(t){const e=Number(t);if(!isNaN(e))return new Date(1e3*e+n);const i=Date.parse(t);if(!isNaN(i))return new Date(i)}return new Date(n+this.rateLimitBackoffMs)}}function vt(e){var n,t,i,o,r,s,l,u,c;const d=[],p=$(e.unpatchedConsole,e.internalLoggerLevel);e.transports?((e.url||e.apiKey)&&p.error('if "transports" is defined, "url" and "apiKey" should not be defined'),d.push(...e.transports)):e.url?d.push(new mt({url:e.url,apiKey:e.apiKey})):p.error('either "url" or "transports" must be defined');return{app:e.app,batching:Object.assign(Object.assign({},se),e.batching),dedupe:null===(n=e.dedupe)||void 0===n||n,globalObjectKey:e.globalObjectKey||re,instrumentations:null!==(t=e.instrumentations)&&void 0!==t?t:pt(),internalLoggerLevel:null!==(i=e.internalLoggerLevel)&&void 0!==i?i:D,isolate:null!==(o=e.isolate)&&void 0!==o&&o,metas:function(){const n=ve;return e.metas&&n.push(...e.metas),a(window.k6)?[...n,gt]:n}(),parseStacktrace:tn,paused:null!==(r=e.paused)&&void 0!==r&&r,preventGlobalExposure:null!==(s=e.preventGlobalExposure)&&void 0!==s&&s,transports:d,unpatchedConsole:null!==(l=e.unpatchedConsole)&&void 0!==l?l:B,beforeSend:e.beforeSend,eventDomain:null!==(u=e.eventDomain)&&void 0!==u?u:ft,ignoreErrors:e.ignoreErrors,ignoreUrls:e.ignoreUrls,sessionTracking:Object.assign(Object.assign({},_e),e.sessionTracking),user:e.user,view:null!==(c=e.view)&&void 0!==c?c:he,trackResources:e.trackResources}}return e.BaseExtension=G,e.BaseInstrumentation=Y,e.BaseTransport=H,e.ConsoleInstrumentation=$e,e.ConsoleTransport=class extends H{constructor(e={}){super(),this.options=e,this.name="@grafana/faro-web-sdk:transport-console",this.version=Q}send(n){var t;return this.unpatchedConsole[null!==(t=this.options.level)&&void 0!==t?t:e.LogLevel.DEBUG]("New event",K([n]))}},e.Conventions={EventNames:{CLICK:"click",NAVIGATION:"navigation",SESSION_START:"session_start",VIEW_CHANGED:"view_changed"}},e.EVENT_CLICK="click",e.EVENT_NAVIGATION="navigation",e.EVENT_ROUTE_CHANGE="route_change",e.EVENT_SESSION_EXTEND=ce,e.EVENT_SESSION_RESUME=ue,e.EVENT_SESSION_START=le,e.EVENT_VIEW_CHANGED=ae,e.ErrorsInstrumentation=sn,e.FetchTransport=mt,e.MAX_SESSION_PERSISTENCE_TIME=Re,e.MAX_SESSION_PERSISTENCE_TIME_BUFFER=6e4,e.PerformanceInstrumentation=dt,e.PersistentSessionsManager=Be,e.SESSION_EXPIRATION_TIME=Ae,e.SESSION_INACTIVITY_TIME=Ce,e.STORAGE_KEY=je,e.SessionInstrumentation=Fe,e.VERSION=Q,e.ViewInstrumentation=an,e.VolatileSessionsManager=ze,e.WebVitalsInstrumentation=tt,e.allLogLevels=k,e.browserMeta=ge,e.buildStackFrame=Qe,e.createInternalLogger=$,e.createPromiseBuffer=x,e.createSession=be,e.deepEqual=y,e.defaultEventDomain=ft,e.defaultExceptionType=X,e.defaultGlobalObjectKey=re,e.defaultInternalLoggerLevel=D,e.defaultLogLevel=T,e.defaultMetas=ve,e.defaultViewMeta=he,e.genShortID=L,e.getCurrentTimestamp=S,e.getDataFromSafariExtensions=en,e.getInternalFaroFromGlobalObject=function(){return N[ee]},e.getStackFramesFromError=nn,e.getTransportBody=K,e.getWebInstrumentations=pt,e.globalObject=N,e.initializeFaro=function(e){const n=vt(e);if(n)return oe(n)},e.internalGlobalObjectKey=ee,e.isArray=u,e.isBoolean=e=>n(e,"boolean"),e.isDomError=v,e.isDomException=b,e.isElement=e=>h&&i(e,Element),e.isElementDefined=h,e.isError=g,e.isErrorDefined=f,e.isErrorEvent=m,e.isEvent=p,e.isEventDefined=d,e.isFunction=l,e.isInstanceOf=i,e.isInt=e=>s(e)&&Number.isInteger(e),e.isInternalFaroOnGlobalObject=te,e.isMap=e=>w&&i(e,Map),e.isMapDefined=w,e.isNull=o,e.isNumber=s,e.isObject=a,e.isPrimitive=c,e.isRegExp=e=>t(e,"RegExp"),e.isString=r,e.isSymbol=e=>n(e,"symbol"),e.isSyntheticEvent=e=>a(e)&&"nativeEvent"in e&&"preventDefault"in e&&"stopPropagation"in e,e.isThenable=e=>l(null==e?void 0:e.then),e.isToString=t,e.isTypeof=n,e.isUndefined=e=>n(e,"undefined"),e.makeCoreConfig=vt,e.noop=I,e.pageMeta=me,e.parseStacktrace=tn,e.sdkMeta=()=>({sdk:{name:"@grafana/faro-core",version:Q,integrations:e.faro.config.instrumentations.map((({name:e,version:n})=>({name:e,version:n})))}}),e.setInternalFaroOnGlobalObject=ne,e.transportItemTypeToBodyKey=R,e}({});
1
+ var GrafanaFaroWebSdk=function(e){"use strict";function t(e,t){return typeof e===t}function n(e,t){return Object.prototype.toString.call(e)===`[object ${t}]`}function i(e,t){try{return e instanceof t}catch(e){return!1}}const r=e=>t(e,"null"),o=e=>t(e,"string"),a=e=>t(e,"number")&&!isNaN(e)||t(e,"bigint"),s=e=>!r(e)&&t(e,"object"),u=e=>t(e,"function"),l=e=>n(e,"Array"),c=e=>!s(e)&&!u(e),d="undefined"!=typeof Event,f=e=>d&&i(e,Event),p="undefined"!=typeof Error,m=e=>p&&i(e,Error),g=e=>n(e,"ErrorEvent"),v=e=>n(e,"DOMError"),h=e=>n(e,"DOMException"),b="undefined"!=typeof Element,w="undefined"!=typeof Map;function y(e,n){if(e===n)return!0;if(t(e,"number")&&isNaN(e))return t(n,"number")&&isNaN(n);const i=l(e),r=l(n);if(i!==r)return!1;if(i&&r){const t=e.length;if(t!==n.length)return!1;for(let i=t;0!=i--;)if(!y(e[i],n[i]))return!1;return!0}const o=s(e),a=s(n);if(o!==a)return!1;if(e&&n&&o&&a){const t=Object.keys(e),i=Object.keys(n);if(t.length!==i.length)return!1;for(let e of t)if(!i.includes(e))return!1;for(let i of t)if(!y(e[i],n[i]))return!1;return!0}return!1}function S(){return(new Date).toISOString()}var T;e.LogLevel=void 0,(T=e.LogLevel||(e.LogLevel={})).TRACE="trace",T.DEBUG="debug",T.INFO="info",T.LOG="log",T.WARN="warn",T.ERROR="error";const E=e.LogLevel.LOG,I=[e.LogLevel.TRACE,e.LogLevel.DEBUG,e.LogLevel.INFO,e.LogLevel.LOG,e.LogLevel.WARN,e.LogLevel.ERROR];function k(){}function x(e){const{size:t,concurrency:n}=e,i=[];let r=0;const o=()=>{if(r<n&&i.length){const{producer:e,resolve:t,reject:n}=i.shift();r++,e().then((e=>{r--,o(),t(e)}),(e=>{r--,o(),n(e)}))}};return{add:e=>{if(i.length+r>=t)throw new Error("Task buffer full");return new Promise(((t,n)=>{i.push({producer:e,resolve:t,reject:n}),o()}))}}}const L="abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ0123456789";function O(e=10){return Array.from(Array(e)).map((()=>L[Math.floor(Math.random()*L.length)])).join("")}const C="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof global?global:"undefined"!=typeof self?self:void 0;function P(){return Date.now()}class _{constructor(e,t){var n,i;this.signalBuffer=[],this.itemLimit=null!==(n=null==t?void 0:t.itemLimit)&&void 0!==n?n:50,this.sendTimeout=null!==(i=null==t?void 0:t.sendTimeout)&&void 0!==i?i:250,this.paused=(null==t?void 0:t.paused)||!1,this.sendFn=e,this.flushInterval=-1,this.paused||this.start(),document.addEventListener("visibilitychange",(()=>{"hidden"===document.visibilityState&&this.flush()}))}addItem(e){this.paused||(this.signalBuffer.push(e),this.signalBuffer.length>=this.itemLimit&&this.flush())}start(){this.paused=!1,this.sendTimeout>0&&(this.flushInterval=window.setInterval((()=>this.flush()),this.sendTimeout))}pause(){this.paused=!0,clearInterval(this.flushInterval)}groupItems(e){const t=new Map;return e.forEach((e=>{const n=JSON.stringify(e.meta);let i=t.get(n);i=void 0===i?[e]:[...i,e],t.set(n,i)})),Array.from(t.values())}flush(){if(this.paused||0===this.signalBuffer.length)return;this.groupItems(this.signalBuffer).forEach(this.sendFn),this.signalBuffer=[]}}var N;e.TransportItemType=void 0,(N=e.TransportItemType||(e.TransportItemType={})).EXCEPTION="exception",N.LOG="log",N.MEASUREMENT="measurement",N.TRACE="trace",N.EVENT="event";const A={[e.TransportItemType.EXCEPTION]:"exceptions",[e.TransportItemType.LOG]:"logs",[e.TransportItemType.MEASUREMENT]:"measurements",[e.TransportItemType.TRACE]:"traces",[e.TransportItemType.EVENT]:"events"};function M(t){return n=>{if(n.type===e.TransportItemType.EXCEPTION&&n.payload){const e=n.payload,i=`${e.type}: ${e.value}`;if(function(e,t){return e.some((e=>o(e)?t.includes(e):!!t.match(e)))}(t,i))return null}return n}}function D(e,t,n,i){var r;t.debug("Initializing transports");const o=[];let a=n.paused,s=[];const u=e=>{let t=e;for(const e of s){const n=t.map(e).filter(Boolean);if(0===n.length)return[];t=n}return t},l=e=>{const n=u(e);if(0!==n.length)for(const e of o)t.debug(`Transporting item using ${e.name}\n`,n),e.isBatched()&&e.send(n)};let c;(null===(r=n.batching)||void 0===r?void 0:r.enabled)&&(c=new _(l,{sendTimeout:n.batching.sendTimeout,itemLimit:n.batching.itemLimit,paused:a}));return{add:(...r)=>{t.debug("Adding transports"),r.forEach((r=>{t.debug(`Adding "${r.name}" transport`);o.some((e=>e===r))?t.warn(`Transport ${r.name} is already added`):(r.unpatchedConsole=e,r.internalLogger=t,r.config=n,r.metas=i,o.push(r))}))},addBeforeSendHooks:(...e)=>{t.debug("Adding beforeSendHooks\n",s),e.forEach((e=>{e&&s.push(e)}))},addIgnoreErrorsPatterns:(...e)=>{t.debug("Adding ignoreErrorsPatterns\n",e),e.forEach((e=>{e&&s.push(M(e))}))},getBeforeSendHooks:()=>[...s],execute:e=>{var i;a||((null===(i=n.batching)||void 0===i?void 0:i.enabled)&&(null==c||c.addItem(e)),(e=>{var i,r;if((null===(i=n.batching)||void 0===i?void 0:i.enabled)&&o.every((e=>e.isBatched())))return;const[a]=u([e]);if(void 0!==a)for(const e of o)t.debug(`Transporting item using ${e.name}\n`,a),e.isBatched()?(null===(r=n.batching)||void 0===r?void 0:r.enabled)||e.send([a]):e.send(a)})(e))},isPaused:()=>a,pause:()=>{t.debug("Pausing transports"),null==c||c.pause(),a=!0},remove:(...e)=>{t.debug("Removing transports"),e.forEach((e=>{t.debug(`Removing "${e.name}" transport`);const n=o.indexOf(e);-1!==n?o.splice(n,1):t.warn(`Transport "${e.name}" is not added`)}))},removeBeforeSendHooks:(...e)=>{s.filter((t=>!e.includes(t)))},get transports(){return[...o]},unpause:()=>{t.debug("Unpausing transports"),null==c||c.start(),a=!1}}}var j;e.InternalLoggerLevel=void 0,(j=e.InternalLoggerLevel||(e.InternalLoggerLevel={}))[j.OFF=0]="OFF",j[j.ERROR=1]="ERROR",j[j.WARN=2]="WARN",j[j.INFO=3]="INFO",j[j.VERBOSE=4]="VERBOSE";const R={debug:k,error:k,info:k,prefix:"Faro",warn:k},B=e.InternalLoggerLevel.ERROR,U=Object.assign({},console);let F=U;function z(e){var t;return F=null!==(t=e.unpatchedConsole)&&void 0!==t?t:F,F}function V(t=U,n=B){const i=R;return n>e.InternalLoggerLevel.OFF&&(i.error=n>=e.InternalLoggerLevel.ERROR?function(...e){t.error(`${i.prefix}\n`,...e)}:k,i.warn=n>=e.InternalLoggerLevel.WARN?function(...e){t.warn(`${i.prefix}\n`,...e)}:k,i.info=n>=e.InternalLoggerLevel.INFO?function(...e){t.info(`${i.prefix}\n`,...e)}:k,i.debug=n>=e.InternalLoggerLevel.VERBOSE?function(...e){t.debug(`${i.prefix}\n`,...e)}:k),i}let $=R;function q(e,t){return $=V(e,t.internalLoggerLevel),$}class G{constructor(){this.unpatchedConsole=U,this.internalLogger=R,this.config={},this.metas={}}logDebug(...e){this.internalLogger.debug(`${this.name}\n`,...e)}logInfo(...e){this.internalLogger.info(`${this.name}\n`,...e)}logWarn(...e){this.internalLogger.warn(`${this.name}\n`,...e)}logError(...e){this.internalLogger.error(`${this.name}\n`,...e)}}class W extends G{isBatched(){return!1}getIgnoreUrls(){return[]}}function H(e,t){var n,i;if(void 0===t)return e;if(void 0===e)return{resourceSpans:t};const r=null===(n=e.resourceSpans)||void 0===n?void 0:n[0];if(void 0===r)return e;const o=(null==r?void 0:r.scopeSpans)||[],a=(null===(i=null==t?void 0:t[0])||void 0===i?void 0:i.scopeSpans)||[];return Object.assign(Object.assign({},e),{resourceSpans:[Object.assign(Object.assign({},r),{scopeSpans:[...o,...a]})]})}function K(t){let n={meta:{}};return void 0!==t[0]&&(n.meta=t[0].meta),t.forEach((t=>{switch(t.type){case e.TransportItemType.LOG:case e.TransportItemType.EVENT:case e.TransportItemType.EXCEPTION:case e.TransportItemType.MEASUREMENT:const i=A[t.type],r=n[i];n=Object.assign(Object.assign({},n),{[i]:void 0===r?[t.payload]:[...r,t.payload]});break;case e.TransportItemType.TRACE:n=Object.assign(Object.assign({},n),{traces:H(n.traces,t.payload.resourceSpans)})}})),n}const X="Error";let J;const Z=e=>e.map((e=>{try{return String(e)}catch(e){return""}})).join(" ");function Y(t,n,i,o,a){n.debug("Initializing API");const s=function(t,n,i,r,o){let a;return n.debug("Initializing traces API"),{getOTEL:()=>a,getTraceContext:()=>{const e=null==a?void 0:a.trace.getSpanContext(a.context.active());return e?{trace_id:e.traceId,span_id:e.spanId}:void 0},initOTEL:(e,t)=>{n.debug("Initializing OpenTelemetry"),a={trace:e,context:t}},isOTELInitialized:()=>!!a,pushTraces:t=>{try{const i={type:e.TransportItemType.TRACE,payload:t,meta:r.value};n.debug("Pushing trace\n",i),o.execute(i)}catch(e){n.error("Error pushing trace\n",e)}}}}(0,n,0,o,a);return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},s),function(t,n,i,o,a,s){var u;n.debug("Initializing exceptions API");let l=null;J=null!==(u=i.parseStacktrace)&&void 0!==u?u:J;const c=e=>{n.debug("Changing stacktrace parser"),J=null!=e?e:J};return c(i.parseStacktrace),{changeStacktraceParser:c,getStacktraceParser:()=>J,pushError:(t,{skipDedupe:u,stackFrames:c,type:d,context:f,spanContext:p}={})=>{d=d||t.name||X;const m={meta:o.value,payload:{type:d,value:t.message,timestamp:S(),trace:p?{trace_id:p.traceId,span_id:p.spanId}:s.getTraceContext(),context:null!=f?f:{}},type:e.TransportItemType.EXCEPTION};(null==(c=null!=c?c:t.stack?null==J?void 0:J(t).frames:void 0)?void 0:c.length)&&(m.payload.stacktrace={frames:c});const g={type:m.payload.type,value:m.payload.value,stackTrace:m.payload.stacktrace,context:m.payload.context};u||!i.dedupe||r(l)||!y(g,l)?(l=g,n.debug("Pushing exception\n",m),a.execute(m)):n.debug("Skipping error push because it is the same as the last one\n",m.payload)}}}(0,n,i,o,a,s)),function(e,t,n,i,r){let o,a,s;t.debug("Initializing meta API");const u=e=>{a&&i.remove(a),a={user:e},i.add(a)},l=e=>{o&&i.remove(o),o={session:e},i.add(o)};return{setUser:u,resetUser:u,setSession:l,resetSession:l,getSession:()=>i.value.session,setView:e=>{var t;if((null===(t=null==s?void 0:s.view)||void 0===t?void 0:t.name)===(null==e?void 0:e.name))return;const n=s;s={view:e},i.add(s),n&&i.remove(n)},getView:()=>i.value.view}}(0,n,0,o)),function(t,n,i,o,a,s){var u;n.debug("Initializing logs API");let l=null;const c=null!==(u=i.logArgsSerializer)&&void 0!==u?u:Z;return{pushLog:(t,{context:u,level:d,skipDedupe:f,spanContext:p}={})=>{try{const m={type:e.TransportItemType.LOG,payload:{message:c(t),level:null!=d?d:E,context:null!=u?u:{},timestamp:S(),trace:p?{trace_id:p.traceId,span_id:p.spanId}:s.getTraceContext()},meta:o.value},g={message:m.payload.message,level:m.payload.level,context:m.payload.context};if(!f&&i.dedupe&&!r(l)&&y(g,l))return void n.debug("Skipping log push because it is the same as the last one\n",m.payload);l=g,n.debug("Pushing log\n",m),a.execute(m)}catch(e){n.error("Error pushing log\n",e)}}}}(0,n,i,o,a,s)),function(t,n,i,o,a,s){n.debug("Initializing measurements API");let u=null;return{pushMeasurement:(t,{skipDedupe:l,context:c,spanContext:d}={})=>{var f;try{const p={type:e.TransportItemType.MEASUREMENT,payload:Object.assign(Object.assign({},t),{trace:d?{trace_id:d.traceId,span_id:d.spanId}:s.getTraceContext(),timestamp:null!==(f=t.timestamp)&&void 0!==f?f:S(),context:null!=c?c:{}}),meta:o.value},m={type:p.payload.type,values:p.payload.values,context:p.payload.context};if(!l&&i.dedupe&&!r(u)&&y(m,u))return void n.debug("Skipping measurement push because it is the same as the last one\n",p.payload);u=m,n.debug("Pushing measurement\n",p),a.execute(p)}catch(e){n.error("Error pushing measurement\n",e)}}}}(0,n,i,o,a,s)),function(t,n,i,o,a,s){let u=null;return{pushEvent:(t,l,c,{skipDedupe:d,spanContext:f}={})=>{try{const p={meta:o.value,payload:{name:t,domain:null!=c?c:i.eventDomain,attributes:l,timestamp:S(),trace:f?{trace_id:f.traceId,span_id:f.spanId}:s.getTraceContext()},type:e.TransportItemType.EVENT},m={name:p.payload.name,attributes:p.payload.attributes,domain:p.payload.domain};if(!d&&i.dedupe&&!r(u)&&y(m,u))return void n.debug("Skipping event push because it is the same as the last one\n",p.payload);u=m,n.debug("Pushing event\n",p),a.execute(p)}catch(e){n.error("Error pushing event",e)}}}}(0,n,i,o,a,s))}class Q extends G{constructor(){super(...arguments),this.api={},this.transports={}}}const ee="1.8.1";const te="_faroInternal";function ne(e){e.config.isolate?e.internalLogger.debug("Skipping registering internal Faro instance on global object"):(e.internalLogger.debug("Registering internal Faro instance on global object"),Object.defineProperty(C,te,{configurable:!1,enumerable:!1,writable:!1,value:e}))}function ie(){return te in C}function re(t,n,i,r,o,a,s){return n.debug("Initializing Faro"),e.faro={api:a,config:i,instrumentations:s,internalLogger:n,metas:r,pause:o.pause,transports:o,unpatchedConsole:t,unpause:o.unpause},ne(e.faro),function(e){if(e.config.preventGlobalExposure)e.internalLogger.debug("Skipping registering public Faro instance in the global scope");else{if(e.internalLogger.debug(`Registering public faro reference in the global scope using "${e.config.globalObjectKey}" key`),e.config.globalObjectKey in C)return void e.internalLogger.warn(`Skipping global registration due to key "${e.config.globalObjectKey}" being used already. Please set "globalObjectKey" to something else or set "preventGlobalExposure" to "true"`);Object.defineProperty(C,e.config.globalObjectKey,{configurable:!1,writable:!1,value:e})}}(e.faro),e.faro}function oe(e){const t=z(e),n=q(t,e);if(ie()&&!e.isolate)return void n.error('Faro is already registered. Either add instrumentations, transports etc. to the global faro instance or use the "isolate" property');n.debug("Initializing");const i=function(e,t,n){let i=[],r=[];const o=()=>i.reduce(((e,t)=>Object.assign(e,u(t)?t():t)),{}),a=()=>{if(r.length){const e=o();r.forEach((t=>t(e)))}};return{add:(...e)=>{t.debug("Adding metas\n",e),i.push(...e),a()},remove:(...e)=>{t.debug("Removing metas\n",e),i=i.filter((t=>!e.includes(t))),a()},addListener:e=>{t.debug("Adding metas listener\n",e),r.push(e)},removeListener:e=>{t.debug("Removing metas listener\n",e),r=r.filter((t=>t!==e))},get value(){return o()}}}(0,n),r=D(t,n,e,i),o=Y(0,n,e,i,r),a=function(e,t,n,i,r,o){t.debug("Initializing instrumentations");const a=[];return{add:(...s)=>{t.debug("Adding instrumentations"),s.forEach((s=>{t.debug(`Adding "${s.name}" instrumentation`),a.some((e=>e.name===s.name))?t.warn(`Instrumentation ${s.name} is already added`):(s.unpatchedConsole=e,s.internalLogger=t,s.config=n,s.metas=i,s.transports=r,s.api=o,a.push(s),s.initialize())}))},get instrumentations(){return[...a]},remove:(...e)=>{t.debug("Removing instrumentations"),e.forEach((e=>{var n,i;t.debug(`Removing "${e.name}" instrumentation`);const r=a.reduce(((t,n,i)=>null===t&&n.name===e.name?i:null),null);r?(null===(i=(n=a[r]).destroy)||void 0===i||i.call(n),a.splice(r,1)):t.warn(`Instrumentation "${e.name}" is not added`)}))}}}(t,n,e,i,r,o),s=re(t,n,e,i,r,o,a);return function(e){var t,n;const i={sdk:{version:ee},app:{bundleId:e.config.app.name&&(r=e.config.app.name,null==C?void 0:C[`__faroBundleId_${r}`])}};var r;const o=null===(t=e.config.sessionTracking)||void 0===t?void 0:t.session;o&&e.api.setSession(o),e.config.app&&(i.app=Object.assign(Object.assign({},e.config.app),i.app)),e.config.user&&(i.user=e.config.user),e.config.view&&(i.view=e.config.view),e.metas.add(i,...null!==(n=e.config.metas)&&void 0!==n?n:[])}(s),function(e){e.transports.add(...e.config.transports),e.transports.addBeforeSendHooks(e.config.beforeSend),e.transports.addIgnoreErrorsPatterns(e.config.ignoreErrors)}(s),function(e){e.instrumentations.add(...e.config.instrumentations)}(s),s}e.faro={};const ae="faro",se={enabled:!0,sendTimeout:250,itemLimit:50},ue="view_changed",le="session_start",ce="session_resume",de="session_extend";var fe="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},pe={exports:{}};!function(e,t){!function(n,i){var r="function",o="undefined",a="object",s="string",u="major",l="model",c="name",d="type",f="vendor",p="version",m="architecture",g="console",v="mobile",h="tablet",b="smarttv",w="wearable",y="embedded",S="Amazon",T="Apple",E="ASUS",I="BlackBerry",k="Browser",x="Chrome",L="Firefox",O="Google",C="Huawei",P="LG",_="Microsoft",N="Motorola",A="Opera",M="Samsung",D="Sharp",j="Sony",R="Xiaomi",B="Zebra",U="Facebook",F="Chromium OS",z="Mac OS",V=function(e){for(var t={},n=0;n<e.length;n++)t[e[n].toUpperCase()]=e[n];return t},$=function(e,t){return typeof e===s&&-1!==q(t).indexOf(q(e))},q=function(e){return e.toLowerCase()},G=function(e,t){if(typeof e===s)return e=e.replace(/^\s\s*/,""),typeof t===o?e:e.substring(0,350)},W=function(e,t){for(var n,o,s,u,l,c,d=0;d<t.length&&!l;){var f=t[d],p=t[d+1];for(n=o=0;n<f.length&&!l&&f[n];)if(l=f[n++].exec(e))for(s=0;s<p.length;s++)c=l[++o],typeof(u=p[s])===a&&u.length>0?2===u.length?typeof u[1]==r?this[u[0]]=u[1].call(this,c):this[u[0]]=u[1]:3===u.length?typeof u[1]!==r||u[1].exec&&u[1].test?this[u[0]]=c?c.replace(u[1],u[2]):i:this[u[0]]=c?u[1].call(this,c,u[2]):i:4===u.length&&(this[u[0]]=c?u[3].call(this,c.replace(u[1],u[2])):i):this[u]=c||i;d+=2}},H=function(e,t){for(var n in t)if(typeof t[n]===a&&t[n].length>0){for(var r=0;r<t[n].length;r++)if($(t[n][r],e))return"?"===n?i:n}else if($(t[n],e))return"?"===n?i:n;return e},K={ME:"4.90","NT 3.11":"NT3.51","NT 4.0":"NT4.0",2e3:"NT 5.0",XP:["NT 5.1","NT 5.2"],Vista:"NT 6.0",7:"NT 6.1",8:"NT 6.2",8.1:"NT 6.3",10:["NT 6.4","NT 10.0"],RT:"ARM"},X={browser:[[/\b(?:crmo|crios)\/([\w\.]+)/i],[p,[c,"Chrome"]],[/edg(?:e|ios|a)?\/([\w\.]+)/i],[p,[c,"Edge"]],[/(opera mini)\/([-\w\.]+)/i,/(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i,/(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i],[c,p],[/opios[\/ ]+([\w\.]+)/i],[p,[c,A+" Mini"]],[/\bopr\/([\w\.]+)/i],[p,[c,A]],[/(kindle)\/([\w\.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer)[\/ ]?([\w\.]*)/i,/(avant |iemobile|slim)(?:browser)?[\/ ]?([\w\.]*)/i,/(ba?idubrowser)[\/ ]?([\w\.]+)/i,/(?:ms|\()(ie) ([\w\.]+)/i,/(flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|quark|qupzilla|falkon|rekonq|puffin|brave|whale(?!.+naver)|qqbrowserlite|qq|duckduckgo)\/([-\w\.]+)/i,/(heytap|ovi)browser\/([\d\.]+)/i,/(weibo)__([\d\.]+)/i],[c,p],[/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i],[p,[c,"UC"+k]],[/microm.+\bqbcore\/([\w\.]+)/i,/\bqbcore\/([\w\.]+).+microm/i],[p,[c,"WeChat(Win) Desktop"]],[/micromessenger\/([\w\.]+)/i],[p,[c,"WeChat"]],[/konqueror\/([\w\.]+)/i],[p,[c,"Konqueror"]],[/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i],[p,[c,"IE"]],[/ya(?:search)?browser\/([\w\.]+)/i],[p,[c,"Yandex"]],[/(avast|avg)\/([\w\.]+)/i],[[c,/(.+)/,"$1 Secure "+k],p],[/\bfocus\/([\w\.]+)/i],[p,[c,L+" Focus"]],[/\bopt\/([\w\.]+)/i],[p,[c,A+" Touch"]],[/coc_coc\w+\/([\w\.]+)/i],[p,[c,"Coc Coc"]],[/dolfin\/([\w\.]+)/i],[p,[c,"Dolphin"]],[/coast\/([\w\.]+)/i],[p,[c,A+" Coast"]],[/miuibrowser\/([\w\.]+)/i],[p,[c,"MIUI "+k]],[/fxios\/([-\w\.]+)/i],[p,[c,L]],[/\bqihu|(qi?ho?o?|360)browser/i],[[c,"360 "+k]],[/(oculus|samsung|sailfish|huawei)browser\/([\w\.]+)/i],[[c,/(.+)/,"$1 "+k],p],[/(comodo_dragon)\/([\w\.]+)/i],[[c,/_/g," "],p],[/(electron)\/([\w\.]+) safari/i,/(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i,/m?(qqbrowser|baiduboxapp|2345Explorer)[\/ ]?([\w\.]+)/i],[c,p],[/(metasr)[\/ ]?([\w\.]+)/i,/(lbbrowser)/i,/\[(linkedin)app\]/i],[c],[/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i],[[c,U],p],[/(kakao(?:talk|story))[\/ ]([\w\.]+)/i,/(naver)\(.*?(\d+\.[\w\.]+).*\)/i,/safari (line)\/([\w\.]+)/i,/\b(line)\/([\w\.]+)\/iab/i,/(chromium|instagram|snapchat)[\/ ]([-\w\.]+)/i],[c,p],[/\bgsa\/([\w\.]+) .*safari\//i],[p,[c,"GSA"]],[/musical_ly(?:.+app_?version\/|_)([\w\.]+)/i],[p,[c,"TikTok"]],[/headlesschrome(?:\/([\w\.]+)| )/i],[p,[c,x+" Headless"]],[/ wv\).+(chrome)\/([\w\.]+)/i],[[c,x+" WebView"],p],[/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i],[p,[c,"Android "+k]],[/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i],[c,p],[/version\/([\w\.\,]+) .*mobile\/\w+ (safari)/i],[p,[c,"Mobile Safari"]],[/version\/([\w(\.|\,)]+) .*(mobile ?safari|safari)/i],[p,c],[/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i],[c,[p,H,{"1.0":"/8",1.2:"/1",1.3:"/3","2.0":"/412","2.0.2":"/416","2.0.3":"/417","2.0.4":"/419","?":"/"}]],[/(webkit|khtml)\/([\w\.]+)/i],[c,p],[/(navigator|netscape\d?)\/([-\w\.]+)/i],[[c,"Netscape"],p],[/mobile vr; rv:([\w\.]+)\).+firefox/i],[p,[c,L+" Reality"]],[/ekiohf.+(flow)\/([\w\.]+)/i,/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror|klar)[\/ ]?([\w\.\+]+)/i,/(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|palemoon|basilisk|waterfox)\/([-\w\.]+)$/i,/(firefox)\/([\w\.]+)/i,/(mozilla)\/([\w\.]+) .+rv\:.+gecko\/\d+/i,/(polaris|lynx|dillo|icab|doris|amaya|w3m|netsurf|sleipnir|obigo|mosaic|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i,/(links) \(([\w\.]+)/i,/panasonic;(viera)/i],[c,p],[/(cobalt)\/([\w\.]+)/i],[c,[p,/master.|lts./,""]]],cpu:[[/(?:(amd|x(?:(?:86|64)[-_])?|wow|win)64)[;\)]/i],[[m,"amd64"]],[/(ia32(?=;))/i],[[m,q]],[/((?:i[346]|x)86)[;\)]/i],[[m,"ia32"]],[/\b(aarch64|arm(v?8e?l?|_?64))\b/i],[[m,"arm64"]],[/\b(arm(?:v[67])?ht?n?[fl]p?)\b/i],[[m,"armhf"]],[/windows (ce|mobile); ppc;/i],[[m,"arm"]],[/((?:ppc|powerpc)(?:64)?)(?: mac|;|\))/i],[[m,/ower/,"",q]],[/(sun4\w)[;\)]/i],[[m,"sparc"]],[/((?:avr32|ia64(?=;))|68k(?=\))|\barm(?=v(?:[1-7]|[5-7]1)l?|;|eabi)|(?=atmel )avr|(?:irix|mips|sparc)(?:64)?\b|pa-risc)/i],[[m,q]]],device:[[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i],[l,[f,M],[d,h]],[/\b((?:s[cgp]h|gt|sm)-\w+|sc[g-]?[\d]+a?|galaxy nexus)/i,/samsung[- ]([-\w]+)/i,/sec-(sgh\w+)/i],[l,[f,M],[d,v]],[/(?:\/|\()(ip(?:hone|od)[\w, ]*)(?:\/|;)/i],[l,[f,T],[d,v]],[/\((ipad);[-\w\),; ]+apple/i,/applecoremedia\/[\w\.]+ \((ipad)/i,/\b(ipad)\d\d?,\d\d?[;\]].+ios/i],[l,[f,T],[d,h]],[/(macintosh);/i],[l,[f,T]],[/\b(sh-?[altvz]?\d\d[a-ekm]?)/i],[l,[f,D],[d,v]],[/\b((?:ag[rs][23]?|bah2?|sht?|btv)-a?[lw]\d{2})\b(?!.+d\/s)/i],[l,[f,C],[d,h]],[/(?:huawei|honor)([-\w ]+)[;\)]/i,/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][012359c][adn]?)\b(?!.+d\/s)/i],[l,[f,C],[d,v]],[/\b(poco[\w ]+|m2\d{3}j\d\d[a-z]{2})(?: bui|\))/i,/\b; (\w+) build\/hm\1/i,/\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i,/\b(redmi[\-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i,/\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note lte|max|cc)?[_ ]?(?:\d?\w?)[_ ]?(?:plus|se|lite)?)(?: bui|\))/i],[[l,/_/g," "],[f,R],[d,v]],[/\b(mi[-_ ]?(?:pad)(?:[\w_ ]+))(?: bui|\))/i],[[l,/_/g," "],[f,R],[d,h]],[/; (\w+) bui.+ oppo/i,/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i],[l,[f,"OPPO"],[d,v]],[/vivo (\w+)(?: bui|\))/i,/\b(v[12]\d{3}\w?[at])(?: bui|;)/i],[l,[f,"Vivo"],[d,v]],[/\b(rmx[12]\d{3})(?: bui|;|\))/i],[l,[f,"Realme"],[d,v]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i,/\bmot(?:orola)?[- ](\w*)/i,/((?:moto[\w\(\) ]+|xt\d{3,4}|nexus 6)(?= bui|\)))/i],[l,[f,N],[d,v]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i],[l,[f,N],[d,h]],[/((?=lg)?[vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i],[l,[f,P],[d,h]],[/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i,/\blg[-e;\/ ]+((?!browser|netcast|android tv)\w+)/i,/\blg-?([\d\w]+) bui/i],[l,[f,P],[d,v]],[/(ideatab[-\w ]+)/i,/lenovo ?(s[56]000[-\w]+|tab(?:[\w ]+)|yt[-\d\w]{6}|tb[-\d\w]{6})/i],[l,[f,"Lenovo"],[d,h]],[/(?:maemo|nokia).*(n900|lumia \d+)/i,/nokia[-_ ]?([-\w\.]*)/i],[[l,/_/g," "],[f,"Nokia"],[d,v]],[/(pixel c)\b/i],[l,[f,O],[d,h]],[/droid.+; (pixel[\daxl ]{0,6})(?: bui|\))/i],[l,[f,O],[d,v]],[/droid.+ (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-a\w[4-7][12])(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i],[l,[f,j],[d,v]],[/sony tablet [ps]/i,/\b(?:sony)?sgp\w+(?: bui|\))/i],[[l,"Xperia Tablet"],[f,j],[d,h]],[/ (kb2005|in20[12]5|be20[12][59])\b/i,/(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i],[l,[f,"OnePlus"],[d,v]],[/(alexa)webm/i,/(kf[a-z]{2}wi|aeo[c-r]{2})( bui|\))/i,/(kf[a-z]+)( bui|\)).+silk\//i],[l,[f,S],[d,h]],[/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i],[[l,/(.+)/g,"Fire Phone $1"],[f,S],[d,v]],[/(playbook);[-\w\),; ]+(rim)/i],[l,f,[d,h]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,/\(bb10; (\w+)/i],[l,[f,I],[d,v]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i],[l,[f,E],[d,h]],[/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i],[l,[f,E],[d,v]],[/(nexus 9)/i],[l,[f,"HTC"],[d,h]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,/(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i],[f,[l,/_/g," "],[d,v]],[/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i],[l,[f,"Acer"],[d,h]],[/droid.+; (m[1-5] note) bui/i,/\bmz-([-\w]{2,})/i],[l,[f,"Meizu"],[d,v]],[/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus|dell|meizu|motorola|polytron|infinix|tecno)[-_ ]?([-\w]*)/i,/(hp) ([\w ]+\w)/i,/(asus)-?(\w+)/i,/(microsoft); (lumia[\w ]+)/i,/(lenovo)[-_ ]?([-\w]+)/i,/(jolla)/i,/(oppo) ?([\w ]+) bui/i],[f,l,[d,v]],[/(kobo)\s(ereader|touch)/i,/(archos) (gamepad2?)/i,/(hp).+(touchpad(?!.+tablet)|tablet)/i,/(kindle)\/([\w\.]+)/i,/(nook)[\w ]+build\/(\w+)/i,/(dell) (strea[kpr\d ]*[\dko])/i,/(le[- ]+pan)[- ]+(\w{1,9}) bui/i,/(trinity)[- ]*(t\d{3}) bui/i,/(gigaset)[- ]+(q\w{1,9}) bui/i,/(vodafone) ([\w ]+)(?:\)| bui)/i],[f,l,[d,h]],[/(surface duo)/i],[l,[f,_],[d,h]],[/droid [\d\.]+; (fp\du?)(?: b|\))/i],[l,[f,"Fairphone"],[d,v]],[/(u304aa)/i],[l,[f,"AT&T"],[d,v]],[/\bsie-(\w*)/i],[l,[f,"Siemens"],[d,v]],[/\b(rct\w+) b/i],[l,[f,"RCA"],[d,h]],[/\b(venue[\d ]{2,7}) b/i],[l,[f,"Dell"],[d,h]],[/\b(q(?:mv|ta)\w+) b/i],[l,[f,"Verizon"],[d,h]],[/\b(?:barnes[& ]+noble |bn[rt])([\w\+ ]*) b/i],[l,[f,"Barnes & Noble"],[d,h]],[/\b(tm\d{3}\w+) b/i],[l,[f,"NuVision"],[d,h]],[/\b(k88) b/i],[l,[f,"ZTE"],[d,h]],[/\b(nx\d{3}j) b/i],[l,[f,"ZTE"],[d,v]],[/\b(gen\d{3}) b.+49h/i],[l,[f,"Swiss"],[d,v]],[/\b(zur\d{3}) b/i],[l,[f,"Swiss"],[d,h]],[/\b((zeki)?tb.*\b) b/i],[l,[f,"Zeki"],[d,h]],[/\b([yr]\d{2}) b/i,/\b(dragon[- ]+touch |dt)(\w{5}) b/i],[[f,"Dragon Touch"],l,[d,h]],[/\b(ns-?\w{0,9}) b/i],[l,[f,"Insignia"],[d,h]],[/\b((nxa|next)-?\w{0,9}) b/i],[l,[f,"NextBook"],[d,h]],[/\b(xtreme\_)?(v(1[045]|2[015]|[3469]0|7[05])) b/i],[[f,"Voice"],l,[d,v]],[/\b(lvtel\-)?(v1[12]) b/i],[[f,"LvTel"],l,[d,v]],[/\b(ph-1) /i],[l,[f,"Essential"],[d,v]],[/\b(v(100md|700na|7011|917g).*\b) b/i],[l,[f,"Envizen"],[d,h]],[/\b(trio[-\w\. ]+) b/i],[l,[f,"MachSpeed"],[d,h]],[/\btu_(1491) b/i],[l,[f,"Rotor"],[d,h]],[/(shield[\w ]+) b/i],[l,[f,"Nvidia"],[d,h]],[/(sprint) (\w+)/i],[f,l,[d,v]],[/(kin\.[onetw]{3})/i],[[l,/\./g," "],[f,_],[d,v]],[/droid.+; (cc6666?|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i],[l,[f,B],[d,h]],[/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i],[l,[f,B],[d,v]],[/smart-tv.+(samsung)/i],[f,[d,b]],[/hbbtv.+maple;(\d+)/i],[[l,/^/,"SmartTV"],[f,M],[d,b]],[/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i],[[f,P],[d,b]],[/(apple) ?tv/i],[f,[l,T+" TV"],[d,b]],[/crkey/i],[[l,x+"cast"],[f,O],[d,b]],[/droid.+aft(\w+)( bui|\))/i],[l,[f,S],[d,b]],[/\(dtv[\);].+(aquos)/i,/(aquos-tv[\w ]+)\)/i],[l,[f,D],[d,b]],[/(bravia[\w ]+)( bui|\))/i],[l,[f,j],[d,b]],[/(mitv-\w{5}) bui/i],[l,[f,R],[d,b]],[/Hbbtv.*(technisat) (.*);/i],[f,l,[d,b]],[/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i,/hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i],[[f,G],[l,G],[d,b]],[/\b(android tv|smart[- ]?tv|opera tv|tv; rv:)\b/i],[[d,b]],[/(ouya)/i,/(nintendo) ([wids3utch]+)/i],[f,l,[d,g]],[/droid.+; (shield) bui/i],[l,[f,"Nvidia"],[d,g]],[/(playstation [345portablevi]+)/i],[l,[f,j],[d,g]],[/\b(xbox(?: one)?(?!; xbox))[\); ]/i],[l,[f,_],[d,g]],[/((pebble))app/i],[f,l,[d,w]],[/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i],[l,[f,T],[d,w]],[/droid.+; (glass) \d/i],[l,[f,O],[d,w]],[/droid.+; (wt63?0{2,3})\)/i],[l,[f,B],[d,w]],[/(quest( 2| pro)?)/i],[l,[f,U],[d,w]],[/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i],[f,[d,y]],[/(aeobc)\b/i],[l,[f,S],[d,y]],[/droid .+?; ([^;]+?)(?: bui|\) applew).+? mobile safari/i],[l,[d,v]],[/droid .+?; ([^;]+?)(?: bui|\) applew).+?(?! mobile) safari/i],[l,[d,h]],[/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i],[[d,h]],[/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i],[[d,v]],[/(android[-\w\. ]{0,9});.+buil/i],[l,[f,"Generic"]]],engine:[[/windows.+ edge\/([\w\.]+)/i],[p,[c,"EdgeHTML"]],[/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i],[p,[c,"Blink"]],[/(presto)\/([\w\.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna)\/([\w\.]+)/i,/ekioh(flow)\/([\w\.]+)/i,/(khtml|tasman|links)[\/ ]\(?([\w\.]+)/i,/(icab)[\/ ]([23]\.[\d\.]+)/i,/\b(libweb)/i],[c,p],[/rv\:([\w\.]{1,9})\b.+(gecko)/i],[p,c]],os:[[/microsoft (windows) (vista|xp)/i],[c,p],[/(windows) nt 6\.2; (arm)/i,/(windows (?:phone(?: os)?|mobile))[\/ ]?([\d\.\w ]*)/i,/(windows)[\/ ]?([ntce\d\. ]+\w)(?!.+xbox)/i],[c,[p,H,K]],[/(win(?=3|9|n)|win 9x )([nt\d\.]+)/i],[[c,"Windows"],[p,H,K]],[/ip[honead]{2,4}\b(?:.*os ([\w]+) like mac|; opera)/i,/(?:ios;fbsv\/|iphone.+ios[\/ ])([\d\.]+)/i,/cfnetwork\/.+darwin/i],[[p,/_/g,"."],[c,"iOS"]],[/(mac os x) ?([\w\. ]*)/i,/(macintosh|mac_powerpc\b)(?!.+haiku)/i],[[c,z],[p,/_/g,"."]],[/droid ([\w\.]+)\b.+(android[- ]x86|harmonyos)/i],[p,c],[/(android|webos|qnx|bada|rim tablet os|maemo|meego|sailfish)[-\/ ]?([\w\.]*)/i,/(blackberry)\w*\/([\w\.]*)/i,/(tizen|kaios)[\/ ]([\w\.]+)/i,/\((series40);/i],[c,p],[/\(bb(10);/i],[p,[c,I]],[/(?:symbian ?os|symbos|s60(?=;)|series60)[-\/ ]?([\w\.]*)/i],[p,[c,"Symbian"]],[/mozilla\/[\d\.]+ \((?:mobile|tablet|tv|mobile; [\w ]+); rv:.+ gecko\/([\w\.]+)/i],[p,[c,L+" OS"]],[/web0s;.+rt(tv)/i,/\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i],[p,[c,"webOS"]],[/watch(?: ?os[,\/]|\d,\d\/)([\d\.]+)/i],[p,[c,"watchOS"]],[/crkey\/([\d\.]+)/i],[p,[c,x+"cast"]],[/(cros) [\w]+(?:\)| ([\w\.]+)\b)/i],[[c,F],p],[/panasonic;(viera)/i,/(netrange)mmh/i,/(nettv)\/(\d+\.[\w\.]+)/i,/(nintendo|playstation) ([wids345portablevuch]+)/i,/(xbox); +xbox ([^\);]+)/i,/\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i,/(mint)[\/\(\) ]?(\w*)/i,/(mageia|vectorlinux)[; ]/i,/([kxln]?ubuntu|debian|suse|opensuse|gentoo|arch(?= linux)|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire)(?: gnu\/linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i,/(hurd|linux) ?([\w\.]*)/i,/(gnu) ?([\w\.]*)/i,/\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i,/(haiku) (\w+)/i],[c,p],[/(sunos) ?([\w\.\d]*)/i],[[c,"Solaris"],p],[/((?:open)?solaris)[-\/ ]?([\w\.]*)/i,/(aix) ((\d)(?=\.|\)| )[\w\.])*/i,/\b(beos|os\/2|amigaos|morphos|openvms|fuchsia|hp-ux|serenityos)/i,/(unix) ?([\w\.]*)/i],[c,p]]},J=function(e,t){if(typeof e===a&&(t=e,e=i),!(this instanceof J))return new J(e,t).getResult();var g=typeof n!==o&&n.navigator?n.navigator:i,b=e||(g&&g.userAgent?g.userAgent:""),w=g&&g.userAgentData?g.userAgentData:i,y=t?function(e,t){var n={};for(var i in e)t[i]&&t[i].length%2==0?n[i]=t[i].concat(e[i]):n[i]=e[i];return n}(X,t):X,S=g&&g.userAgent==b;return this.getBrowser=function(){var e,t={};return t[c]=i,t[p]=i,W.call(t,b,y.browser),t[u]=typeof(e=t[p])===s?e.replace(/[^\d\.]/g,"").split(".")[0]:i,S&&g&&g.brave&&typeof g.brave.isBrave==r&&(t[c]="Brave"),t},this.getCPU=function(){var e={};return e[m]=i,W.call(e,b,y.cpu),e},this.getDevice=function(){var e={};return e[f]=i,e[l]=i,e[d]=i,W.call(e,b,y.device),S&&!e[d]&&w&&w.mobile&&(e[d]=v),S&&"Macintosh"==e[l]&&g&&typeof g.standalone!==o&&g.maxTouchPoints&&g.maxTouchPoints>2&&(e[l]="iPad",e[d]=h),e},this.getEngine=function(){var e={};return e[c]=i,e[p]=i,W.call(e,b,y.engine),e},this.getOS=function(){var e={};return e[c]=i,e[p]=i,W.call(e,b,y.os),S&&!e[c]&&w&&"Unknown"!=w.platform&&(e[c]=w.platform.replace(/chrome os/i,F).replace(/macos/i,z)),e},this.getResult=function(){return{ua:this.getUA(),browser:this.getBrowser(),engine:this.getEngine(),os:this.getOS(),device:this.getDevice(),cpu:this.getCPU()}},this.getUA=function(){return b},this.setUA=function(e){return b=typeof e===s&&e.length>350?G(e,350):e,this},this.setUA(b),this};J.VERSION="1.0.36",J.BROWSER=V([c,p,u]),J.CPU=V([m]),J.DEVICE=V([l,f,d,g,v,b,h,w,y]),J.ENGINE=J.OS=V([c,p]),e.exports&&(t=e.exports=J),t.UAParser=J;var Z=typeof n!==o&&(n.jQuery||n.Zepto);if(Z&&!Z.ua){var Y=new J;Z.ua=Y.getResult(),Z.ua.get=function(){return Y.getUA()},Z.ua.set=function(e){Y.setUA(e);var t=Y.getResult();for(var n in t)Z.ua[n]=t[n]}}}("object"==typeof window?window:fe)}(pe,pe.exports);var me=pe.exports;const ge=()=>{const e=new me.UAParser,{name:t,version:n}=e.getBrowser(),{name:i,version:r}=e.getOS(),o=e.getUA(),a=navigator.language,s=navigator.userAgent.includes("Mobi"),u=function(){if(!t||!n)return;if("userAgentData"in navigator&&navigator.userAgentData)return navigator.userAgentData.brands;return}(),l="unknown";return{browser:{name:null!=t?t:l,version:null!=n?n:l,os:`${null!=i?i:l} ${null!=r?r:l}`,userAgent:null!=o?o:l,language:null!=a?a:l,mobile:s,brands:null!=u?u:l,viewportWidth:`${window.innerWidth}`,viewportHeight:`${window.innerHeight}`}}},ve=()=>({page:{url:location.href}}),he=[ge,ve];function be(t){var n,i,r,o;return{id:null!==(o=null===(r=null===(i=null===(n=e.faro.config)||void 0===n?void 0:n.sessionTracking)||void 0===i?void 0:i.generateSessionId)||void 0===r?void 0:r.call(i))&&void 0!==o?o:O(),attributes:t}}const we={name:"default"},ye="sessionStorage",Se="localStorage";function Te(t){var n;try{let e;e=window[t];const n="__faro_storage_test__";return e.setItem(n,n),e.removeItem(n),!0}catch(i){return null===(n=e.faro.internalLogger)||void 0===n||n.info(`Web storage of type ${t} is not available. Reason: ${i}`),!1}}function Ee(e,t){return Oe(t)?window[t].getItem(e):null}function Ie(e,t,n){if(Oe(n))try{window[n].setItem(e,t)}catch(e){}}function ke(e,t){Oe(t)&&window[t].removeItem(e)}const xe=Te(Se),Le=Te(ye);function Oe(e){return e===Se?xe:e===ye&&Le}function Ce(e,t){let n,i=!1;const r=()=>{null!=n?(e(...n),n=null,setTimeout(r,t)):i=!1};return(...o)=>{i?n=o:(e(...o),i=!0,setTimeout(r,t))}}function Pe(){var t,n,i;const r=e.faro.config.sessionTracking;let o=null!==(i=null!==(n=null===(t=null==r?void 0:r.sampler)||void 0===t?void 0:t.call(r,{metas:e.faro.metas.value}))&&void 0!==n?n:null==r?void 0:r.samplingRate)&&void 0!==i?i:1;if("number"!=typeof o){o=0}return Math.random()<o}const _e="com.grafana.faro.session",Ne=144e5,Ae=9e5,Me=Ae,De={enabled:!0,persistent:!1,maxSessionPersistenceTime:Me};function je({sessionId:t,started:n,lastActivity:i,isSampled:r=!0}={}){var o,a;const s=P(),u=null===(a=null===(o=e.faro.config)||void 0===o?void 0:o.sessionTracking)||void 0===a?void 0:a.generateSessionId;return null==t&&(t="function"==typeof u?u():O()),{sessionId:t,lastActivity:null!=i?i:s,started:null!=n?n:s,isSampled:r}}function Re(e){if(null==e)return!1;const t=P();if(!(t-e.started<Ne))return!1;return t-e.lastActivity<Ae}function Be({fetchUserSession:t,storeUserSession:n}){return function({forceSessionExtend:i}={forceSessionExtend:!1}){var r,o,a;if(!t||!n)return;const s=e.faro.config.sessionTracking,u=null==s?void 0:s.persistent;if(u&&!xe||!u&&!Le)return;const l=t();if(!1===i&&Re(l))n(Object.assign(Object.assign({},l),{lastActivity:P()}));else{let t=Ue(je({isSampled:Pe()}),l);n(t),null===(r=e.faro.api)||void 0===r||r.setSession(t.sessionMeta),null===(o=null==s?void 0:s.onSessionChange)||void 0===o||o.call(s,null!==(a=null==l?void 0:l.sessionMeta)&&void 0!==a?a:null,t.sessionMeta)}}}function Ue(t,n){var i,r,o,a;return Object.assign(Object.assign({},t),{sessionMeta:{id:t.sessionId,attributes:Object.assign(Object.assign(Object.assign(Object.assign({},null===(r=null===(i=e.faro.config.sessionTracking)||void 0===i?void 0:i.session)||void 0===r?void 0:r.attributes),null!==(a=null===(o=e.faro.metas.value.session)||void 0===o?void 0:o.attributes)&&void 0!==a?a:{}),null!=n?{previousSession:n.sessionId}:{}),{isSampled:t.isSampled.toString()})}})}class Fe{constructor(){this.updateSession=Ce((()=>this.updateUserSession()),1e3),this.updateUserSession=Be({fetchUserSession:Fe.fetchUserSession,storeUserSession:Fe.storeUserSession}),this.init()}static removeUserSession(){ke(_e,Fe.storageTypeLocal)}static storeUserSession(e){Ie(_e,JSON.stringify(e),Fe.storageTypeLocal)}static fetchUserSession(){const e=Ee(_e,Fe.storageTypeLocal);return e?JSON.parse(e):null}init(){document.addEventListener("visibilitychange",(()=>{"visible"===document.visibilityState&&this.updateSession()})),e.faro.metas.addListener((function(t){const n=t.session,i=Fe.fetchUserSession();if(n&&n.id!==(null==i?void 0:i.sessionId)){const t=Ue(je({sessionId:n.id,isSampled:Pe()}),i);Fe.storeUserSession(t),e.faro.api.setSession(t.sessionMeta)}}))}}Fe.storageTypeLocal=Se;class ze{constructor(){this.updateSession=Ce((()=>this.updateUserSession()),1e3),this.updateUserSession=Be({fetchUserSession:ze.fetchUserSession,storeUserSession:ze.storeUserSession}),this.init()}static removeUserSession(){ke(_e,ze.storageTypeSession)}static storeUserSession(e){Ie(_e,JSON.stringify(e),ze.storageTypeSession)}static fetchUserSession(){const e=Ee(_e,ze.storageTypeSession);return e?JSON.parse(e):null}init(){document.addEventListener("visibilitychange",(()=>{"visible"===document.visibilityState&&this.updateSession()})),e.faro.metas.addListener((function(t){const n=t.session,i=ze.fetchUserSession();if(n&&n.id!==(null==i?void 0:i.sessionId)){const t=Ue(je({sessionId:n.id,isSampled:Pe()}),i);ze.storeUserSession(t),e.faro.api.setSession(t.sessionMeta)}}))}}function Ve(e){return(null==e?void 0:e.persistent)?Fe:ze}ze.storageTypeSession=ye;class $e extends Q{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-session",this.version=ee}sendSessionStartEvent(e){var t,n;const i=e.session;if(i&&i.id!==(null===(t=this.notifiedSession)||void 0===t?void 0:t.id)){if(this.notifiedSession&&this.notifiedSession.id===(null===(n=i.attributes)||void 0===n?void 0:n.previousSession))return this.api.pushEvent(de,{},void 0,{skipDedupe:!0}),void(this.notifiedSession=i);this.notifiedSession=i,this.api.pushEvent(le,{},void 0,{skipDedupe:!0})}}createInitialSession(e,t){var n,i,r,o,a;let s,u,l=e.fetchUserSession();if(t.persistent&&t.maxSessionPersistenceTime&&l){const e=P();l.lastActivity<e-t.maxSessionPersistenceTime&&(Fe.removeUserSession(),l=null)}if(Re(l)){const e=null==l?void 0:l.sessionId;u=je({sessionId:e,isSampled:l.isSampled||!1,started:null==l?void 0:l.started}),u.sessionMeta={id:e,attributes:Object.assign(Object.assign(Object.assign({},null===(n=t.session)||void 0===n?void 0:n.attributes),null===(i=null==l?void 0:l.sessionMeta)||void 0===i?void 0:i.attributes),{isSampled:u.isSampled.toString()})},s=ce}else{const e=null!==(o=null===(r=t.session)||void 0===r?void 0:r.id)&&void 0!==o?o:be().id;u=je({sessionId:e,isSampled:Pe()}),u.sessionMeta={id:e,attributes:Object.assign({isSampled:u.isSampled.toString()},null===(a=t.session)||void 0===a?void 0:a.attributes)},s=le}return{initialSession:u,lifecycleType:s}}registerBeforeSendHook(e){var t;const{updateSession:n}=new e;null===(t=this.transports)||void 0===t||t.addBeforeSendHooks((e=>{var t,i,r;n();const o=null===(t=e.meta.session)||void 0===t?void 0:t.attributes;if(o&&"true"===(null==o?void 0:o.isSampled)){let t=JSON.parse(JSON.stringify(e));const n=null===(i=t.meta.session)||void 0===i?void 0:i.attributes;return null==n||delete n.isSampled,0===Object.keys(null!=n?n:{}).length&&(null===(r=t.meta.session)||void 0===r||delete r.attributes),t}return null}))}initialize(){this.logDebug("init session instrumentation");const e=this.config.sessionTracking;if(null==e?void 0:e.enabled){const t=Ve(e);this.registerBeforeSendHook(t);const{initialSession:n,lifecycleType:i}=this.createInitialSession(t,e);t.storeUserSession(n);const r=n.sessionMeta;this.notifiedSession=r,this.api.setSession(r),i===le&&this.api.pushEvent(le,{},void 0,{skipDedupe:!0}),i===ce&&this.api.pushEvent(ce,{},void 0,{skipDedupe:!0})}this.metas.addListener(this.sendSessionStartEvent.bind(this))}}class qe extends Q{constructor(e={}){super(),this.options=e,this.name="@grafana/faro-web-sdk:instrumentation-console",this.version=ee}initialize(){this.logDebug("Initializing\n",this.options),I.filter((e=>{var t;return!(null!==(t=this.options.disabledLevels)&&void 0!==t?t:qe.defaultDisabledLevels).includes(e)})).forEach((e=>{console[e]=(...t)=>{try{this.api.pushLog(t,{level:e})}catch(e){this.logError(e)}finally{this.unpatchedConsole[e](...t)}}}))}}qe.defaultDisabledLevels=[e.LogLevel.DEBUG,e.LogLevel.TRACE,e.LogLevel.LOG];const Ge=/^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i,We=/^\s*at (?:(.*\).*?|.*?) ?\((?:address at )?)?((?:file|https?|blob|chrome-extension|address|native|eval|webpack|<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,He=/\((\S*)(?::(\d+))(?::(\d+))\)/,Ke="address at ",Xe=Ke.length,Je=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:file|https?|blob|chrome|webpack|resource|moz-extension|safari-extension|safari-web-extension|capacitor)?:\/.*?|\[native code]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i,Ze=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,Ye="safari-extension",Qe="safari-web-extension",et=/Minified React error #\d+;/i;function tt(e,t,n,i){const r={filename:e||document.location.href,function:t||"?"};return void 0!==n&&(r.lineno=n),void 0!==i&&(r.colno=i),r}function nt(e,t){const n=null==e?void 0:e.includes(Ye),i=!n&&(null==e?void 0:e.includes(Qe));return n||i?[(null==e?void 0:e.includes("@"))?e.split("@")[0]:e,n?`${Ye}:${t}`:`${Qe}:${t}`]:[e,t]}function it(e){let t=[];e.stacktrace?t=e.stacktrace.split("\n").filter(((e,t)=>t%2==0)):e.stack&&(t=e.stack.split("\n"));const n=t.reduce(((t,n,i)=>{let r,o,s,u,l;if(r=We.exec(n)){if(o=r[1],s=r[2],u=r[3],l=r[4],null==s?void 0:s.startsWith("eval")){const e=He.exec(s);e&&(s=e[1],u=e[2],l=e[3])}s=(null==s?void 0:s.startsWith(Ke))?s.substring(Xe):s,[o,s]=nt(o,s)}else if(r=Je.exec(n)){if(o=r[1],s=r[3],u=r[4],l=r[5],s&&s.includes(" > eval")){const e=Ze.exec(s);e&&(o=o||"eval",s=e[1],u=e[2])}else 0===i&&!l&&a(e.columnNumber)&&(l=String(e.columnNumber+1));[o,s]=nt(o,s)}return(s||o)&&t.push(tt(s,o,u?Number(u):void 0,l?Number(l):void 0)),t}),[]);return et.test(e.message)?n.slice(1):n}function rt(e){return{frames:it(e)}}function ot(e){let t,n,i,r,o=[];if(g(e)&&e.error)t=e.error.message,n=e.error.name,o=it(e.error);else if((i=v(e))||h(e)){const{name:r,message:o}=e;n=null!=r?r:i?"DOMError":"DOMException",t=o?`${n}: ${o}`:n}else m(e)?(t=e.message,o=it(e)):(s(e)||(r=f(e)))&&(n=r?e.constructor.name:void 0,t=`Non-Error exception captured with keys: ${Object.keys(e)}`);return[t,n,o]}function at(e){const t=window.onerror;window.onerror=(...n)=>{try{const[i,r,a,s,u]=n;let l,c,d=[];const f=o(i),p=tt(r,"?",a,s);u||!f?([l,c,d]=ot(null!=u?u:i),0===d.length&&(d=[p])):f&&([l,c]=function(e){var t,n;const i=e.match(Ge),r=null!==(t=null==i?void 0:i[1])&&void 0!==t?t:X;return[null!==(n=null==i?void 0:i[2])&&void 0!==n?n:e,r]}(i),d=[p]),l&&e.pushError(new Error(l),{type:c,stackFrames:d})}finally{null==t||t.apply(window,n)}}}class st extends Q{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-errors",this.version=ee}initialize(){var e;this.logDebug("Initializing"),at(this.api),e=this.api,window.addEventListener("unhandledrejection",(t=>{var n,i;let r,o,a=t;a.reason?a=t.reason:(null===(n=t.detail)||void 0===n?void 0:n.reason)&&(a=null===(i=t.detail)||void 0===i?void 0:i.reason);let s=[];c(a)?(r=`Non-Error promise rejection captured with value: ${String(a)}`,o="UnhandledRejection"):[r,o,s]=ot(a),r&&e.pushError(new Error(r),{type:o,stackFrames:s})}))}}class ut extends Q{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-view",this.version=ee}sendViewChangedEvent(e){var t,n,i;const r=e.view;r&&r.name!==(null===(t=this.notifiedView)||void 0===t?void 0:t.name)&&(this.api.pushEvent(ue,{fromView:null!==(i=null===(n=this.notifiedView)||void 0===n?void 0:n.name)&&void 0!==i?i:"",toView:r.name},void 0,{skipDedupe:!0}),this.notifiedView=r)}initialize(){this.sendViewChangedEvent(this.metas.value),this.metas.addListener(this.sendViewChangedEvent.bind(this))}}var lt,ct,dt,ft,pt,mt=-1,gt=function(e){addEventListener("pageshow",(function(t){t.persisted&&(mt=t.timeStamp,e(t))}),!0)},vt=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},ht=function(){var e=vt();return e&&e.activationStart||0},bt=function(e,t){var n=vt(),i="navigate";return mt>=0?i="back-forward-cache":n&&(document.prerendering||ht()>0?i="prerender":document.wasDiscarded?i="restore":n.type&&(i=n.type.replace(/_/g,"-"))),{name:e,value:void 0===t?-1:t,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:i}},wt=function(e,t,n){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var i=new PerformanceObserver((function(e){Promise.resolve().then((function(){t(e.getEntries())}))}));return i.observe(Object.assign({type:e,buffered:!0},n||{})),i}}catch(e){}},yt=function(e,t,n,i){var r,o;return function(a){t.value>=0&&(a||i)&&((o=t.value-(r||0))||void 0===r)&&(r=t.value,t.delta=o,t.rating=function(e,t){return e>t[1]?"poor":e>t[0]?"needs-improvement":"good"}(t.value,n),e(t))}},St=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},Tt=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},Et=function(e){var t=!1;return function(){t||(e(),t=!0)}},It=-1,kt=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},xt=function(e){"hidden"===document.visibilityState&&It>-1&&(It="visibilitychange"===e.type?e.timeStamp:0,Ot())},Lt=function(){addEventListener("visibilitychange",xt,!0),addEventListener("prerenderingchange",xt,!0)},Ot=function(){removeEventListener("visibilitychange",xt,!0),removeEventListener("prerenderingchange",xt,!0)},Ct=function(){return It<0&&(It=kt(),Lt(),gt((function(){setTimeout((function(){It=kt(),Lt()}),0)}))),{get firstHiddenTime(){return It}}},Pt=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},_t=[1800,3e3],Nt=function(e,t){t=t||{},Pt((function(){var n,i=Ct(),r=bt("FCP"),o=wt("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<i.firstHiddenTime&&(r.value=Math.max(e.startTime-ht(),0),r.entries.push(e),n(!0)))}))}));o&&(n=yt(e,r,_t,t.reportAllChanges),gt((function(i){r=bt("FCP"),n=yt(e,r,_t,t.reportAllChanges),St((function(){r.value=performance.now()-i.timeStamp,n(!0)}))})))}))},At=[.1,.25],Mt=0,Dt=1/0,jt=0,Rt=function(e){e.forEach((function(e){e.interactionId&&(Dt=Math.min(Dt,e.interactionId),jt=Math.max(jt,e.interactionId),Mt=jt?(jt-Dt)/7+1:0)}))},Bt=[],Ut=new Map,Ft=0,zt=[],Vt=function(e){if(zt.forEach((function(t){return t(e)})),e.interactionId||"first-input"===e.entryType){var t=Bt[Bt.length-1],n=Ut.get(e.interactionId);if(n||Bt.length<10||e.duration>t.latency){if(n)e.duration>n.latency?(n.entries=[e],n.latency=e.duration):e.duration===n.latency&&e.startTime===n.entries[0].startTime&&n.entries.push(e);else{var i={id:e.interactionId,latency:e.duration,entries:[e]};Ut.set(i.id,i),Bt.push(i)}Bt.sort((function(e,t){return t.latency-e.latency})),Bt.length>10&&Bt.splice(10).forEach((function(e){return Ut.delete(e.id)}))}}},$t=[200,500],qt=[2500,4e3],Gt={},Wt=[800,1800],Ht=function e(t){document.prerendering?Pt((function(){return e(t)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(t)}),!0):setTimeout(t,0)},Kt={passive:!0,capture:!0},Xt=new Date,Jt=function(e,t){ct||(ct=t,dt=e,ft=new Date,Qt(removeEventListener),Zt())},Zt=function(){if(dt>=0&&dt<ft-Xt){var e={entryType:"first-input",name:ct.type,target:ct.target,cancelable:ct.cancelable,startTime:ct.timeStamp,processingStart:ct.timeStamp+dt};pt.forEach((function(t){t(e)})),pt=[]}},Yt=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,t){var n=function(){Jt(e,t),r()},i=function(){r()},r=function(){removeEventListener("pointerup",n,Kt),removeEventListener("pointercancel",i,Kt)};addEventListener("pointerup",n,Kt),addEventListener("pointercancel",i,Kt)}(t,e):Jt(t,e)}},Qt=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(t){return e(t,Yt,Kt)}))},en=[100,300];class tn{constructor(e){this.pushMeasurement=e}initialize(){Object.entries(tn.mapping).forEach((([e,t])=>{t((t=>{this.pushMeasurement({type:"web-vitals",values:{[e]:t.value}})}))}))}}tn.mapping={cls:function(e,t){t=t||{},Nt(Et((function(){var n,i=bt("CLS",0),r=0,o=[],a=function(e){e.forEach((function(e){if(!e.hadRecentInput){var t=o[0],n=o[o.length-1];r&&e.startTime-n.startTime<1e3&&e.startTime-t.startTime<5e3?(r+=e.value,o.push(e)):(r=e.value,o=[e])}})),r>i.value&&(i.value=r,i.entries=o,n())},s=wt("layout-shift",a);s&&(n=yt(e,i,At,t.reportAllChanges),Tt((function(){a(s.takeRecords()),n(!0)})),gt((function(){r=0,i=bt("CLS",0),n=yt(e,i,At,t.reportAllChanges),St((function(){return n()}))})),setTimeout(n,0))})))},fcp:Nt,fid:function(e,t){t=t||{},Pt((function(){var n,i=Ct(),r=bt("FID"),o=function(e){e.startTime<i.firstHiddenTime&&(r.value=e.processingStart-e.startTime,r.entries.push(e),n(!0))},a=function(e){e.forEach(o)},s=wt("first-input",a);n=yt(e,r,en,t.reportAllChanges),s&&(Tt(Et((function(){a(s.takeRecords()),s.disconnect()}))),gt((function(){var i;r=bt("FID"),n=yt(e,r,en,t.reportAllChanges),pt=[],dt=-1,ct=null,Qt(addEventListener),i=o,pt.push(i),Zt()})))}))},inp:function(e,t){t=t||{},Pt((function(){var n;"interactionCount"in performance||lt||(lt=wt("event",Rt,{type:"event",buffered:!0,durationThreshold:0}));var i,r=bt("INP"),o=function(e){e.forEach(Vt);var t,n=(t=Math.min(Bt.length-1,Math.floor(((lt?Mt:performance.interactionCount||0)-Ft)/50)),Bt[t]);n&&n.latency!==r.value&&(r.value=n.latency,r.entries=n.entries,i())},a=wt("event",o,{durationThreshold:null!==(n=t.durationThreshold)&&void 0!==n?n:40});i=yt(e,r,$t,t.reportAllChanges),a&&("PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&a.observe({type:"first-input",buffered:!0}),Tt((function(){o(a.takeRecords()),i(!0)})),gt((function(){Ft=0,Bt.length=0,Ut.clear(),r=bt("INP"),i=yt(e,r,$t,t.reportAllChanges)})))}))},lcp:function(e,t){t=t||{},Pt((function(){var n,i=Ct(),r=bt("LCP"),o=function(e){t.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<i.firstHiddenTime&&(r.value=Math.max(e.startTime-ht(),0),r.entries=[e],n())}))},a=wt("largest-contentful-paint",o);if(a){n=yt(e,r,qt,t.reportAllChanges);var s=Et((function(){Gt[r.id]||(o(a.takeRecords()),a.disconnect(),Gt[r.id]=!0,n(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return e=s,t=self.requestIdleCallback||self.setTimeout,n=-1,e=Et(e),"hidden"===document.visibilityState?e():(n=t(e),Tt(e)),n;var e,t,n}),!0)})),Tt(s),gt((function(i){r=bt("LCP"),n=yt(e,r,qt,t.reportAllChanges),St((function(){r.value=performance.now()-i.timeStamp,Gt[r.id]=!0,n(!0)}))}))}}))},ttfb:function(e,t){t=t||{};var n=bt("TTFB"),i=yt(e,n,Wt,t.reportAllChanges);Ht((function(){var r=vt();r&&(n.value=Math.max(r.responseStart-ht(),0),n.entries=[r],i(!0),gt((function(){n=bt("TTFB",0),(i=yt(e,n,Wt,t.reportAllChanges))(!0)})))}))}};var nn,rn,on=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},an=function(e){if("loading"===document.readyState)return"loading";var t=on();if(t){if(e<t.domInteractive)return"loading";if(0===t.domContentLoadedEventStart||e<t.domContentLoadedEventStart)return"dom-interactive";if(0===t.domComplete||e<t.domComplete)return"dom-content-loaded"}return"complete"},sn=function(e){var t=e.nodeName;return 1===e.nodeType?t.toLowerCase():t.toUpperCase().replace(/^#/,"")},un=function(e,t){var n="";try{for(;e&&9!==e.nodeType;){var i=e,r=i.id?"#"+i.id:sn(i)+(i.classList&&i.classList.value&&i.classList.value.trim()&&i.classList.value.trim().length?"."+i.classList.value.trim().replace(/\s+/g,"."):"");if(n.length+r.length>(t||100)-1)return n||r;if(n=n?r+">"+n:r,i.id)break;e=i.parentNode}}catch(e){}return n},ln=-1,cn=function(){return ln},dn=function(e){addEventListener("pageshow",(function(t){t.persisted&&(ln=t.timeStamp,e(t))}),!0)},fn=function(){var e=on();return e&&e.activationStart||0},pn=function(e,t){var n=on(),i="navigate";return cn()>=0?i="back-forward-cache":n&&(document.prerendering||fn()>0?i="prerender":document.wasDiscarded?i="restore":n.type&&(i=n.type.replace(/_/g,"-"))),{name:e,value:void 0===t?-1:t,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:i}},mn=function(e,t,n){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var i=new PerformanceObserver((function(e){Promise.resolve().then((function(){t(e.getEntries())}))}));return i.observe(Object.assign({type:e,buffered:!0},n||{})),i}}catch(e){}},gn=function(e,t,n,i){var r,o;return function(a){t.value>=0&&(a||i)&&((o=t.value-(r||0))||void 0===r)&&(r=t.value,t.delta=o,t.rating=function(e,t){return e>t[1]?"poor":e>t[0]?"needs-improvement":"good"}(t.value,n),e(t))}},vn=function(e){requestAnimationFrame((function(){return requestAnimationFrame((function(){return e()}))}))},hn=function(e){document.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e()}))},bn=function(e){var t=!1;return function(){t||(e(),t=!0)}},wn=-1,yn=function(){return"hidden"!==document.visibilityState||document.prerendering?1/0:0},Sn=function(e){"hidden"===document.visibilityState&&wn>-1&&(wn="visibilitychange"===e.type?e.timeStamp:0,En())},Tn=function(){addEventListener("visibilitychange",Sn,!0),addEventListener("prerenderingchange",Sn,!0)},En=function(){removeEventListener("visibilitychange",Sn,!0),removeEventListener("prerenderingchange",Sn,!0)},In=function(){return wn<0&&(wn=yn(),Tn(),dn((function(){setTimeout((function(){wn=yn(),Tn()}),0)}))),{get firstHiddenTime(){return wn}}},kn=function(e){document.prerendering?addEventListener("prerenderingchange",(function(){return e()}),!0):e()},xn=[1800,3e3],Ln=function(e,t){t=t||{},kn((function(){var n,i=In(),r=pn("FCP"),o=mn("paint",(function(e){e.forEach((function(e){"first-contentful-paint"===e.name&&(o.disconnect(),e.startTime<i.firstHiddenTime&&(r.value=Math.max(e.startTime-fn(),0),r.entries.push(e),n(!0)))}))}));o&&(n=gn(e,r,xn,t.reportAllChanges),dn((function(i){r=pn("FCP"),n=gn(e,r,xn,t.reportAllChanges),vn((function(){r.value=performance.now()-i.timeStamp,n(!0)}))})))}))},On=[.1,.25],Cn=0,Pn=1/0,_n=0,Nn=function(e){e.forEach((function(e){e.interactionId&&(Pn=Math.min(Pn,e.interactionId),_n=Math.max(_n,e.interactionId),Cn=_n?(_n-Pn)/7+1:0)}))},An=function(){"interactionCount"in performance||nn||(nn=mn("event",Nn,{type:"event",buffered:!0,durationThreshold:0}))},Mn=[],Dn=new Map,jn=0,Rn=function(){return(nn?Cn:performance.interactionCount||0)-jn},Bn=[],Un=function(e){if(Bn.forEach((function(t){return t(e)})),e.interactionId||"first-input"===e.entryType){var t=Mn[Mn.length-1],n=Dn.get(e.interactionId);if(n||Mn.length<10||e.duration>t.latency){if(n)e.duration>n.latency?(n.entries=[e],n.latency=e.duration):e.duration===n.latency&&e.startTime===n.entries[0].startTime&&n.entries.push(e);else{var i={id:e.interactionId,latency:e.duration,entries:[e]};Dn.set(i.id,i),Mn.push(i)}Mn.sort((function(e,t){return t.latency-e.latency})),Mn.length>10&&Mn.splice(10).forEach((function(e){return Dn.delete(e.id)}))}}},Fn=function(e){var t=self.requestIdleCallback||self.setTimeout,n=-1;return e=bn(e),"hidden"===document.visibilityState?e():(n=t(e),hn(e)),n},zn=[200,500],Vn=[],$n=new Map,qn=[],Gn=new WeakMap,Wn=new Map,Hn=-1,Kn=function(e){e.forEach((function(e){return Vn.push(e)}))},Xn=function(){Wn.size>10&&Wn.forEach((function(e,t){Dn.has(t)||Wn.delete(t)})),qn=qn.slice(-50);var e=new Set(qn.concat(Mn.map((function(e){return Gn.get(e.entries[0])}))));$n.forEach((function(t,n){e.has(n)||$n.delete(n)}));var t=new Set;$n.forEach((function(e){ei(e.startTime,e.processingEnd).forEach((function(e){t.add(e)}))})),Vn=Array.from(t),Hn=-1};Bn.push((function(e){e.interactionId&&e.target&&!Wn.has(e.interactionId)&&Wn.set(e.interactionId,e.target)}),(function(e){for(var t,n=e.startTime+e.duration,i=qn.length-1;i>=0;i--)if(t=qn[i],Math.abs(n-t)<=8){var r=$n.get(t);r.startTime=Math.min(e.startTime,r.startTime),r.processingStart=Math.min(e.processingStart,r.processingStart),r.processingEnd=Math.max(e.processingEnd,r.processingEnd),r.entries.push(e),n=t;break}n!==t&&(qn.push(n),$n.set(n,{startTime:e.startTime,processingStart:e.processingStart,processingEnd:e.processingEnd,entries:[e]})),(e.interactionId||"first-input"===e.entryType)&&Gn.set(e,n)}),(function(){Hn<0&&(Hn=Fn(Xn))}));var Jn,Zn,Yn,Qn,ei=function(e,t){for(var n,i=[],r=0;n=Vn[r];r++)if(!(n.startTime+n.duration<e)){if(n.startTime>t)break;i.push(n)}return i},ti=function(e,t){rn||(rn=mn("long-animation-frame",Kn)),function(e,t){t=t||{},kn((function(){var n;An();var i,r=pn("INP"),o=function(e){e.forEach(Un);var t,n=(t=Math.min(Mn.length-1,Math.floor(Rn()/50)),Mn[t]);n&&n.latency!==r.value&&(r.value=n.latency,r.entries=n.entries,i())},a=mn("event",o,{durationThreshold:null!==(n=t.durationThreshold)&&void 0!==n?n:40});i=gn(e,r,zn,t.reportAllChanges),a&&("PerformanceEventTiming"in self&&"interactionId"in PerformanceEventTiming.prototype&&a.observe({type:"first-input",buffered:!0}),hn((function(){o(a.takeRecords()),i(!0)})),dn((function(){jn=0,Mn.length=0,Dn.clear(),r=pn("INP"),i=gn(e,r,zn,t.reportAllChanges)})))}))}((function(t){Fn((function(){var n=function(e){var t=e.entries[0],n=Gn.get(t),i=$n.get(n),r=t.processingStart,o=i.processingEnd,a=i.entries.sort((function(e,t){return e.processingStart-t.processingStart})),s=ei(t.startTime,o),u=e.entries.find((function(e){return e.target})),l=u&&u.target||Wn.get(t.interactionId),c=[t.startTime+t.duration,o].concat(s.map((function(e){return e.startTime+e.duration}))),d=Math.max.apply(Math,c),f={interactionTarget:un(l),interactionTargetElement:l,interactionType:t.name.startsWith("key")?"keyboard":"pointer",interactionTime:t.startTime,nextPaintTime:d,processedEventEntries:a,longAnimationFrameEntries:s,inputDelay:r-t.startTime,processingDuration:o-r,presentationDelay:Math.max(d-o,0),loadState:an(t.startTime)};return Object.assign(e,{attribution:f})}(t);e(n)}))}),t)},ni=[2500,4e3],ii={},ri=[800,1800],oi=function e(t){document.prerendering?kn((function(){return e(t)})):"complete"!==document.readyState?addEventListener("load",(function(){return e(t)}),!0):setTimeout(t,0)},ai=function(e,t){t=t||{};var n=pn("TTFB"),i=gn(e,n,ri,t.reportAllChanges);oi((function(){var r=on();r&&(n.value=Math.max(r.responseStart-fn(),0),n.entries=[r],i(!0),dn((function(){n=pn("TTFB",0),(i=gn(e,n,ri,t.reportAllChanges))(!0)})))}))},si={passive:!0,capture:!0},ui=new Date,li=function(e,t){Jn||(Jn=t,Zn=e,Yn=new Date,fi(removeEventListener),ci())},ci=function(){if(Zn>=0&&Zn<Yn-ui){var e={entryType:"first-input",name:Jn.type,target:Jn.target,cancelable:Jn.cancelable,startTime:Jn.timeStamp,processingStart:Jn.timeStamp+Zn};Qn.forEach((function(t){t(e)})),Qn=[]}},di=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,t){var n=function(){li(e,t),r()},i=function(){r()},r=function(){removeEventListener("pointerup",n,si),removeEventListener("pointercancel",i,si)};addEventListener("pointerup",n,si),addEventListener("pointercancel",i,si)}(t,e):li(t,e)}},fi=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(t){return e(t,di,si)}))},pi=[100,300],mi=function(e,t){!function(e,t){t=t||{},kn((function(){var n,i=In(),r=pn("FID"),o=function(e){e.startTime<i.firstHiddenTime&&(r.value=e.processingStart-e.startTime,r.entries.push(e),n(!0))},a=function(e){e.forEach(o)},s=mn("first-input",a);n=gn(e,r,pi,t.reportAllChanges),s&&(hn(bn((function(){a(s.takeRecords()),s.disconnect()}))),dn((function(){var i;r=pn("FID"),n=gn(e,r,pi,t.reportAllChanges),Qn=[],Zn=-1,Jn=null,fi(addEventListener),i=o,Qn.push(i),ci()})))}))}((function(t){var n=function(e){var t=e.entries[0],n={eventTarget:un(t.target),eventType:t.name,eventTime:t.startTime,eventEntry:t,loadState:an(t.startTime)};return Object.assign(e,{attribution:n})}(t);e(n)}),t)};const gi="com.grafana.faro.lastNavigationId",vi="load_state",hi="time_to_first_byte";class bi{constructor(e){this.corePushMeasurement=e}initialize(){this.measureCLS(),this.measureFCP(),this.measureFID(),this.measureINP(),this.measureLCP(),this.measureTTFB()}measureCLS(){!function(e,t){!function(e,t){t=t||{},Ln(bn((function(){var n,i=pn("CLS",0),r=0,o=[],a=function(e){e.forEach((function(e){if(!e.hadRecentInput){var t=o[0],n=o[o.length-1];r&&e.startTime-n.startTime<1e3&&e.startTime-t.startTime<5e3?(r+=e.value,o.push(e)):(r=e.value,o=[e])}})),r>i.value&&(i.value=r,i.entries=o,n())},s=mn("layout-shift",a);s&&(n=gn(e,i,On,t.reportAllChanges),hn((function(){a(s.takeRecords()),n(!0)})),dn((function(){r=0,i=pn("CLS",0),n=gn(e,i,On,t.reportAllChanges),vn((function(){return n()}))})),setTimeout(n,0))})))}((function(t){var n=function(e){var t,n={};if(e.entries.length){var i=e.entries.reduce((function(e,t){return e&&e.value>t.value?e:t}));if(i&&i.sources&&i.sources.length){var r=(t=i.sources).find((function(e){return e.node&&1===e.node.nodeType}))||t[0];r&&(n={largestShiftTarget:un(r.node),largestShiftTime:i.startTime,largestShiftValue:i.value,largestShiftSource:r,largestShiftEntry:i,loadState:an(i.startTime)})}}return Object.assign(e,{attribution:n})}(t);e(n)}),t)}((e=>{const{loadState:t,largestShiftValue:n,largestShiftTime:i,largestShiftTarget:r}=e.attribution,o=this.buildInitialValues(e);this.addIfPresent(o,"largest_shift_value",n),this.addIfPresent(o,"largest_shift_time",i);const a=this.buildInitialContext(e);this.addIfPresent(a,vi,t),this.addIfPresent(a,"largest_shift_target",r),this.pushMeasurement(o,a)}))}measureFCP(){!function(e,t){Ln((function(t){var n=function(e){var t={timeToFirstByte:0,firstByteToFCP:e.value,loadState:an(cn())};if(e.entries.length){var n=on(),i=e.entries[e.entries.length-1];if(n){var r=n.activationStart||0,o=Math.max(0,n.responseStart-r);t={timeToFirstByte:o,firstByteToFCP:e.value-o,loadState:an(e.entries[0].startTime),navigationEntry:n,fcpEntry:i}}}return Object.assign(e,{attribution:t})}(t);e(n)}),t)}((e=>{const{firstByteToFCP:t,timeToFirstByte:n,loadState:i}=e.attribution,r=this.buildInitialValues(e);this.addIfPresent(r,"first_byte_to_fcp",t),this.addIfPresent(r,hi,n);const o=this.buildInitialContext(e);this.addIfPresent(o,vi,i),this.pushMeasurement(r,o)}))}measureFID(){mi((e=>{const{eventTime:t,eventTarget:n,eventType:i,loadState:r}=e.attribution,o=this.buildInitialValues(e);this.addIfPresent(o,"event_time",t);const a=this.buildInitialContext(e);this.addIfPresent(a,"event_target",n),this.addIfPresent(a,"event_type",i),this.addIfPresent(a,vi,r),this.pushMeasurement(o,a)}))}measureINP(){ti((e=>{const{interactionTime:t,presentationDelay:n,inputDelay:i,processingDuration:r,nextPaintTime:o,loadState:a,interactionTarget:s,interactionType:u}=e.attribution,l=this.buildInitialValues(e);this.addIfPresent(l,"interaction_time",t),this.addIfPresent(l,"presentation_delay",n),this.addIfPresent(l,"input_delay",i),this.addIfPresent(l,"processing_duration",r),this.addIfPresent(l,"next_paint_time",o);const c=this.buildInitialContext(e);this.addIfPresent(c,vi,a),this.addIfPresent(c,"interaction_target",s),this.addIfPresent(c,"interaction_type",u),this.pushMeasurement(l,c)}))}measureLCP(){!function(e,t){!function(e,t){t=t||{},kn((function(){var n,i=In(),r=pn("LCP"),o=function(e){t.reportAllChanges||(e=e.slice(-1)),e.forEach((function(e){e.startTime<i.firstHiddenTime&&(r.value=Math.max(e.startTime-fn(),0),r.entries=[e],n())}))},a=mn("largest-contentful-paint",o);if(a){n=gn(e,r,ni,t.reportAllChanges);var s=bn((function(){ii[r.id]||(o(a.takeRecords()),a.disconnect(),ii[r.id]=!0,n(!0))}));["keydown","click"].forEach((function(e){addEventListener(e,(function(){return Fn(s)}),!0)})),hn(s),dn((function(i){r=pn("LCP"),n=gn(e,r,ni,t.reportAllChanges),vn((function(){r.value=performance.now()-i.timeStamp,ii[r.id]=!0,n(!0)}))}))}}))}((function(t){var n=function(e){var t={timeToFirstByte:0,resourceLoadDelay:0,resourceLoadDuration:0,elementRenderDelay:e.value};if(e.entries.length){var n=on();if(n){var i=n.activationStart||0,r=e.entries[e.entries.length-1],o=r.url&&performance.getEntriesByType("resource").filter((function(e){return e.name===r.url}))[0],a=Math.max(0,n.responseStart-i),s=Math.max(a,o?(o.requestStart||o.startTime)-i:0),u=Math.max(s,o?o.responseEnd-i:0),l=Math.max(u,r.startTime-i);t={element:un(r.element),timeToFirstByte:a,resourceLoadDelay:s-a,resourceLoadDuration:u-s,elementRenderDelay:l-u,navigationEntry:n,lcpEntry:r},r.url&&(t.url=r.url),o&&(t.lcpResourceEntry=o)}}return Object.assign(e,{attribution:t})}(t);e(n)}),t)}((e=>{const{elementRenderDelay:t,resourceLoadDelay:n,resourceLoadDuration:i,timeToFirstByte:r,element:o}=e.attribution,a=this.buildInitialValues(e);this.addIfPresent(a,"element_render_delay",t),this.addIfPresent(a,"resource_load_delay",n),this.addIfPresent(a,"resource_load_duration",i),this.addIfPresent(a,hi,r);const s=this.buildInitialContext(e);this.addIfPresent(s,"element",o),this.pushMeasurement(a,s)}))}measureTTFB(){!function(e,t){ai((function(t){var n=function(e){var t={waitingDuration:0,cacheDuration:0,dnsDuration:0,connectionDuration:0,requestDuration:0};if(e.entries.length){var n=e.entries[0],i=n.activationStart||0,r=Math.max((n.workerStart||n.fetchStart)-i,0),o=Math.max(n.domainLookupStart-i,0),a=Math.max(n.connectStart-i,0),s=Math.max(n.connectEnd-i,0);t={waitingDuration:r,cacheDuration:o-r,dnsDuration:a-o,connectionDuration:s-a,requestDuration:e.value-s,navigationEntry:n}}return Object.assign(e,{attribution:t})}(t);e(n)}),t)}((e=>{const{dnsDuration:t,connectionDuration:n,requestDuration:i,waitingDuration:r,cacheDuration:o}=e.attribution,a=this.buildInitialValues(e);this.addIfPresent(a,"dns_duration",t),this.addIfPresent(a,"connection_duration",n),this.addIfPresent(a,"request_duration",i),this.addIfPresent(a,"waiting_duration",r),this.addIfPresent(a,"cache_duration",o);const s=this.buildInitialContext(e);this.pushMeasurement(a,s)}))}buildInitialValues(e){return{[e.name.toLowerCase()]:e.value,delta:e.delta}}buildInitialContext(e){var t;const n=null!==(t=Ee(gi,ye))&&void 0!==t?t:"unknown";return{id:e.id,rating:e.rating,navigation_type:e.navigationType,navigation_entry_id:n}}pushMeasurement(e,t){this.corePushMeasurement({type:"web-vitals",values:e},{context:t})}addIfPresent(e,t,n){n&&(e[t]=n)}}class wi extends Q{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-web-vitals",this.version=ee}initialize(){this.logDebug("Initializing");this.intializeWebVitalsInstrumentation().initialize()}intializeWebVitalsInstrumentation(){return this.config.trackWebVitalsAttribution?new bi(this.api.pushMeasurement):new tn(this.api.pushMeasurement)}}function yi(e,t,n,i){return new(n||(n=Promise))((function(r,o){function a(e){try{u(i.next(e))}catch(e){o(e)}}function s(e){try{u(i.throw(e))}catch(e){o(e)}}function u(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}u((i=i.apply(e,t||[])).next())}))}"function"==typeof SuppressedError&&SuppressedError;const Si=/^00-[a-f0-9]{32}-[a-f0-9]{16}-[0-9]{1,2}$/;function Ti(e=[]){for(const t of e)if("traceparent"===t.name){if(!Si.test(t.description))continue;const[,e,n]=t.description.split("-");if(null!=e&&null!=n)return{traceId:e,spanId:n};break}}function Ei(e=[],t){return e.some((e=>e&&null!=t.match(e)))}function Ii(e,t={}){for(const[n,i]of Object.entries(t)){const t=e[n];return null!=t&&(l(i)?i.includes(t):t===i)}return!0}function ki(e){const{connectEnd:t,connectStart:n,decodedBodySize:i,domainLookupEnd:r,domainLookupStart:o,duration:a,encodedBodySize:s,fetchStart:u,initiatorType:l,name:c,nextHopProtocol:d,redirectEnd:f,redirectStart:p,renderBlockingStatus:m,requestStart:g,responseEnd:v,responseStart:h,responseStatus:b,secureConnectionStart:w,transferSize:y,workerStart:S}=e;return{name:c,duration:Li(a),tcpHandshakeTime:Li(t-n),dnsLookupTime:Li(r-o),tlsNegotiationTime:Li(g-w),responseStatus:Li(b),redirectTime:Li(f-p),requestTime:Li(h-g),responseTime:Li(v-h),fetchTime:Li(v-u),serviceWorkerTime:Li(u-S),decodedBodySize:Li(i),encodedBodySize:Li(s),cacheHitStatus:function(){let e="fullLoad";0===y?i>0&&(e="cache"):null!=b?304===b&&(e="conditionalFetch"):s>0&&y<s&&(e="conditionalFetch");return e}(),renderBlockingStatus:Li(m),protocol:d,initiatorType:l}}function xi(e){const{activationStart:t,domComplete:n,domContentLoadedEventEnd:i,domContentLoadedEventStart:r,domInteractive:o,fetchStart:a,loadEventEnd:s,loadEventStart:u,responseStart:l,type:c}=e,d=function(){var e;if(null!=(null===(e=performance.timing)||void 0===e?void 0:e.domLoading))return performance.timing.domLoading-performance.timeOrigin;return null}();return Object.assign({visibilityState:document.visibilityState,pageLoadTime:Li(n-a),documentParsingTime:Li(d?o-d:null),domProcessingTime:Li(n-o),domContentLoadHandlerTime:Li(i-r),onLoadTime:Li(s-u),ttfb:Li(Math.max(l-(null!=t?t:0),0)),type:c},ki(e))}function Li(e){return null==e?"unknown":"number"==typeof e?Math.round(e).toString():e.toString()}const Oi={initiatorType:["xmlhttprequest","fetch"]};class Ci extends Q{constructor(){super(...arguments),this.name="@grafana/faro-web-sdk:instrumentation-performance",this.version=ee}initialize(){"PerformanceObserver"in window?function(e){if("complete"===document.readyState)e();else{const t=()=>{"complete"===document.readyState&&(e(),document.removeEventListener("readystatechange",t))};document.addEventListener("readystatechange",t)}}((()=>yi(this,void 0,void 0,(function*(){const t=this.api.pushEvent,n=this.getIgnoreUrls(),{faroNavigationId:i}=yield function(e,t){let n;const i=new Promise((e=>{n=e}));return new PerformanceObserver((i=>{var r;const[o]=i.getEntries();if(null==o||Ei(t,o.name))return;const a=o.toJSON();let s=Ti(null==a?void 0:a.serverTiming);const u=null!==(r=Ee(gi,ye))&&void 0!==r?r:"unknown",l=Object.assign(Object.assign({},xi(a)),{faroNavigationId:O(),faroPreviousNavigationId:u});Ie(gi,l.faroNavigationId,ye),e("faro.performance.navigation",l,void 0,{spanContext:s}),n(l)})).observe({type:"navigation",buffered:!0}),i}(t,n);null!=i&&function(t,n,i){const r=e.faro.config.trackResources;new PerformanceObserver((e=>{const o=e.getEntries();for(const e of o){if(Ei(i,e.name))return;const o=e.toJSON();let a=Ti(null==o?void 0:o.serverTiming);if(null==r&&Ii(o,Oi)||r){const e=Object.assign(Object.assign({},ki(o)),{faroNavigationId:t,faroResourceId:O()});n("faro.performance.resource",e,void 0,{spanContext:a})}}})).observe({type:"resource",buffered:!0})}(i,t,n)})))):this.logDebug("performance observer not supported. Disable performance instrumentation.")}getIgnoreUrls(){var e;return null===(e=this.transports.transports)||void 0===e?void 0:e.flatMap((e=>e.getIgnoreUrls()))}}function Pi(e={}){const t=[new st,new wi,new $e,new ut];return!1!==e.enablePerformanceInstrumentation&&t.unshift(new Ci),!1!==e.captureConsole&&t.push(new qe({disabledLevels:e.captureConsoleDisabledLevels})),t}const _i="browser",Ni=()=>{const e=window.k6;return{k6:Object.assign({isK6Browser:!0},(null==e?void 0:e.testRunId)&&{testRunId:null==e?void 0:e.testRunId})}};class Ai extends W{constructor(e){var t,n,i,r;super(),this.options=e,this.name="@grafana/faro-web-sdk:transport-fetch",this.version=ee,this.disabledUntil=new Date,this.rateLimitBackoffMs=null!==(t=e.defaultRateLimitBackoffMs)&&void 0!==t?t:5e3,this.getNow=null!==(n=e.getNow)&&void 0!==n?n:()=>Date.now(),this.promiseBuffer=x({size:null!==(i=e.bufferSize)&&void 0!==i?i:30,concurrency:null!==(r=e.concurrency)&&void 0!==r?r:5})}send(e){return yi(this,void 0,void 0,(function*(){try{if(this.disabledUntil>new Date(this.getNow()))return this.logWarn(`Dropping transport item due to too many requests. Backoff until ${this.disabledUntil}`),Promise.resolve();yield this.promiseBuffer.add((()=>{const t=JSON.stringify(K(e)),{url:n,requestOptions:i,apiKey:r}=this.options,o=null!=i?i:{},{headers:a}=o,s=function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n}(o,["headers"]);let u;const l=this.metas.value.session;return null!=l&&(u=l.id),fetch(n,Object.assign({method:"POST",headers:Object.assign(Object.assign(Object.assign({"Content-Type":"application/json"},null!=a?a:{}),r?{"x-api-key":r}:{}),u?{"x-faro-session-id":u}:{}),body:t,keepalive:t.length<=6e4},null!=s?s:{})).then((e=>yi(this,void 0,void 0,(function*(){if(202===e.status){"invalid"===e.headers.get("X-Faro-Session-Status")&&this.extendFaroSession(this.config,this.logDebug)}return 429===e.status&&(this.disabledUntil=this.getRetryAfterDate(e),this.logWarn(`Too many requests, backing off until ${this.disabledUntil}`)),e.text().catch(k),e})))).catch((e=>{this.logError("Failed sending payload to the receiver\n",JSON.parse(t),e)}))}))}catch(e){this.logError(e)}}))}getIgnoreUrls(){var e;return[this.options.url].concat(null!==(e=this.config.ignoreUrls)&&void 0!==e?e:[])}isBatched(){return!0}getRetryAfterDate(e){const t=this.getNow(),n=e.headers.get("Retry-After");if(n){const e=Number(n);if(!isNaN(e))return new Date(1e3*e+t);const i=Date.parse(n);if(!isNaN(i))return new Date(i)}return new Date(t+this.rateLimitBackoffMs)}extendFaroSession(e,t){const n="Session expired",i=e.sessionTracking;if(null==i?void 0:i.enabled){const{fetchUserSession:e,storeUserSession:r}=Ve(i);Be({fetchUserSession:e,storeUserSession:r})({forceSessionExtend:!0}),t(`${n} created new session.`)}else t(`${n}.`)}}function Mi(e){var t,n,i,r,o,a,u,l,c,d;const f=[],p=V(e.unpatchedConsole,e.internalLoggerLevel);e.transports?((e.url||e.apiKey)&&p.error('if "transports" is defined, "url" and "apiKey" should not be defined'),f.push(...e.transports)):e.url?f.push(new Ai({url:e.url,apiKey:e.apiKey})):p.error('either "url" or "transports" must be defined');return{app:e.app,batching:Object.assign(Object.assign({},se),e.batching),dedupe:null===(t=e.dedupe)||void 0===t||t,globalObjectKey:e.globalObjectKey||ae,instrumentations:null!==(n=e.instrumentations)&&void 0!==n?n:Pi(),internalLoggerLevel:null!==(i=e.internalLoggerLevel)&&void 0!==i?i:B,isolate:null!==(r=e.isolate)&&void 0!==r&&r,logArgsSerializer:null!==(o=e.logArgsSerializer)&&void 0!==o?o:Z,metas:function(){const t=he;return e.metas&&t.push(...e.metas),s(window.k6)?[...t,Ni]:t}(),parseStacktrace:rt,paused:null!==(a=e.paused)&&void 0!==a&&a,preventGlobalExposure:null!==(u=e.preventGlobalExposure)&&void 0!==u&&u,transports:f,unpatchedConsole:null!==(l=e.unpatchedConsole)&&void 0!==l?l:U,beforeSend:e.beforeSend,eventDomain:null!==(c=e.eventDomain)&&void 0!==c?c:_i,ignoreErrors:e.ignoreErrors,ignoreUrls:e.ignoreUrls,sessionTracking:Object.assign(Object.assign({},De),e.sessionTracking),user:e.user,view:null!==(d=e.view)&&void 0!==d?d:we,trackResources:e.trackResources,trackWebVitalsAttribution:e.trackWebVitalsAttribution}}return e.BaseExtension=G,e.BaseInstrumentation=Q,e.BaseTransport=W,e.ConsoleInstrumentation=qe,e.ConsoleTransport=class extends W{constructor(e={}){super(),this.options=e,this.name="@grafana/faro-web-sdk:transport-console",this.version=ee}send(t){var n;return this.unpatchedConsole[null!==(n=this.options.level)&&void 0!==n?n:e.LogLevel.DEBUG]("New event",K([t]))}},e.Conventions={EventNames:{CLICK:"click",NAVIGATION:"navigation",SESSION_START:"session_start",VIEW_CHANGED:"view_changed"}},e.EVENT_CLICK="click",e.EVENT_NAVIGATION="navigation",e.EVENT_ROUTE_CHANGE="route_change",e.EVENT_SESSION_EXTEND=de,e.EVENT_SESSION_RESUME=ce,e.EVENT_SESSION_START=le,e.EVENT_VIEW_CHANGED=ue,e.ErrorsInstrumentation=st,e.FetchTransport=Ai,e.MAX_SESSION_PERSISTENCE_TIME=Me,e.MAX_SESSION_PERSISTENCE_TIME_BUFFER=6e4,e.PerformanceInstrumentation=Ci,e.PersistentSessionsManager=Fe,e.SESSION_EXPIRATION_TIME=Ne,e.SESSION_INACTIVITY_TIME=Ae,e.STORAGE_KEY=_e,e.SessionInstrumentation=$e,e.VERSION=ee,e.ViewInstrumentation=ut,e.VolatileSessionsManager=ze,e.WebVitalsInstrumentation=wi,e.allLogLevels=I,e.browserMeta=ge,e.buildStackFrame=tt,e.createInternalLogger=V,e.createPromiseBuffer=x,e.createSession=be,e.deepEqual=y,e.defaultEventDomain=_i,e.defaultExceptionType=X,e.defaultGlobalObjectKey=ae,e.defaultInternalLoggerLevel=B,e.defaultLogLevel=E,e.defaultMetas=he,e.defaultViewMeta=we,e.genShortID=O,e.getCurrentTimestamp=S,e.getDataFromSafariExtensions=nt,e.getInternalFaroFromGlobalObject=function(){return C[te]},e.getStackFramesFromError=it,e.getTransportBody=K,e.getWebInstrumentations=Pi,e.globalObject=C,e.initializeFaro=function(e){const t=Mi(e);if(t)return oe(t)},e.internalGlobalObjectKey=te,e.isArray=l,e.isBoolean=e=>t(e,"boolean"),e.isDomError=v,e.isDomException=h,e.isElement=e=>b&&i(e,Element),e.isElementDefined=b,e.isError=m,e.isErrorDefined=p,e.isErrorEvent=g,e.isEvent=f,e.isEventDefined=d,e.isFunction=u,e.isInstanceOf=i,e.isInt=e=>a(e)&&Number.isInteger(e),e.isInternalFaroOnGlobalObject=ie,e.isMap=e=>w&&i(e,Map),e.isMapDefined=w,e.isNull=r,e.isNumber=a,e.isObject=s,e.isPrimitive=c,e.isRegExp=e=>n(e,"RegExp"),e.isString=o,e.isSymbol=e=>t(e,"symbol"),e.isSyntheticEvent=e=>s(e)&&"nativeEvent"in e&&"preventDefault"in e&&"stopPropagation"in e,e.isThenable=e=>u(null==e?void 0:e.then),e.isToString=n,e.isTypeof=t,e.isUndefined=e=>t(e,"undefined"),e.makeCoreConfig=Mi,e.noop=k,e.pageMeta=ve,e.parseStacktrace=rt,e.sdkMeta=()=>({sdk:{name:"@grafana/faro-core",version:ee,integrations:e.faro.config.instrumentations.map((({name:e,version:t})=>({name:e,version:t})))}}),e.setInternalFaroOnGlobalObject=ne,e.transportItemTypeToBodyKey=A,e}({});
@@ -3,7 +3,7 @@ import type { ConsoleInstrumentationOptions } from './types';
3
3
  export declare class ConsoleInstrumentation extends BaseInstrumentation {
4
4
  private options;
5
5
  readonly name = "@grafana/faro-web-sdk:instrumentation-console";
6
- readonly version = "1.7.3";
6
+ readonly version = "1.8.1";
7
7
  static defaultDisabledLevels: LogLevel[];
8
8
  constructor(options?: ConsoleInstrumentationOptions);
9
9
  initialize(): void;
@@ -1,6 +1,6 @@
1
1
  import { BaseInstrumentation } from '@grafana/faro-core';
2
2
  export declare class ErrorsInstrumentation extends BaseInstrumentation {
3
3
  readonly name = "@grafana/faro-web-sdk:instrumentation-errors";
4
- readonly version = "1.7.3";
4
+ readonly version = "1.8.1";
5
5
  initialize(): void;
6
6
  }
@@ -0,0 +1 @@
1
+ export declare const NAVIGATION_ID_STORAGE_KEY = "com.grafana.faro.lastNavigationId";
@@ -1,7 +1,7 @@
1
1
  import { BaseInstrumentation } from '@grafana/faro-core';
2
2
  export declare class PerformanceInstrumentation extends BaseInstrumentation {
3
3
  readonly name = "@grafana/faro-web-sdk:instrumentation-performance";
4
- readonly version = "1.7.3";
4
+ readonly version = "1.8.1";
5
5
  initialize(): void;
6
6
  private getIgnoreUrls;
7
7
  }
@@ -1,3 +1,2 @@
1
- export declare const NAVIGATION_ID_STORAGE_KEY = "com.grafana.faro.lastNavigationId";
2
1
  export declare const NAVIGATION_ENTRY = "navigation";
3
2
  export declare const RESOURCE_ENTRY = "resource";
@@ -1,4 +1,7 @@
1
+ import { type PushEventOptions } from '@grafana/faro-core';
1
2
  import type { FaroNavigationTiming, FaroResourceTiming } from './types';
3
+ type SpanContext = PushEventOptions['spanContext'];
4
+ export declare function getSpanContextFromServerTiming(serverTimings?: PerformanceServerTiming[]): SpanContext | undefined;
2
5
  export declare function performanceObserverSupported(): boolean;
3
6
  export declare function entryUrlIsIgnored(ignoredUrls: (string | RegExp)[] | undefined, entryName: string): boolean;
4
7
  export declare function onDocumentReady(handleReady: () => void): void;
@@ -1,7 +1,7 @@
1
1
  import { BaseInstrumentation } from '@grafana/faro-core';
2
2
  export declare class SessionInstrumentation extends BaseInstrumentation {
3
3
  readonly name = "@grafana/faro-web-sdk:instrumentation-session";
4
- readonly version = "1.7.3";
4
+ readonly version = "1.8.1";
5
5
  private notifiedSession;
6
6
  private sendSessionStartEvent;
7
7
  private createInitialSession;
@@ -0,0 +1,3 @@
1
+ import type { Config } from '@grafana/faro-core';
2
+ import type { SessionManager } from './types';
3
+ export declare function getSessionManagerByConfig(sessionTrackingConfig: Config['sessionTracking']): SessionManager;
@@ -3,3 +3,4 @@ export { VolatileSessionsManager } from './VolatileSessionManager';
3
3
  export { MAX_SESSION_PERSISTENCE_TIME, MAX_SESSION_PERSISTENCE_TIME_BUFFER, SESSION_EXPIRATION_TIME, SESSION_INACTIVITY_TIME, STORAGE_KEY, STORAGE_UPDATE_DELAY, defaultSessionTrackingConfig, } from './sessionConstants';
4
4
  export { isSampled } from './sampling';
5
5
  export type { FaroUserSession } from './types';
6
+ export { getSessionManagerByConfig } from './getSessionManagerByConfig';
@@ -3,6 +3,9 @@ export declare const STORAGE_KEY = "com.grafana.faro.session";
3
3
  export declare const SESSION_EXPIRATION_TIME: number;
4
4
  export declare const SESSION_INACTIVITY_TIME: number;
5
5
  export declare const STORAGE_UPDATE_DELAY: number;
6
+ /**
7
+ * @deprecated MAX_SESSION_PERSISTENCE_TIME_BUFFER is not used anymore. The constant will be removed in the future
8
+ */
6
9
  export declare const MAX_SESSION_PERSISTENCE_TIME_BUFFER: number;
7
10
  export declare const MAX_SESSION_PERSISTENCE_TIME: number;
8
11
  export declare const defaultSessionTrackingConfig: Config['sessionTracking'];
@@ -11,6 +11,9 @@ type GetUserSessionUpdaterParams = {
11
11
  storeUserSession: (session: FaroUserSession) => void;
12
12
  fetchUserSession: () => FaroUserSession | null;
13
13
  };
14
- export declare function getUserSessionUpdater({ fetchUserSession, storeUserSession }: GetUserSessionUpdaterParams): () => void;
14
+ type UpdateSessionParams = {
15
+ forceSessionExtend: boolean;
16
+ };
17
+ export declare function getUserSessionUpdater({ fetchUserSession, storeUserSession, }: GetUserSessionUpdaterParams): (options?: UpdateSessionParams) => void;
15
18
  export declare function addSessionMetadataToNextSession(newSession: FaroUserSession, previousSession: FaroUserSession | null): Required<FaroUserSession>;
16
19
  export {};
@@ -1,4 +1,6 @@
1
1
  import type { MetaSession } from '@grafana/faro-core';
2
+ import type { PersistentSessionsManager } from './PersistentSessionsManager';
3
+ import type { VolatileSessionsManager } from './VolatileSessionManager';
2
4
  export interface FaroUserSession {
3
5
  sessionId: string;
4
6
  lastActivity: number;
@@ -6,3 +8,4 @@ export interface FaroUserSession {
6
8
  isSampled: boolean;
7
9
  sessionMeta?: MetaSession;
8
10
  }
11
+ export type SessionManager = typeof VolatileSessionsManager | typeof PersistentSessionsManager;
@@ -1,7 +1,7 @@
1
1
  import { BaseInstrumentation } from '@grafana/faro-core';
2
2
  export declare class ViewInstrumentation extends BaseInstrumentation {
3
3
  readonly name = "@grafana/faro-web-sdk:instrumentation-view";
4
- readonly version = "1.7.3";
4
+ readonly version = "1.8.1";
5
5
  private notifiedView;
6
6
  private sendViewChangedEvent;
7
7
  initialize(): void;
@@ -1,14 +1,7 @@
1
1
  import { BaseInstrumentation } from '@grafana/faro-core';
2
2
  export declare class WebVitalsInstrumentation extends BaseInstrumentation {
3
3
  readonly name = "@grafana/faro-web-sdk:instrumentation-web-vitals";
4
- readonly version = "1.7.3";
5
- static mapping: {
6
- cls: (onReport: import("web-vitals").CLSReportCallback, opts?: import("web-vitals").ReportOpts | undefined) => void;
7
- fcp: (onReport: import("web-vitals").FCPReportCallback, opts?: import("web-vitals").ReportOpts | undefined) => void;
8
- fid: (onReport: import("web-vitals").FIDReportCallback, opts?: import("web-vitals").ReportOpts | undefined) => void;
9
- inp: (onReport: import("web-vitals").INPReportCallback, opts?: import("web-vitals").ReportOpts | undefined) => void;
10
- lcp: (onReport: import("web-vitals").LCPReportCallback, opts?: import("web-vitals").ReportOpts | undefined) => void;
11
- ttfb: (onReport: import("web-vitals").TTFBReportCallback, opts?: import("web-vitals").ReportOpts | undefined) => void;
12
- };
4
+ readonly version = "1.8.1";
13
5
  initialize(): void;
6
+ private intializeWebVitalsInstrumentation;
14
7
  }
@@ -0,0 +1,14 @@
1
+ import type { MeasurementsAPI } from '@grafana/faro-core';
2
+ export declare class WebVitalsBasic {
3
+ private pushMeasurement;
4
+ static mapping: {
5
+ cls: (onReport: (metric: import("web-vitals").CLSMetric) => void, opts?: import("web-vitals").ReportOpts | undefined) => void;
6
+ fcp: (onReport: (metric: import("web-vitals").FCPMetric) => void, opts?: import("web-vitals").ReportOpts | undefined) => void;
7
+ fid: (onReport: (metric: import("web-vitals").FIDMetric) => void, opts?: import("web-vitals").ReportOpts | undefined) => void;
8
+ inp: (onReport: (metric: import("web-vitals").INPMetric) => void, opts?: import("web-vitals").ReportOpts | undefined) => void;
9
+ lcp: (onReport: (metric: import("web-vitals").LCPMetric) => void, opts?: import("web-vitals").ReportOpts | undefined) => void;
10
+ ttfb: (onReport: (metric: import("web-vitals").TTFBMetric) => void, opts?: import("web-vitals").ReportOpts | undefined) => void;
11
+ };
12
+ constructor(pushMeasurement: MeasurementsAPI['pushMeasurement']);
13
+ initialize(): void;
14
+ }
@@ -0,0 +1,16 @@
1
+ import type { MeasurementsAPI } from '@grafana/faro-core';
2
+ export declare class WebVitalsWithAttribution {
3
+ private corePushMeasurement;
4
+ constructor(corePushMeasurement: MeasurementsAPI['pushMeasurement']);
5
+ initialize(): void;
6
+ private measureCLS;
7
+ private measureFCP;
8
+ private measureFID;
9
+ private measureINP;
10
+ private measureLCP;
11
+ private measureTTFB;
12
+ private buildInitialValues;
13
+ private buildInitialContext;
14
+ private pushMeasurement;
15
+ private addIfPresent;
16
+ }
@@ -4,7 +4,7 @@ import type { ConsoleTransportOptions } from './types';
4
4
  export declare class ConsoleTransport extends BaseTransport {
5
5
  private options;
6
6
  readonly name = "@grafana/faro-web-sdk:transport-console";
7
- readonly version = "1.7.3";
7
+ readonly version = "1.8.1";
8
8
  constructor(options?: ConsoleTransportOptions);
9
9
  send(item: TransportItem): void;
10
10
  }
@@ -4,7 +4,7 @@ import type { FetchTransportOptions } from './types';
4
4
  export declare class FetchTransport extends BaseTransport {
5
5
  private options;
6
6
  readonly name = "@grafana/faro-web-sdk:transport-fetch";
7
- readonly version = "1.7.3";
7
+ readonly version = "1.8.1";
8
8
  promiseBuffer: PromiseBuffer<Response | void>;
9
9
  private readonly rateLimitBackoffMs;
10
10
  private readonly getNow;
@@ -14,4 +14,5 @@ export declare class FetchTransport extends BaseTransport {
14
14
  getIgnoreUrls(): Patterns;
15
15
  isBatched(): boolean;
16
16
  private getRetryAfterDate;
17
+ private extendFaroSession;
17
18
  }