@descope/web-component 1.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Descope <help@descope.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -3,12 +3,17 @@
3
3
  Create your login pages on our console-app, once done, you can use this library to inject those pages to your app</br>
4
4
  it registers- a [web component](https://developer.mozilla.org/en-US/docs/Web/Web_Components) and update the web-component content based on the relevant page,
5
5
  See usage example below
6
+
6
7
  ## Usage
8
+
7
9
  ### Install the package
10
+
8
11
  ```bash
9
12
  npm install @descope/web-component
10
13
  ```
14
+
11
15
  ### As a library
16
+
12
17
  ```js
13
18
  import '@descope/web-component'
14
19
  import { DescopeWc } // in case you need types definition or you want to use the class directly
@@ -20,25 +25,47 @@ render(){
20
25
  )
21
26
  }
22
27
  ```
28
+
23
29
  ### In HTML file
24
30
 
25
31
  - Copy the file `@descope/web-js/sdk/dist/descope-wc.js` and place it where your HTML file is located
26
32
 
27
33
  - Add the following script tag to your HTML file
34
+
28
35
  ```html
29
36
  <head>
30
- <script src="./my-lib.umd.production.min.js"></script>
37
+ <script src="./my-lib.umd.production.min.js"></script>
31
38
  </head>
32
39
  ```
33
40
 
34
41
  - Now you can add the custom element to your HTML
42
+
35
43
  ```html
36
44
  <descope-wc project-id="<project-id>" flow-id="<flow-id>"></descope-wc>
37
45
  ```
38
46
 
39
47
  ### Run the demo app
48
+
40
49
  - Install dependencies - `npm i`
41
- - Edit the `src/app/index.html` - replace `<project-id>` and `<project-id>` with your project and a flow
50
+ - Create a `.env` file and add the following parameters:
51
+
52
+ ```env
53
+ // .env
54
+ DESCOPE_BASE_URL=<base-url>
55
+ DESCOPE_FLOW_ID=<flow-id>
56
+ DESCOPE_PROJECT_ID=<project-id>
57
+ ```
58
+
42
59
  - Run application - `npm run start`
43
60
 
44
- *TODO: we shoud host this file so it can be included without installing the package, once we will publish it to a public registry, we can also use unpkg.com/ to serve it*
61
+ _TODO: we should host this file so it can be included without installing the package, once we will publish it to a public registry, we can also use unpkg.com/ to serve it_
62
+
63
+ ## Optional Attributes
64
+
65
+ | Attribute | Available options | Default value |
66
+ | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
67
+ | theme | **"light"** - Light theme</br>**"dark"** - Dark theme</br>**"os"** - Auto select a theme based on the OS theme settings | **"light"** |
68
+ | debug | **"true"** - Enable debugger</br>**"false"** - Disable debugger | **"false"** |
69
+ | telemetryKey | **String** - Telemetry public key provided by Descope Inc | **""** |
70
+ | auto-focus | **"true"** - Automatically focus on the first input of each screen</br>**"false"** - Do not automatically focus on screen's inputs</br>**"skipFirstScreen"** - Automatically focus on the first input of each screen, except first screen | **"true"** |
71
+ | | | |
@@ -0,0 +1 @@
1
+ import{S as e,_ as n,a as t}from"./index-e76ada1f.js";const s=(e,n,t,s={})=>{var i,o,l,a;return[Math.min(Math.max(n,("all"===s.left?e.offsetWidth:null!==(i=s.left)&&void 0!==i?i:0)-e.offsetWidth),window.innerWidth-("all"===s.right?e.offsetWidth:null!==(o=s.right)&&void 0!==o?o:0)),Math.min(Math.max(t,("all"===s.top?e.offsetHeight:null!==(l=s.top)&&void 0!==l?l:0)-e.offsetHeight),window.innerHeight-("all"===s.bottom?e.offsetHeight:null!==(a=s.bottom)&&void 0!==a?a:0))]};var i,o,l,a,r,d,c,h,p,g;const f=document.createElement("template");f.innerHTML=`\n<style>\n .debugger {\n width: 300px;\n height: 200px;\n background-color: #FAFAFA;\n position: fixed;\n font-family: "Helvetica Neue", sans-serif;\n box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid lightgrey;\n pointer-events: initial;\n display: flex;\n flex-direction: column;\n min-width: 200px;\n max-width: 600px;\n max-height: calc(100% - 64px);\n min-height: 200px;\n resize: both;\n }\n\n .header {\n padding: 8px 16px;\n display: flex;\n align-items: center;\n background-color: #EEEEEE;\n cursor: move;\n border-bottom: 1px solid #e0e0e0;\n }\n\n .content {\n font-size: 14px;\n flex-grow: 1;\n overflow: auto;\n }\n\n .msg {\n border-bottom: 1px solid lightgrey; \n padding: 8px 16px;\n display: flex;\n gap: 5px;\n background-color: #FAFAFA;\n }\n\n .msg.collapsible {\n cursor: pointer;\n }\n\n .empty-state {\n padding: 8px 16px;\n background-color: #FAFAFA;\n }\n \n\n .msg.collapsible:not(.collapsed) {\n background-color: #F5F5F5;\n }\n\n .msg_title {\n padding-bottom: 5px;\n display: flex;\n gap: 8px;\n font-weight: 500;\n }\n\n .msg svg {\n padding: 1px;\n flex-shrink: 0;\n margin-top: -2px;\n }\n\n .msg_content {\n overflow: hidden;\n flex-grow: 1;\n margin-right:5px;\n } \n\n .msg_desc {\n color: #646464;\n cursor: initial;\n } \n\n .msg.collapsed .msg_desc {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n .msg.collapsible.collapsed .chevron {\n transform: rotate(-45deg) translateX(-2px);\n }\n\n .msg.collapsible .chevron {\n content: "";\n width:6px;\n height:6px;\n border-bottom: 2px solid grey;\n border-right: 2px solid grey;\n transform: rotate(45deg) translateX(-1px);\n margin: 5px;\n flex-shrink:0;\n }\n</style>\n\n<div style="top:32px; left:${window.innerWidth-300-32}px;" class="debugger">\n <div class="header">\n <span>Debugger messages</span>\n </div>\n <div class="content">\n <div class="empty-state">\n No errors detected 👀\n </div>\n </div>\n</div>\n`;class m extends HTMLElement{constructor(){super(),i.add(this),o.set(this,new e({messages:[]})),l.set(this,void 0),a.set(this,void 0),r.set(this,void 0),d.set(this,{resize:n(this,i,"m",g).bind(this)}),this.attachShadow({mode:"open"}),this.shadowRoot.appendChild(f.content.cloneNode(!0)),t(this,l,this.shadowRoot.querySelector(".debugger"),"f"),t(this,a,n(this,l,"f").querySelector(".content"),"f"),t(this,r,n(this,l,"f").querySelector(".header"),"f")}updateData(e){n(this,o,"f").update((n=>({messages:n.messages.concat(e)})))}connectedCallback(){var e;((e,n,t)=>{let i=0,o=0,l=0,a=0;function r(n){n.preventDefault(),i=l-n.clientX,o=a-n.clientY,l=n.clientX,a=n.clientY;const[r,d]=s(e,e.offsetLeft-i,e.offsetTop-o,t);e.style.top=`${d}px`,e.style.left=`${r}px`}function d(){document.onmouseup=null,document.onmousemove=null}function c(e){e.preventDefault(),l=e.clientX,a=e.clientY,document.onmouseup=d,document.onmousemove=r}n?n.onmousedown=c:e.onmousedown=c})(n(this,l,"f"),n(this,r,"f"),{top:"all",bottom:100,left:100,right:100}),window.addEventListener("resize",n(this,d,"f").resize),(e=n(this,l,"f")).onmousemove=n=>{(n.target.w&&n.target.w!==n.target.offsetWidth||n.target.h&&n.target.h!==n.target.offsetHeight)&&e.onresize(n),n.target.w=n.target.offsetWidth,n.target.h=n.target.offsetHeight},n(this,l,"f").onresize=n(this,i,"m",p).bind(this),n(this,o,"f").subscribe(n(this,i,"m",c).bind(this))}disconnectedCallback(){n(this,o,"f").unsubscribeAll(),window.removeEventListener("resize",n(this,d,"f").resize)}}o=new WeakMap,l=new WeakMap,a=new WeakMap,r=new WeakMap,d=new WeakMap,i=new WeakSet,c=function(e){n(this,i,"m",h).call(this,e),n(this,i,"m",p).call(this)},h=function(e){n(this,a,"f").innerHTML=e.messages.map((e=>`\n <div class="msg">\n <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M5.99984 13.167L8.99984 10.167L11.9998 13.167L13.1665 12.0003L10.1665 9.00033L13.1665 6.00033L11.9998 4.83366L8.99984 7.83366L5.99984 4.83366L4.83317 6.00033L7.83317 9.00033L4.83317 12.0003L5.99984 13.167ZM8.99984 17.3337C7.84706 17.3337 6.76373 17.1148 5.74984 16.677C4.73595 16.2398 3.854 15.6462 3.104 14.8962C2.354 14.1462 1.76039 13.2642 1.32317 12.2503C0.885393 11.2364 0.666504 10.1531 0.666504 9.00033C0.666504 7.84755 0.885393 6.76421 1.32317 5.75033C1.76039 4.73644 2.354 3.85449 3.104 3.10449C3.854 2.35449 4.73595 1.7606 5.74984 1.32283C6.76373 0.885603 7.84706 0.666992 8.99984 0.666992C10.1526 0.666992 11.2359 0.885603 12.2498 1.32283C13.2637 1.7606 14.1457 2.35449 14.8957 3.10449C15.6457 3.85449 16.2393 4.73644 16.6765 5.75033C17.1143 6.76421 17.3332 7.84755 17.3332 9.00033C17.3332 10.1531 17.1143 11.2364 16.6765 12.2503C16.2393 13.2642 15.6457 14.1462 14.8957 14.8962C14.1457 15.6462 13.2637 16.2398 12.2498 16.677C11.2359 17.1148 10.1526 17.3337 8.99984 17.3337ZM8.99984 15.667C10.8609 15.667 12.4373 15.0212 13.729 13.7295C15.0207 12.4378 15.6665 10.8614 15.6665 9.00033C15.6665 7.13921 15.0207 5.56283 13.729 4.27116C12.4373 2.97949 10.8609 2.33366 8.99984 2.33366C7.13873 2.33366 5.56234 2.97949 4.27067 4.27116C2.979 5.56283 2.33317 7.13921 2.33317 9.00033C2.33317 10.8614 2.979 12.4378 4.27067 13.7295C5.56234 15.0212 7.13873 15.667 8.99984 15.667Z" fill="#ED404A"/>\n</svg>\n\n <div class="msg_content">\n <div class="msg_title">\n ${e.title}\n </div>\n <div class="msg_desc">\n ${e.description}\n </div>\n </div>\n <div class="chevron"></div>\n </div>\n `)).join("")},p=function(){n(this,a,"f").querySelectorAll(".msg").forEach((e=>{const n=e.querySelector(".msg_desc"),t=n.scrollWidth>n.clientWidth,s=n.clientHeight>20;t||s?(e.classList.add("collapsible"),e.onclick=n=>{n.target.classList.contains("msg_desc")||e.classList.toggle("collapsed")}):(e.classList.remove("collapsible"),e.onclick=null)}))},g=function(){const[e,t]=s(n(this,l,"f"),Number.parseInt(n(this,l,"f").style.left,10),Number.parseInt(n(this,l,"f").style.top,10),{top:"all",bottom:100,left:100,right:100});n(this,l,"f").style.top=`${t}px`,n(this,l,"f").style.left=`${e}px`},customElements.define("descope-debugger",m);export{m as default};
@@ -0,0 +1,2 @@
1
+ var t=function(){return t=Object.assign||function(t){for(var e,n=1,o=arguments.length;n<o;n++)for(var r in e=arguments[n])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t},t.apply(this,arguments)};function e(t,e){var n={};for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e.indexOf(o)<0&&(n[o]=t[o]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(o=Object.getOwnPropertySymbols(t);r<o.length;r++)e.indexOf(o[r])<0&&Object.prototype.propertyIsEnumerable.call(t,o[r])&&(n[o[r]]=t[o[r]])}return n}function n(t,e,n,o){return new(n||(n=Promise))((function(r,i){function s(t){try{c(o.next(t))}catch(t){i(t)}}function a(t){try{c(o.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(s,a)}c((o=o.apply(t,e||[])).next())}))}function o(t,e,n,o){if("a"===n&&!o)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===n?o:"a"===n?o.call(t):o?o.value:e.get(t)}function r(t,e,n,o,r){if("m"===o)throw new TypeError("Private method is not writable");if("a"===o&&!r)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===o?r.call(t,n):r?r.value=n:e.set(t,n),n}const i="undefined"!=typeof localStorage,s=i&&localStorage.getItem("base.content.url")||"https://static.descope.com/pages",a="descope-login-flow",c="t",l="code",u="err",d="data-exclude-field",h="dls_last_auth",p="data-type",f="redirect",g="poll",v="webauthnCreate",b="webauthnGet",y="v2-alpha",m="submit",w="polling";var k;function I(t){return new URLSearchParams(window.location.search).get(t)}function O(t){if(window.history.replaceState&&I(t)){const e=new URL(window.location.href),n=new URLSearchParams(e.search);n.delete(t),e.search=n.toString(),window.history.replaceState({},"",e.toString())}}function j(t,e){return n(this,void 0,void 0,(function*(){const n=yield fetch(t,{cache:"default"});if(!n.ok)throw Error(`Error fetching URL ${t}`);return{body:yield n[e||"text"](),headers:Object.fromEntries(n.headers.entries())}}))}!function(t){t.backward="backward",t.forward="forward"}(k||(k={}));const S=(...t)=>t.join("/").replace(/\/+/g,"/");function E(t,e){const n=new URL(s);return n.pathname=S(n.pathname,t,y,e),n.toString()}function x(t,e){if(!Number.isNaN(t)&&!Number.isNaN(e))return t>e?k.forward:t<e?k.backward:void 0}const _=()=>{const[t="",e=""]=(I(a)||"").split("_");return{executionId:t,stepId:e}};function C(){O(a)}const A=t=>t.replace(/-./g,(t=>t[1].toUpperCase())),U=()=>{const{executionId:t,stepId:e}=_();(t||e)&&C();const n=I(c)||void 0;n&&O(c);const o=I(l)||void 0;o&&O(l);const r=I(u)||void 0;return r&&O(u),{executionId:t,stepId:e,token:n,code:o,exchangeError:r}},R=t=>{let e,n;return(...o)=>{return e&&(i=o,(r=e).length===i.length&&r.every(((t,e)=>t===i[e])))||(e=o,n=t(...o)),n;var r,i}};var P,T,q,M;function D(t,e){const n=Object.getOwnPropertyNames(t),o=Object.getOwnPropertyNames(e);if(n.length!==o.length)return!1;for(let o=0;o<n.length;o+=1){const r=n[o],i=t[r],s=e[r];if("object"==typeof i&&"object"==typeof s){if(!D(i,s))return!1}else if(i!==s)return!1}return!0}class ${constructor(t={},{updateOnlyOnChange:e=!0}={}){P.set(this,void 0),T.set(this,{}),q.set(this,0),M.set(this,!1),this.update=t=>{const e="function"==typeof t?t(o(this,P,"f")):t,n=Object.assign(Object.assign({},o(this,P,"f")),e);if(!o(this,M,"f")||!D(o(this,P,"f"),n)){const t=o(this,P,"f");r(this,P,n,"f"),Object.freeze(o(this,P,"f")),setTimeout((()=>{Object.values(o(this,T,"f")).forEach((e=>e(n,t,((t,e)=>n=>t[n]!==e[n])(n,t))))}),0)}},r(this,P,t,"f"),r(this,M,e,"f")}get current(){return Object.assign({},o(this,P,"f"))}subscribe(t){return r(this,q,o(this,q,"f")+1,"f"),o(this,T,"f")[o(this,q,"f")]=t,o(this,q,"f").toString()}unsubscribe(t){const e=!!o(this,T,"f")[t];return e&&delete o(this,T,"f")[t],e}unsubscribeAll(){return r(this,T,{},"f"),!0}}P=new WeakMap,T=new WeakMap,q=new WeakMap,M=new WeakMap;const L=(t,e)=>{var n;((t,e,n="")=>{t.querySelectorAll(`[${p}="${e}"]`).forEach((t=>{t.textContent=n,t.classList[n?"remove":"add"]("hide")}))})(t,"error-message",null==e?void 0:e.errorText),((t,e)=>{Object.entries(e||{}).forEach((([e,n])=>{Array.from(t.querySelectorAll(`.descope-input[name="${e}"]:not([${d}])`)).forEach((t=>{t.value=n}))}))})(t,null==e?void 0:e.inputs),((t,e)=>{t.querySelectorAll(`[${p}="totp-link"]`).forEach((t=>{t.href=e}))})(t,null===(n=null==e?void 0:e.totp)||void 0===n?void 0:n.provisionUrl),((t,e)=>{t.querySelectorAll(".descope-text,.descope-link").forEach((t=>{t.textContent=((t,e)=>t.replace(/{{(.+?)}}/g,((t,n)=>{return o=e,n.split(".").reduce(((t,e)=>(null==t?void 0:t[e])||""),o);var o})))(t.textContent,e)}))})(t,e)},N=R((()=>n(void 0,void 0,void 0,(function*(){if(!window.PublicKeyCredential||!PublicKeyCredential.isConditionalMediationAvailable||!PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable)return console.warn("webauthn","Conditional UI is not supported"),!1;try{return(yield Promise.all([PublicKeyCredential.isConditionalMediationAvailable(),PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()])).every((t=>!!t))}catch(t){return console.warn("webauthn","Conditional login check failed",t),!1}}))));function K(t){this.message=t}K.prototype=new Error,K.prototype.name="InvalidCharacterError";var J="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(t){var e=String(t).replace(/=+$/,"");if(e.length%4==1)throw new K("'atob' failed: The string to be decoded is not correctly encoded.");for(var n,o,r=0,i=0,s="";o=e.charAt(i++);~o&&(n=r%4?64*n+o:o,r++%4)?s+=String.fromCharCode(255&n>>(-2*r&6)):0)o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(o);return s};function F(t){this.message=t}function W(t,e){if("string"!=typeof t)throw new F("Invalid token specified");var n=!0===(e=e||{}).header?0:1;try{return JSON.parse(function(t){var e=t.replace(/-/g,"+").replace(/_/g,"/");switch(e.length%4){case 0:break;case 2:e+="==";break;case 3:e+="=";break;default:throw"Illegal base64url string!"}try{return function(t){return decodeURIComponent(J(t).replace(/(.)/g,(function(t,e){var n=e.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n="0"+n),"%"+n})))}(e)}catch(t){return J(e)}}(t.split(".")[n]))}catch(t){throw new F("Invalid token specified: "+t.message)}}F.prototype=new Error,F.prototype.name="InvalidTokenError";var H="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},B="Expected a function",V="__lodash_hash_undefined__",z=1/0,G="[object Function]",Z="[object GeneratorFunction]",Q="[object Symbol]",Y=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,X=/^\w*$/,tt=/^\./,et=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,nt=/\\(\\)?/g,ot=/^\[object .+?Constructor\]$/,rt="object"==typeof H&&H&&H.Object===Object&&H,it="object"==typeof self&&self&&self.Object===Object&&self,st=rt||it||Function("return this")();var at,ct=Array.prototype,lt=Function.prototype,ut=Object.prototype,dt=st["__core-js_shared__"],ht=(at=/[^.]+$/.exec(dt&&dt.keys&&dt.keys.IE_PROTO||""))?"Symbol(src)_1."+at:"",pt=lt.toString,ft=ut.hasOwnProperty,gt=ut.toString,vt=RegExp("^"+pt.call(ft).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),bt=st.Symbol,yt=ct.splice,mt=At(st,"Map"),wt=At(Object,"create"),kt=bt?bt.prototype:void 0,It=kt?kt.toString:void 0;function Ot(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var o=t[e];this.set(o[0],o[1])}}function jt(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var o=t[e];this.set(o[0],o[1])}}function St(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var o=t[e];this.set(o[0],o[1])}}function Et(t,e){for(var n,o,r=t.length;r--;)if((n=t[r][0])===(o=e)||n!=n&&o!=o)return r;return-1}function xt(t,e){var n;e=function(t,e){if(Tt(t))return!1;var n=typeof t;if("number"==n||"symbol"==n||"boolean"==n||null==t||Mt(t))return!0;return X.test(t)||!Y.test(t)||null!=e&&t in Object(e)}(e,t)?[e]:Tt(n=e)?n:Ut(n);for(var o=0,r=e.length;null!=t&&o<r;)t=t[Rt(e[o++])];return o&&o==r?t:void 0}function _t(t){if(!qt(t)||(e=t,ht&&ht in e))return!1;var e,n=function(t){var e=qt(t)?gt.call(t):"";return e==G||e==Z}(t)||function(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}(t)?vt:ot;return n.test(function(t){if(null!=t){try{return pt.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}function Ct(t,e){var n,o,r=t.__data__;return("string"==(o=typeof(n=e))||"number"==o||"symbol"==o||"boolean"==o?"__proto__"!==n:null===n)?r["string"==typeof e?"string":"hash"]:r.map}function At(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return _t(n)?n:void 0}Ot.prototype.clear=function(){this.__data__=wt?wt(null):{}},Ot.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},Ot.prototype.get=function(t){var e=this.__data__;if(wt){var n=e[t];return n===V?void 0:n}return ft.call(e,t)?e[t]:void 0},Ot.prototype.has=function(t){var e=this.__data__;return wt?void 0!==e[t]:ft.call(e,t)},Ot.prototype.set=function(t,e){return this.__data__[t]=wt&&void 0===e?V:e,this},jt.prototype.clear=function(){this.__data__=[]},jt.prototype.delete=function(t){var e=this.__data__,n=Et(e,t);return!(n<0)&&(n==e.length-1?e.pop():yt.call(e,n,1),!0)},jt.prototype.get=function(t){var e=this.__data__,n=Et(e,t);return n<0?void 0:e[n][1]},jt.prototype.has=function(t){return Et(this.__data__,t)>-1},jt.prototype.set=function(t,e){var n=this.__data__,o=Et(n,t);return o<0?n.push([t,e]):n[o][1]=e,this},St.prototype.clear=function(){this.__data__={hash:new Ot,map:new(mt||jt),string:new Ot}},St.prototype.delete=function(t){return Ct(this,t).delete(t)},St.prototype.get=function(t){return Ct(this,t).get(t)},St.prototype.has=function(t){return Ct(this,t).has(t)},St.prototype.set=function(t,e){return Ct(this,t).set(t,e),this};var Ut=Pt((function(t){var e;t=null==(e=t)?"":function(t){if("string"==typeof t)return t;if(Mt(t))return It?It.call(t):"";var e=t+"";return"0"==e&&1/t==-z?"-0":e}(e);var n=[];return tt.test(t)&&n.push(""),t.replace(et,(function(t,e,o,r){n.push(o?r.replace(nt,"$1"):e||t)})),n}));function Rt(t){if("string"==typeof t||Mt(t))return t;var e=t+"";return"0"==e&&1/t==-z?"-0":e}function Pt(t,e){if("function"!=typeof t||e&&"function"!=typeof e)throw new TypeError(B);var n=function(){var o=arguments,r=e?e.apply(this,o):o[0],i=n.cache;if(i.has(r))return i.get(r);var s=t.apply(this,o);return n.cache=i.set(r,s),s};return n.cache=new(Pt.Cache||St),n}Pt.Cache=St;var Tt=Array.isArray;function qt(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function Mt(t){return"symbol"==typeof t||function(t){return!!t&&"object"==typeof t}(t)&&gt.call(t)==Q}var Dt=function(t,e,n){var o=null==t?void 0:xt(t,e);return void 0===o?n:o},$t="/v1/auth/accesskey/exchange",Lt="/v1/auth/otp/verify",Nt="/v1/auth/otp/signin",Kt="/v1/auth/otp/signup",Jt={email:"/v1/auth/otp/update/email",phone:"/v1/auth/otp/update/phone"},Ft="/v1/auth/otp/signup-in",Wt="/v1/auth/magiclink/verify",Ht="/v1/auth/magiclink/signin",Bt="/v1/auth/magiclink/signup",Vt={email:"/v1/auth/magiclink/update/email",phone:"/v1/auth/magiclink/update/phone"},zt="/v1/auth/magiclink/signup-in",Gt="/v1/auth/enchantedlink/verify",Zt="/v1/auth/enchantedlink/signin",Qt="/v1/auth/enchantedlink/signup",Yt="/v1/auth/enchantedlink/pending-session",Xt={email:"/v1/auth/enchantedlink/update/email"},te="/v1/auth/enchantedlink/signup-in",ee="/v1/auth/oauth/authorize",ne="/v1/auth/oauth/exchange",oe="/v1/auth/saml/authorize",re="/v1/auth/saml/exchange",ie="/v1/auth/totp/verify",se="/v1/auth/totp/signup",ae="/v1/auth/totp/update",ce={start:"/v1/auth/webauthn/signup/start",finish:"/v1/auth/webauthn/signup/finish"},le={start:"/v1/auth/webauthn/signin/start",finish:"/v1/auth/webauthn/signin/finish"},ue={start:"/v1/auth/webauthn/signup-in/start"},de={start:"v1/auth/webauthn/update/start",finish:"/v1/auth/webauthn/update/finish"},he="/v1/auth/refresh",pe="/v1/auth/logout",fe="/v1/auth/logoutall",ge="/v1/auth/me",ve="/v1/flow/start",be="/v1/flow/next";const ye=()=>{const t={};return{headers(e){const n="function"==typeof e.entries?Object.fromEntries(e.entries()):e;return t.Headers=JSON.stringify(n),this},body(e){return t.Body=e,this},url(e){return t.Url=e.toString(),this},method(e){return t.Method=e,this},title(e){return t.Title=e,this},status(e){return t.Status=e,this},build:()=>Object.keys(t).flatMap((e=>t[e]?[`${"Title"!==e?`${e}: `:""}${t[e]}`]:[])).join("\n")}};var me;!function(t){t.get="GET",t.delete="DELETE",t.post="POST",t.put="PUT"}(me||(me={}));const we=(...t)=>new Headers(t.reduce(((t,e)=>{const n=(t=>Array.isArray(t)?t:t instanceof Headers?Array.from(t.entries()):t?Object.entries(t):[])(e);return n.reduce(((e,[n,o])=>(t[n]=o,t)),t),t}),{})),ke=t=>void 0===t?void 0:JSON.stringify(t),Ie=(t,e="")=>{let n=t;return e&&(n=n+":"+e),{Authorization:`Bearer ${n}`}},Oe=({baseUrl:t,projectId:e,baseConfig:n,logger:o,hooks:r,cookiePolicy:i,fetch:s})=>{const a=((t,e)=>{const n=e||fetch;return n||null==t||t.warn("Fetch is not defined, you will not be able to send http requests, if you are running in a test, make sure fetch is defined globally"),t?async(...e)=>{if(!n)throw Error("Cannot send http request, fetch is not defined, if you are running in a test, make sure fetch is defined globally");t.log((t=>ye().title("Request").url(t[0]).method(t[1].method).headers(t[1].headers).body(t[1].body).build())(e));const o=await n(...e);return t[o.ok?"log":"error"](await(async t=>{const e=await(t.clone?t.clone().text():t.text());return t.text=()=>Promise.resolve(e),t.json=()=>Promise.resolve(JSON.parse(e)),ye().title("Response").url(t.url.toString()).status(`${t.status} ${t.statusText}`).headers(t.headers).body(e).build()})(o)),o}:n})(o,s),c=async o=>{const s=(null==r?void 0:r.beforeRequest)?r.beforeRequest(o):o,{path:c,body:l,headers:u,queryParams:d,method:h,token:p}=s,f=await a((({path:t,baseUrl:e,queryParams:n})=>{const o=new URL(t,e);return n&&(o.search=new URLSearchParams(n).toString()),o})({path:c,baseUrl:t,queryParams:d}),{headers:we(Ie(e,p),{"x-descope-sdk-name":"core-js","x-descope-sdk-version":"1.0.1"},(null==n?void 0:n.baseHeaders)||{},u),method:h,body:ke(l),credentials:i||"include"});return(null==r?void 0:r.afterRequest)&&await r.afterRequest(o,null==f?void 0:f.clone()),f};return{get:(t,{headers:e,queryParams:n,token:o}={})=>c({path:t,headers:e,queryParams:n,body:void 0,method:me.get,token:o}),post:(t,e,{headers:n,queryParams:o,token:r}={})=>c({path:t,headers:n,queryParams:o,body:e,method:me.post,token:r}),put:(t,e,{headers:n,queryParams:o,token:r}={})=>c({path:t,headers:n,queryParams:o,body:e,method:me.put,token:r}),delete:(t,e,{headers:n,queryParams:o,token:r}={})=>c({path:t,headers:n,queryParams:o,body:e,method:me.delete,token:r}),hooks:r}};var je={TOO_MANY_REQUESTS:429};function Se(t,e,n){var o;let r=Ee(t);e&&(r=null===(o=null==r?void 0:r.tenants)||void 0===o?void 0:o[e]);const i=null==r?void 0:r[n];return Array.isArray(i)?i:[]}function Ee(t){if("string"!=typeof t||!t)throw new Error("Invalid token provided");return W(t)}function xe(t){const{exp:e}=Ee(t);return(new Date).getTime()/1e3>e}function _e(t,e){return Se(t,e,"permissions")}function Ce(t,e){return Se(t,e,"roles")}const Ae=(...t)=>t.join("/").replace(/\/{2,}/g,"/");async function Ue(t,e){var n;const o=await t,r={code:o.status,ok:o.ok,response:o},i=await o.clone().json();return o.ok?r.data=e?e(i):i:(r.error=i,o.status===je.TOO_MANY_REQUESTS&&Object.assign(r.error,{retryAfter:Number.parseInt(null===(n=o.headers)||void 0===n?void 0:n.get("retry-after"))||0})),r}const Re=(t,e)=>(n=e)=>e=>!t(e)&&n.replace("{val}",e),Pe=(...t)=>({validate:e=>(t.forEach((t=>{const n=t(e);if(n)throw new Error(n)})),!0)}),Te=t=>e=>t.test(e),qe=Te(/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/),Me=Te(/^\+[1-9]{1}[0-9]{3,14}$/),De=Re(qe,'"{val}" is not a valid email'),$e=Re(Me,'"{val}" is not a valid phone number'),Le=Re((1,t=>t.length>=1),"Minimum length is 1");const Ne=Re((t=>"string"==typeof t),"Input is not a string"),Ke=(...t)=>e=>(...n)=>(t.forEach(((t,e)=>Pe(...t).validate(n[e]))),e(...n)),Je=t=>[Ne(`"${t}" must be a string`),Le(`"${t}" must not be empty`)],Fe=t=>[Ne(`"${t}" must be a string`),De()],We=t=>[Ne(`"${t}" must be a string`),$e()],He=Ke(Je("accessKey")),Be=t=>({exchange:He((e=>Ue(t.post($t,{},{token:e}))))});var Ve,ze,Ge,Ze;!function(t){t.sms="sms",t.whatsapp="whatsapp"}(Ve||(Ve={})),function(t){t.email="email",t.sms="sms",t.whatsapp="whatsapp"}(ze||(ze={})),function(t){t.waiting="waiting",t.running="running",t.completed="completed",t.failed="failed"}(Ge||(Ge={})),function(t){t.signUp="signup",t.signIn="signin",t.verify="verify"}(Ze||(Ze={}));const Qe=Je("loginId"),Ye=Ke(Je("token")),Xe=Ke(Qe),tn=Ke(Je("pendingRef")),en=Ke(Qe,Fe("email")),nn=t=>({verify:Ye((e=>Ue(t.post(Gt,{token:e})))),signIn:Xe(((e,n,o,r)=>Ue(t.post(Ae(Zt,ze.email),{loginId:e,URI:n,loginOptions:o},{token:r})))),signUpOrIn:Xe(((e,n)=>Ue(t.post(Ae(te,ze.email),{loginId:e,URI:n})))),signUp:Xe(((e,n,o)=>Ue(t.post(Ae(Qt,ze.email),{loginId:e,URI:n,user:o})))),waitForSession:tn(((e,n)=>new Promise((o=>{const{pollingIntervalMs:r,timeoutMs:i}=(({pollingIntervalMs:t=1e3,timeoutMs:e=6e5}={})=>({pollingIntervalMs:Math.max(t||1e3,1e3),timeoutMs:Math.min(e||6e5,6e5)}))(n);let s;const a=setInterval((async()=>{const n=await t.post(Yt,{pendingRef:e});n.ok&&(clearInterval(a),s&&clearTimeout(s),o(Ue(Promise.resolve(n))))}),r);s=setTimeout((()=>{o({error:{errorDescription:`Session polling timeout exceeded: ${i}ms`,errorCode:"0"},ok:!1}),clearInterval(a)}),i)})))),update:{email:en(((e,n,o,r)=>Ue(t.post(Xt.email,{loginId:e,email:n,URI:o},{token:r}))))}}),on=Ke(Je("flowId")),rn=Ke(Je("executionId"),Je("stepId"),Je("interactionId")),sn=t=>({start:on(((e,n,o,r,i)=>Ue(t.post(ve,{flowId:e,options:n,conditionInteractionId:o,interactionId:r,input:i})))),next:rn(((e,n,o,r)=>Ue(t.post(be,{executionId:e,stepId:n,interactionId:o,input:r}))))}),an=Je("loginId"),cn=Ke(Je("token")),ln=Ke(an),un=Ke(an,We("phone")),dn=Ke(an,Fe("email")),hn=t=>({verify:cn((e=>Ue(t.post(Wt,{token:e})))),signIn:Object.keys(ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:ln(((e,o,r,i)=>Ue(t.post(Ae(Ht,n),{loginId:e,URI:o,loginOptions:r},{token:i}))))})),{}),signUp:Object.keys(ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:ln(((e,o,r)=>Ue(t.post(Ae(Bt,n),{loginId:e,URI:o,user:r}))))})),{}),signUpOrIn:Object.keys(ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:ln(((e,o)=>Ue(t.post(Ae(zt,n),{loginId:e,URI:o}))))})),{}),update:{email:dn(((e,n,o,r)=>Ue(t.post(Vt.email,{loginId:e,email:n,URI:o},{token:r})))),phone:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:un(((e,o,r,i)=>Ue(t.post(Ae(Vt.phone,n),{loginId:e,phone:o,URI:r},{token:i}))))})),{})}});var pn;!function(t){t.facebook="facebook",t.github="github",t.google="google",t.microsoft="microsoft",t.gitlab="gitlab",t.apple="apple",t.discord="discord",t.linkedin="linkedin"}(pn||(pn={}));const fn=Ke(Je("code")),gn=t=>({start:Object.keys(pn).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:async(e,{redirect:o=!1}={},r,i)=>{const s=await t.post(ee,r||{},{queryParams:Object.assign({provider:n},e&&{redirectURL:e}),token:i});if(!o||!s.ok)return Ue(Promise.resolve(s));const{url:a}=await s.json();window.location.href=a}})),{}),exchange:fn((e=>Ue(t.post(ne,{code:e}))))});var vn;!function(t){t.signUp="signup",t.signIn="signin",t.verify="verify",t.updatePhone="updatePhone"}(vn||(vn={}));const bn=Je("loginId"),yn=Ke(bn,Je("code")),mn=Ke(bn),wn=Ke(bn,We("phone")),kn=Ke(bn,Fe("email")),In=t=>({verify:Object.keys(ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:yn(((e,o)=>Ue(t.post(Ae(Lt,n),{code:o,loginId:e}))))})),{}),signIn:Object.keys(ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:mn(((e,o,r)=>Ue(t.post(Ae(Nt,n),{loginId:e,loginOptions:o},{token:r}))))})),{}),signUp:Object.keys(ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:mn(((e,o)=>Ue(t.post(Ae(Kt,n),{loginId:e,user:o}))))})),{}),signUpOrIn:Object.keys(ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:mn((e=>Ue(t.post(Ae(Ft,n),{loginId:e}))))})),{}),update:{email:kn(((e,n,o)=>Ue(t.post(Jt.email,{loginId:e,email:n},{token:o})))),phone:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:wn(((e,o,r)=>Ue(t.post(Ae(Jt.phone,n),{loginId:e,phone:o},{token:r}))))})),{})}}),On=Ke(Je("tenant")),jn=Ke(Je("code")),Sn=t=>({start:On((async(e,n,{redirect:o=!1}={},r,i)=>{const s=await t.post(oe,r||{},{queryParams:{tenant:e,redirectURL:n},token:i});if(!o||!s.ok)return Ue(Promise.resolve(s));const{url:a}=await s.json();window.location.href=a})),exchange:jn((e=>Ue(t.post(re,{code:e}))))}),En=Je("loginId"),xn=Ke(En,Je("code")),_n=Ke(En),Cn=Ke(En),An=t=>({signUp:_n(((e,n)=>Ue(t.post(se,{loginId:e,user:n})))),verify:xn(((e,n,o,r)=>Ue(t.post(ie,{loginId:e,code:n,loginOptions:o},{token:r})))),update:Cn(((e,n)=>Ue(t.post(ae,{loginId:e},{token:n}))))}),Un=[Ne('"loginId" must be a string')],Rn=Je("loginId"),Pn=Je("origin"),Tn=Ke(Rn,Pn,Je("name")),qn=Ke(Rn,Pn),Mn=Ke(Un,Pn),Dn=Ke(Rn,Pn,Je("token")),$n=Ke(Je("transactionId"),Je("response")),Ln=t=>({signUp:{start:Tn(((e,n,o)=>Ue(t.post(ce.start,{user:{loginId:e,name:o},origin:n})))),finish:$n(((e,n)=>Ue(t.post(ce.finish,{transactionId:e,response:n}))))},signIn:{start:Mn(((e,n,o,r)=>Ue(t.post(le.start,{loginId:e,origin:n,loginOptions:o},{token:r})))),finish:$n(((e,n)=>Ue(t.post(le.finish,{transactionId:e,response:n}))))},signUpOrIn:{start:qn(((e,n)=>Ue(t.post(ue.start,{loginId:e,origin:n}))))},update:{start:Dn(((e,n,o)=>Ue(t.post(de.start,{loginId:e,origin:n},{token:o})))),finish:$n(((e,n)=>Ue(t.post(de.finish,{transactionId:e,response:n}))))}}),Nn=Ke(Je("token"));var Kn,Jn=Ke([("projectId",Kn=Je("projectId"),Re(((t,e)=>n=>Pe(...e).validate(Dt(n,t)))("projectId",Kn))())])((t=>{var e,n;const o=[].concat((null===(e=t.hooks)||void 0===e?void 0:e.beforeRequest)||[]),r=[].concat((null===(n=t.hooks)||void 0===n?void 0:n.afterRequest)||[]);return(({projectId:t,logger:e,baseUrl:n,hooks:o,cookiePolicy:r,baseHeaders:i={},fetch:s})=>{return a=Oe({baseUrl:n||"https://api.descope.com",projectId:t,logger:e,hooks:o,cookiePolicy:r,baseConfig:{baseHeaders:i},fetch:s}),{accessKey:Be(a),otp:In(a),magicLink:hn(a),enchantedLink:nn(a),oauth:gn(a),saml:Sn(a),totp:An(a),webauthn:Ln(a),flow:sn(a),refresh:t=>Ue(a.post(he,{},{token:t})),logout:t=>Ue(a.post(pe,{},{token:t})),logoutAll:t=>Ue(a.post(fe,{},{token:t})),me:t=>Ue(a.get(ge,{token:t})),isJwtExpired:Nn(xe),getJwtPermissions:Nn(_e),getJwtRoles:Nn(Ce),httpClient:a};var a})(Object.assign(Object.assign({},t),{hooks:{beforeRequest:t=>null==o?void 0:o.reduce(((t,e)=>e(t)),t),afterRequest:async(e,n)=>{(await Promise.allSettled(null==r?void 0:r.map((t=>t(e,null==n?void 0:n.clone()))))).forEach((e=>{var n;return"rejected"===e.status&&(null===(n=t.logger)||void 0===n?void 0:n.error(e.reason))}))}}}))}));const Fn=(t,e,n)=>(e.forEach((e=>{const o=e.split(".");let r=o.shift(),i=t;for(;o.length>0;){if(i=i[r],!r||!i)throw Error(`Invalid path "${e}", "${r}" is missing or has no value`);r=o.shift()}if("function"!=typeof i[r])throw Error(`"${e}" is not a function`);const s=i[r];i[r]=n(s)})),t);var Wn=Object.assign(Jn,{DeliveryMethods:ze});var Hn="Blocked by CSP",Bn="API key required",Vn="3.8.2",zn="9319";function Gn(t,e){var n=[];return function(t,e){var n,o,r=(o=function(t,e,n){if(n||2===arguments.length)for(var o,r=0,i=e.length;r<i;r++)!o&&r in e||(o||(o=Array.prototype.slice.call(e,0,r)),o[r]=e[r]);return t.concat(o||Array.prototype.slice.call(e))}([],t,!0),{current:function(){return o[0]},postpone:function(){var t=o.shift();void 0!==t&&o.push(t)},exclude:function(){o.shift()}}),i=(100,3e3,n=0,function(){return Math.random()*Math.min(3e3,100*Math.pow(2,n++))}),s=r.current();if(void 0===s)return Promise.reject(new TypeError("The list of script URL patterns is empty"));var a=function(t,n){return e(t).catch((function(t){if(n+1>=5)throw t;!function(t){if(!(t instanceof Error))return!1;var e=t.message;return e===Hn||e===zn}(t)?r.postpone():r.exclude();var e,o=r.current();if(void 0===o)throw t;return(e=i(),new Promise((function(t){return setTimeout(t,e)}))).then((function(){return a(o,n+1)}))}))};return a(s,0)}(t,(function(t){var o=new Date,r=function(){return n.push({url:t,startedAt:o,finishedAt:new Date})},i=e(t);return i.then(r,r),i})).then((function(t){return[t,{attempts:n}]}))}var Zn="https://fpnpmcdn.net/v<version>/<apiKey>/loader_v<loaderVersion>.js",Qn="Failed to load the JS script of the agent";function Yn(n){var o;n.scriptUrlPattern;var r=n.token,i=n.apiKey,s=void 0===i?r:i,a=e(n,["scriptUrlPattern","token","apiKey"]),c=null!==(o=function(t,e){return function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}(t,e)?t[e]:void 0}(n,"scriptUrlPattern"))&&void 0!==o?o:Zn;return Promise.resolve().then((function(){if(!s||"string"!=typeof s)throw new Error(Bn);var t=function(t,e){return(Array.isArray(t)?t:[t]).map((function(t){return function(t,e){var n=encodeURIComponent;return t.replace(/<[^<>]+>/g,(function(t){return"<version>"===t?"3":"<apiKey>"===t?n(e):"<loaderVersion>"===t?n(Vn):t}))}(String(t),e)}))}(c,s);return Gn(t,Xn).catch(eo)})).then((function(e){var n=e[0],o=e[1];return n.load(t(t({},a),{ldi:o}))}))}function Xn(t){return function(t,e,n,o){var r,i=document,s="securitypolicyviolation",a=function(e){var n=new URL(t,location.href),o=e.blockedURI;o!==n.href&&o!==n.protocol.slice(0,-1)&&o!==n.origin||(r=e,c())};i.addEventListener(s,a);var c=function(){return i.removeEventListener(s,a)};return Promise.resolve().then(e).then((function(t){return c(),t}),(function(t){return new Promise((function(t){return setTimeout(t)})).then((function(){if(c(),r)return function(){throw new Error(Hn)}();throw t}))}))}(t,(function(){return function(t){return new Promise((function(e,n){var o=document.createElement("script"),r=function(){var t;return null===(t=o.parentNode)||void 0===t?void 0:t.removeChild(o)},i=document.head||document.getElementsByTagName("head")[0];o.onload=function(){r(),e()},o.onerror=function(){r(),n(new Error(Qn))},o.async=!0,o.src=t,i.appendChild(o)}))}(t)})).then(to)}function to(){var t=window,e="__fpjs_p_l_b",n=t[e];if(function(t,e){var n,o=null===(n=Object.getOwnPropertyDescriptor)||void 0===n?void 0:n.call(Object,t,e);(null==o?void 0:o.configurable)?delete t[e]:o&&!o.writable||(t[e]=void 0)}(t,e),"function"!=typeof(null==n?void 0:n.load))throw new Error(zn);return n}function eo(t){throw t instanceof Error&&t.message===zn?new Error(Qn):t}
2
+ /*! js-cookie v3.0.1 | MIT */function no(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)t[o]=n[o]}return t}var oo=function t(e,n){function o(t,o,r){if("undefined"!=typeof document){"number"==typeof(r=no({},n,r)).expires&&(r.expires=new Date(Date.now()+864e5*r.expires)),r.expires&&(r.expires=r.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var i="";for(var s in r)r[s]&&(i+="; "+s,!0!==r[s]&&(i+="="+r[s].split(";")[0]));return document.cookie=t+"="+e.write(o,t)+i}}return Object.create({set:o,get:function(t){if("undefined"!=typeof document&&(!arguments.length||t)){for(var n=document.cookie?document.cookie.split("; "):[],o={},r=0;r<n.length;r++){var i=n[r].split("="),s=i.slice(1).join("=");try{var a=decodeURIComponent(i[0]);if(o[a]=e.read(s,a),t===a)break}catch(t){}}return t?o[t]:o}},remove:function(t,e){o(t,"",no({},e,{expires:-1}))},withAttributes:function(e){return t(this.converter,no({},this.attributes,e))},withConverter:function(e){return t(no({},this.converter,e),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(e)}})}({read:function(t){return'"'===t[0]&&(t=t.slice(1,-1)),t.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(t){return encodeURIComponent(t).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"});const ro=(t,e)=>{var n;return["beforeRequest","afterRequest"].reduce(((n,o)=>{var r;return n[o]=[].concat((null===(r=t.hooks)||void 0===r?void 0:r[o])||[]).concat((null==e?void 0:e[o])||[]),n}),null!==(n=t.hooks)&&void 0!==n?n:t.hooks={}),t},io=async t=>{if(!(null==t?void 0:t.ok))return{};const e=await(null==t?void 0:t.clone().json());return(null==e?void 0:e.authInfo)||e||{}},so=async t=>{const e=await io(t);return(null==e?void 0:e.user)||((null==e?void 0:e.hasOwnProperty("userId"))?e:void 0)},ao="undefined"!=typeof localStorage,co=(t,e)=>ao&&(null===localStorage||void 0===localStorage?void 0:localStorage.setItem(t,e)),lo=t=>ao&&(null===localStorage||void 0===localStorage?void 0:localStorage.getItem(t)),uo=t=>ao&&(null===localStorage||void 0===localStorage?void 0:localStorage.removeItem(t)),ho="undefined"!=typeof window,po=ho&&(null===localStorage||void 0===localStorage?void 0:localStorage.getItem("fingerprint.endpoint.url"))||"https://fp.descope.com",fo=(t="",e="")=>({vsid:t,vrid:e}),go=(t=!1)=>{const e=localStorage.getItem("fp");if(!e)return null;const n=JSON.parse(e);return(new Date).getTime()>n.expiry&&!t?null:n.value},vo=t=>(t.body&&(t.body.fpData=go(!0)||fo()),t),bo=()=>lo("dls_last_user_login_id"),yo=()=>lo("dls_last_user_display_name"),mo=t=>async(...e)=>{var n;e[1]=e[1]||{};const[,o={}]=e,r=bo(),i=yo();return r&&(null!==(n=o.lastAuth)&&void 0!==n||(o.lastAuth={}),o.lastAuth.loginId=r,o.lastAuth.name=i),await t(...e)},wo=t=>async(...e)=>{const n=await t(...e);return uo("dls_last_user_login_id"),uo("dls_last_user_display_name"),n};function ko(){const t=[];return{pub:e=>{t.forEach((t=>t(e)))},sub:e=>{const n=t.push(e)-1;return()=>t.splice(n,1)}}}const Io=(t={},n)=>{var{refreshJwt:o,sessionJwt:r}=t,i=e(t,["refreshJwt","sessionJwt"]);void 0===n&&(n=!1),o&&co("DSR",o),r&&(n?function(t,e,{cookiePath:n,cookieDomain:o,cookieExpiration:r}){if(e){const i=new Date(1e3*r);oo.set(t,e,{path:n,domain:o,expires:i,sameSite:"Strict",secure:!0})}}("DS",r,i):co("DS",r))};function Oo(){return lo("DSR")||""}function jo(){return oo.get("DS")||lo("DS")||""}function So(){uo("DSR"),uo("DS"),oo.remove("DS")}const Eo=t=>Object.assign(t,{token:t.token||Oo()}),xo=t=>async(...e)=>{const n=await t(...e);return So(),n};async function _o(t){const e=function(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=To(n.publicKey.challenge),n.publicKey.user.id=To(n.publicKey.user.id),null===(e=n.publicKey.excludeCredentials)||void 0===e||e.forEach((t=>{t.id=To(t.id)})),n}(t);return n=await navigator.credentials.create(e),JSON.stringify({id:n.id,rawId:qo(n.rawId),type:n.type,response:{attestationObject:qo(n.response.attestationObject),clientDataJSON:qo(n.response.clientDataJSON)}});var n}async function Co(t){const e=Ro(t);return Po(await navigator.credentials.get(e))}async function Ao(t,e){const n=Ro(t);return n.signal=e.signal,n.mediation="conditional",Po(await navigator.credentials.get(n))}async function Uo(t=!1){if(!ho)return Promise.resolve(!1);const e=!!(PublicKeyCredential&&navigator.credentials&&navigator.credentials.create&&navigator.credentials.get);return e&&t&&PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable?PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable():e}function Ro(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=To(n.publicKey.challenge),null===(e=n.publicKey.allowCredentials)||void 0===e||e.forEach((t=>{t.id=To(t.id)})),n}function Po(t){return JSON.stringify({id:t.id,rawId:qo(t.rawId),type:t.type,response:{authenticatorData:qo(t.response.authenticatorData),clientDataJSON:qo(t.response.clientDataJSON),signature:qo(t.response.signature),userHandle:t.response.userHandle?qo(t.response.userHandle):void 0}})}function To(t){const e=t.replace(/_/g,"/").replace(/-/g,"+");return Uint8Array.from(atob(e),(t=>t.charCodeAt(0))).buffer}function qo(t){return btoa(String.fromCharCode.apply(null,new Uint8Array(t))).replace(/\//g,"_").replace(/\+/g,"-").replace(/=/g,"")}var Mo,Do=(Mo=t=>({async signUp(e,n){const o=await t.webauthn.signUp.start(e,window.location.origin,n);if(!o.ok)return o;const r=await _o(o.data.options);return await t.webauthn.signUp.finish(o.data.transactionId,r)},async signIn(e){const n=await t.webauthn.signIn.start(e,window.location.origin);if(!n.ok)return n;const o=await Co(n.data.options);return await t.webauthn.signIn.finish(n.data.transactionId,o)},async signUpOrIn(e){var n;const o=await t.webauthn.signUpOrIn.start(e,window.location.origin);if(!o.ok)return o;if(null===(n=o.data)||void 0===n?void 0:n.create){const e=await _o(o.data.options);return await t.webauthn.signUp.finish(o.data.transactionId,e)}{const e=await Co(o.data.options);return await t.webauthn.signIn.finish(o.data.transactionId,e)}},async update(e,n){const o=await t.webauthn.update.start(e,window.location.origin,n);if(!o.ok)return o;const r=await _o(o.data.options);return await t.webauthn.update.finish(o.data.transactionId,r)},helpers:{create:_o,get:Co,isSupported:Uo,conditional:Ao}}),(...t)=>{const e=Mo(...t);return Object.assign(e.signUp,t[0].webauthn.signUp),Object.assign(e.signIn,t[0].webauthn.signIn),Object.assign(e.signUpOrIn,t[0].webauthn.signUpOrIn),Object.assign(e.update,t[0].webauthn.update),e}),$o=t=>Object.assign(Object.assign({},t.flow),{start:async(...e)=>{const n=await Uo(),o=Object.assign(Object.assign({redirectUrl:window.location.href},e[1]),{deviceInfo:{webAuthnSupport:n}});return e[1]=o,t.flow.start(...e)}});const Lo=function(...t){return e=>t.reduce(((t,e)=>e(t)),e)}((t=>n=>{var{fpKey:o,fpLoad:r}=n,i=e(n,["fpKey","fpLoad"]);return o?(ho?r&&(async t=>{try{if(go())return;const e=(Date.now().toString(36)+Math.random().toString(36).substring(2)+Math.random().toString(36).substring(2)).substring(0,27),n=Yn({apiKey:t,endpoint:po}),o=await n,{requestId:r}=await o.get({linkedId:e});(t=>{const e={value:t,expiry:(new Date).getTime()+864e5};localStorage.setItem("fp",JSON.stringify(e))})(fo(e,r))}catch(t){global.FB_DEBUG&&console.error(t)}})(o).catch((()=>null)):console.warn("Fingerprint is a client side only capability and will not work when running in the server"),t(ro(i,{beforeRequest:vo}))):t(Object.assign({},i))}),(t=>n=>{var o=e(n,["autoRefresh"]);const{clearAllTimers:r,setTimer:i}=(()=>{const t=[];return{clearAllTimers:()=>{for(;t.length;)clearTimeout(t.pop())},setTimer:(e,n)=>{t.push(setTimeout(e,n))}}})(),s=t(ro(o,{afterRequest:async(t,e)=>{const{refreshJwt:n,sessionJwt:o}=await io(e);if(401===(null==e?void 0:e.status))r();else if(o){const t=((a=(t=>{const e=t.split(".");try{if(3===e.length){const t=JSON.parse(window.atob(e[1]));if(t.exp)return new Date(1e3*t.exp)}}catch(t){}return null})(o))?a.getTime()-(new Date).getTime():0)-2e4;r(),i((()=>s.refresh(n)),t)}var a}}));return Fn(s,["logout","logoutAll"],(t=>async(...e)=>{const n=await t(...e);return r(),n}))}),(t=>e=>t(Object.assign(Object.assign({},e),{baseHeaders:Object.assign({"x-descope-sdk-name":"web-js","x-descope-sdk-version":"1.0.0"},e.baseHeaders)}))),(t=>e=>{const n=ko(),o=ko(),r=t(ro(e,{afterRequest:async(t,e)=>{if(401===(null==e?void 0:e.status))n.pub(null),o.pub(null);else{const t=await so(e);t&&o.pub(t);const{sessionJwt:r}=await io(e);r&&n.pub(r)}}})),i=Fn(r,["logout","logoutAll"],(t=>async(...e)=>{const r=await t(...e);return n.pub(null),o.pub(null),r}));return Object.assign(i,{onSessionTokenChange:n.sub,onUserChange:o.sub})}),(t=>e=>{const n=t(ro(e,{afterRequest:async(t,e)=>{var n;const o=await so(e),r=null===(n=null==o?void 0:o.loginIds)||void 0===n?void 0:n[0],i=null==o?void 0:o.name;r&&((t=>{co("dls_last_user_login_id",t)})(r),(t=>{co("dls_last_user_display_name",t)})(i))}}));let o=Fn(n,["flow.start"],mo);return o=Fn(o,["logout","logoutAll"],wo),Object.assign(o,{getLastUserLoginId:bo,getLastUserDisplayName:yo})}),(t=>n=>{var{persistTokens:o,sessionTokenViaCookie:r}=n,i=e(n,["persistTokens","sessionTokenViaCookie"]);if(!o||!ho)return o&&console.warn("Storing auth tokens in local storage and cookies are a client side only capabilities and will not be done when running in the server"),t(i);const s=t(ro(i,{beforeRequest:Eo,afterRequest:async(t,e)=>{401===(null==e?void 0:e.status)?So():Io(await io(e),r)}})),a=Fn(s,["logout","logoutAll"],xo);return Object.assign(a,{getRefreshToken:Oo,getSessionToken:jo})}))(((...t)=>{const e=Wn(...t);return Object.assign(Object.assign({},e),{flow:$o(e),webauthn:Do(e)})})),No=document.createElement("template");var Ko,Jo,Fo,Wo,Ho,Bo,Vo,zo,Go,Zo,Qo,Yo,Xo,tr,er,nr,or,rr,ir,sr,ar,cr,lr,ur,dr,hr,pr,fr,gr,vr,br,yr,mr,wr,kr,Ir,Or,jr;No.innerHTML='\n\t<style>\n\t\t:host {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\t\t\n\t\t#wc-root {\n\t\t\theight: 100%;\n\t\t\ttransition: opacity 300ms ease-in-out;\n\t\t}\n\n\t\t#wc-root[data-theme] {\n\t\t\tbackground-color: transparent;\n\t\t}\n\n\t\t.fade-out {\n\t\t\topacity: 0.1;\n\t\t}\n\n\t</style>\n\t<div id="wc-root"></div>\n\t';class Sr extends HTMLElement{constructor(t){super(),Ko.add(this),Jo.set(this,!1),Fo.set(this,new $),Wo.set(this,new $),this.nextRequestStatus=new $({isLoading:!1}),Ho.set(this,void 0),Bo.set(this,{popstate:o(this,Ko,"m",Yo).bind(this)}),Vo.set(this,void 0),er.set(this,R((()=>n(this,void 0,void 0,(function*(){const t=E(this.projectId,"config.json");try{const{body:e,headers:n}=yield j(t,"json");return{projectConfig:e,executionContext:{geo:n["x-geo"]}}}catch(t){this.logger.error("Cannot get config file","make sure that your projectId & flowId are correct")}}))))),this.logger={error:(t,e="")=>{console.error(t,e,new Error),o(this,Ko,"m",cr).call(this,t,e)},info:(t,e="")=>{console.log(t,e)}},r(this,Vo,t,"f"),o(this,Ko,"m",zo).call(this)}static get observedAttributes(){return["project-id","flow-id","base-url","tenant","theme","debug","telemetryKey","redirect-url","auto-focus"]}get projectId(){return this.getAttribute("project-id")}get flowId(){return this.getAttribute("flow-id")}get baseUrl(){return this.getAttribute("base-url")||void 0}get tenant(){return this.getAttribute("tenant")||void 0}get redirectUrl(){return this.getAttribute("redirect-url")||void 0}get debug(){return"true"===this.getAttribute("debug")}get theme(){var t,e;const n=this.getAttribute("theme");if("os"===n){return window.matchMedia&&(null===(e=null===(t=window.matchMedia)||void 0===t?void 0:t.call(window,"(prefers-color-scheme: dark)"))||void 0===e?void 0:e.matches)?"dark":"light"}return n||"light"}get telemetryKey(){return this.getAttribute("telemetryKey")||void 0}get autoFocus(){var t;const e=null!==(t=this.getAttribute("auto-focus"))&&void 0!==t?t:"true";return"skipFirstScreen"===e?e:"true"===e}getExecutionContext(){return n(this,void 0,void 0,(function*(){const{executionContext:t}=yield o(this,er,"f").call(this);return t}))}getFlowConfig(){var t;return n(this,void 0,void 0,(function*(){const{projectConfig:e}=yield o(this,er,"f").call(this);return(null===(t=null==e?void 0:e.flows)||void 0===t?void 0:t[this.flowId])||{}}))}connectedCallback(){return n(this,void 0,void 0,(function*(){if(this.shadowRoot.isConnected){if(o(this,Ko,"m",Go).call(this))return void o(this,Ko,"m",Zo).call(this);o(this,Ko,"m",Qo).call(this),o(this,Ko,"m",or).call(this),o(this,Ko,"m",nr).call(this),o(this,Ko,"m",lr).call(this);const{executionId:t,stepId:e,token:n,code:i,exchangeError:s}=U();window.addEventListener("popstate",o(this,Bo,"f").popstate),o(this,Fo,"f").subscribe(o(this,Ko,"m",tr).bind(this)),o(this,Wo,"f").subscribe(o(this,Ko,"m",ar).bind(this)),o(this,Fo,"f").update({projectId:this.projectId,flowId:this.flowId,baseUrl:this.baseUrl,tenant:this.tenant,redirectUrl:this.redirectUrl,stepId:e,executionId:t,token:n,code:i,exchangeError:s,telemetryKey:this.telemetryKey}),o(this,Wo,"f").update({isDebug:this.debug}),r(this,Jo,!0,"f")}}))}disconnectedCallback(){o(this,Fo,"f").unsubscribeAll(),o(this,Wo,"f").unsubscribeAll(),o(this,Ko,"m",sr).call(this),window.removeEventListener("popstate",o(this,Bo,"f").popstate)}attributeChangedCallback(t,e,n){if(this.shadowRoot.isConnected&&o(this,Jo,"f")&&e!==n&&Sr.observedAttributes.includes(t)){o(this,Ko,"m",Qo).call(this);const r=null===e;o(this,Fo,"f").update((({stepId:e,executionId:o})=>{let i=e,s=o;return r||(s=null,i=null,C()),{[A(t)]:n,stepId:i,executionId:s}})),o(this,Wo,"f").update({isDebug:this.debug})}}}Jo=new WeakMap,Fo=new WeakMap,Wo=new WeakMap,Ho=new WeakMap,Bo=new WeakMap,Vo=new WeakMap,er=new WeakMap,Ko=new WeakSet,zo=function(){this.attachShadow({mode:"open"}),this.shadowRoot.appendChild(No.content.cloneNode(!0)),this.rootElement=this.shadowRoot.querySelector("#wc-root")},Go=function(){const t=/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor);return!this.shadowRoot.host.closest("form")&&t},Zo=function(){const t=this.shadowRoot.host,e=document.createElement("form");t.parentElement.appendChild(e),e.appendChild(t)},Qo=function(){const t=["base-url","tenant","theme","debug","telemetryKey","redirect-url","auto-focus"];if(Sr.observedAttributes.forEach((e=>{if(!t.includes(e)&&!this[A(e)])throw Error(`${e} cannot be empty`)})),this.theme&&"light"!==this.theme&&"dark"!==this.theme)throw Error('Supported theme values are "light", "dark", or leave empty for using the OS theme')},Yo=function(){const{stepId:t,executionId:e}=_();o(this,Fo,"f").update({stepId:t,executionId:e})},Xo=function(t,e,o){const r=o||void 0,i=!!r;this.sdk=Lo(Object.assign(Object.assign({},Sr.sdkConfigOverrides),{projectId:t,baseUrl:e,fpKey:r,fpLoad:i,persistTokens:!0})),["start","next"].forEach((t=>{const e=this.sdk.flow[t];this.sdk.flow[t]=(...t)=>n(this,void 0,void 0,(function*(){this.nextRequestStatus.update({isLoading:!0});try{return yield e(...t)}finally{this.nextRequestStatus.update({isLoading:!1})}}))}))},tr=function(t,e,r){return n(this,void 0,void 0,(function*(){const{projectId:e,baseUrl:n,telemetryKey:i}=t;if(r("projectId")||r("baseUrl")||r("telemetryKey")){if(!e)return;o(this,Ko,"m",Xo).call(this,e,n,i)}o(this,Vo,"f").call(this,t)}))},nr=function(){var t,e,r,i;return n(this,void 0,void 0,(function*(){const{projectConfig:n}=yield o(this,er,"f").call(this);null===(i=null===(r=null===(e=null===(t=null==n?void 0:n.cssTemplate)||void 0===t?void 0:t[this.theme])||void 0===e?void 0:e.typography)||void 0===r?void 0:r.fontFamilies)||void 0===i||i.forEach((t=>(t=>{if(!t)return;const e=document.createElement("link");e.href=t,e.rel="stylesheet",document.head.appendChild(e)})(t.url)))}))},or=function(){o(this,Ko,"m",rr).call(this),o(this,Ko,"m",ir).call(this)},rr=function(){return n(this,void 0,void 0,(function*(){const t=document.createElement("style"),e=E(this.projectId,"theme.css");try{const{body:n}=yield j(e,"text");t.innerText=n}catch(t){this.logger.error("Cannot fetch theme file","make sure that your projectId & flowId are correct")}this.shadowRoot.appendChild(t)}))},ir=function(){this.rootElement.setAttribute("data-theme",this.theme)},sr=function(){var t;null===(t=o(this,Ho,"f"))||void 0===t||t.remove(),r(this,Ho,null,"f")},ar=function({isDebug:t}){return n(this,void 0,void 0,(function*(){t?(yield import("./debugger-wc-c0e89065.js"),r(this,Ho,document.createElement("descope-debugger"),"f"),Object.assign(o(this,Ho,"f").style,{position:"fixed",top:"0",right:"0",height:"100vh",width:"100vw",pointerEvents:"none",zIndex:99999}),document.body.appendChild(o(this,Ho,"f"))):o(this,Ko,"m",sr).call(this)}))},cr=function(t,e){var n;t&&this.debug&&(null===(n=o(this,Ho,"f"))||void 0===n||n.updateData({title:t,description:e}))},lr=function(){this.rootElement.onkeydown=t=>{if("Enter"!==t.key)return;t.preventDefault();const e=this.rootElement.querySelectorAll("button");if(1===e.length)return void e[0].click();const n=Array.from(e).filter((t=>"button"===t.getAttribute("data-type")));1===n.length&&n[0].click()}},Sr.sdkConfigOverrides={baseHeaders:{"x-descope-sdk-name":"web-component","x-descope-sdk-version":"2.0.1"}};class Er extends Sr{constructor(){const t=new $;super(t.update.bind(t)),ur.add(this),this.stepState=new $({},{updateOnlyOnChange:!1}),dr.set(this,void 0),hr.set(this,null),pr.set(this,(()=>{clearInterval(o(this,dr,"f")),r(this,dr,null,"f")})),fr.set(this,(t=>{var e,n,r,s,a,c,l,u,d;if(!(null==t?void 0:t.ok)){o(this,pr,"f").call(this),o(this,ur,"m",jr).call(this,"error",null==t?void 0:t.error);const i=null===(e=null==t?void 0:t.response)||void 0===e?void 0:e.url,c=`${null===(n=null==t?void 0:t.response)||void 0===n?void 0:n.status} - ${null===(r=null==t?void 0:t.response)||void 0===r?void 0:r.statusText}`;return void this.logger.error((null===(s=null==t?void 0:t.error)||void 0===s?void 0:s.errorDescription)||i,(null===(a=null==t?void 0:t.error)||void 0===a?void 0:a.errorMessage)||c)}const p=null===(u=null===(l=null===(c=t.data)||void 0===c?void 0:c.screen)||void 0===l?void 0:l.state)||void 0===u?void 0:u.errorText;p&&this.logger.error(p),(null===(d=t.data)||void 0===d?void 0:d.error)&&this.logger.error(`[${t.data.error.code}]: ${t.data.error.description}`,t.data.error.message);const{status:f,authInfo:v,lastAuth:b}=t.data;if("completed"===f)return function(t){(null==t?void 0:t.authMethod)&&i&&localStorage.setItem(h,JSON.stringify(t))}(b),o(this,pr,"f").call(this),void o(this,ur,"m",jr).call(this,"success",v);const{executionId:y,stepId:m,action:w,screen:k,redirect:I,webauthn:O}=t.data;w!==g?this.flowState.update({stepId:m,executionId:y,action:w,redirectTo:null==I?void 0:I.url,screenId:null==k?void 0:k.id,screenState:null==k?void 0:k.state,webauthnTransactionId:null==O?void 0:O.transactionId,webauthnOptions:null==O?void 0:O.options}):this.flowState.update({action:w})})),gr.set(this,R((()=>n(this,void 0,void 0,(function*(){var t;try{const e=yield this.sdk.webauthn.signIn.start("",window.location.origin);return e.ok||this.logger.error("Webauthn start failed",null===(t=null==e?void 0:e.error)||void 0===t?void 0:t.errorMessage),e.data}catch(t){this.logger.error("Webauthn start failed",t.message)}}))))),this.flowState=t}static set sdkConfigOverrides(t){Sr.sdkConfigOverrides=t}connectedCallback(){const t=Object.create(null,{connectedCallback:{get:()=>super.connectedCallback}});var e,o;return n(this,void 0,void 0,(function*(){this.shadowRoot.isConnected&&(null===(e=this.flowState)||void 0===e||e.subscribe(this.onFlowChange.bind(this)),null===(o=this.stepState)||void 0===o||o.subscribe(this.onStepChange.bind(this))),yield t.connectedCallback.call(this)}))}disconnectedCallback(){super.disconnectedCallback(),this.flowState.unsubscribeAll(),this.stepState.unsubscribeAll()}onFlowChange(t,e,i){var s;return n(this,void 0,void 0,(function*(){const{projectId:a,flowId:c,tenant:l,stepId:u,executionId:d,action:p,screenId:y,screenState:k,redirectTo:I,redirectUrl:O,token:j,code:S,exchangeError:_,webauthnTransactionId:C,webauthnOptions:A}=t;let U,R;o(this,dr,"f")&&o(this,pr,"f").call(this);const P=this.sdk.getLastUserLoginId();if(!d){if(!c)return;const t=yield this.getFlowConfig();if(({startScreenId:U=t.startScreenId,conditionInteractionId:R}=((t,e)=>{if(t&&"not-empty"===t.operator){const n=e?t.met:t.unmet;return{startScreenId:null==n?void 0:n.screenId,conditionInteractionId:null==n?void 0:n.interactionId}}return{}})(t.condition,P)),!U){const t=yield this.sdk.flow.start(c,Object.assign({tenant:l},O&&{redirectUrl:O}));return void o(this,fr,"f").call(this,t)}}if(i("token")&&j||i("code")&&S||i("exchangeError")&&_){const t=yield this.sdk.flow.next(d,u,m,{token:j,exchangeCode:S,exchangeError:_});return o(this,fr,"f").call(this,t),void this.flowState.update({token:void 0,code:void 0,exchangeError:void 0})}if(p===f)return I||this.logger.error("Did not get redirect url"),void window.location.assign(I);if(p===v||p===b){if(!C||!A)return void this.logger.error("Did not get webauthn transaction id or options");let t,e;null===(s=o(this,hr,"f"))||void 0===s||s.abort(),r(this,hr,null,"f");try{t=p===v?yield this.sdk.webauthn.helpers.create(A):yield this.sdk.webauthn.helpers.get(A)}catch(t){if("NotAllowedError"!==t.name)return void this.logger.error(t.message);e=!0}const n=yield this.sdk.flow.next(d,u,m,{transactionId:C,response:t,cancelWebauthn:e});o(this,fr,"f").call(this,n)}if(p===g&&r(this,dr,setInterval((()=>n(this,void 0,void 0,(function*(){const t=yield this.sdk.flow.next(d,u,w,{});o(this,fr,"f").call(this,t)}))),2e3),"f"),!y&&!U)return void this.logger.info("Refreshing the page during a flow is not supported yet");const T={direction:x(+u,+e.stepId),screenState:Object.assign(Object.assign({},k),{lastAuth:{loginId:P,name:this.sdk.getLastUserDisplayName()||P}}),htmlUrl:E(a,`${U||y}.html`)},q=function(t){const e={};if(t)try{Object.assign(e,JSON.parse(localStorage.getItem(h)))}catch(t){}return e}(P);U?T.next=(...t)=>this.sdk.flow.start(c,{tenant:l,lastAuth:q},R,...t):(i("projectId")||i("baseUrl")||i("executionId")||i("stepId"))&&(T.next=(...t)=>this.sdk.flow.next(d,u,...t)),this.stepState.update(T)}))}onStepChange(t,e){var r;return n(this,void 0,void 0,(function*(){const{htmlUrl:i,direction:s,next:a,screenState:c}=t,l=document.createElement("template"),{body:u}=yield j(i,"text");l.innerHTML=u;const d=l.content.cloneNode(!0),h=((t,e)=>{var n;const o=Array.from(t.querySelectorAll("script[data-id]")).map((n=>{var o;const r=n.getAttribute("data-id"),i=null===(o=t.getElementById(r))||void 0===o?void 0:o.innerHTML,s=Function(i).bind(n.previousSibling,e);return n.remove(),s}));return null===(n=t.querySelector("scripts"))||void 0===n||n.remove(),o})(d,yield this.getExecutionContext());this.sdk.webauthn.helpers.isSupported()?yield o(this,ur,"m",br).call(this,d,a):d.querySelectorAll(`button[${p}="biometrics"]`).forEach((t=>t.setAttribute("disabled","true"))),L(d,c),((t,e)=>{var n;e&&(null===(n=null==t?void 0:t.style)||void 0===n||n.setProperty("--totp-image",`url(data:image/jpg;base64,${e})`))})(d.querySelector("div"),null===(r=null==c?void 0:c.totp)||void 0===r?void 0:r.image);const f=()=>n(this,void 0,void 0,(function*(){try{h.forEach((t=>{t()}))}catch(t){this.logger.error(t.message)}this.rootElement.replaceChildren(d);const t=!e.htmlUrl;((t,e,n)=>{if(!0===e||"skipFirstScreen"===e&&!n){const e=t.querySelector('input:not([aria-hidden="true"])');null==e||e.focus()}})(this.rootElement,this.autoFocus,t),o(this,ur,"m",Ir).call(this,a),o(this,ur,"m",jr).call(this,"page-updated",{});if(this.rootElement.querySelector(`[${p}="polling"]`)){const t=yield a(w,{});o(this,fr,"f").call(this,t)}}));s?o(this,ur,"m",Or).call(this,f,s):f()}))}}dr=new WeakMap,hr=new WeakMap,pr=new WeakMap,fr=new WeakMap,gr=new WeakMap,ur=new WeakSet,vr=function(t){const e=t.name;if(!["email"].includes(e)){const n=`user-${e}`;t.name=n,t.addEventListener("input",(()=>{t.name=t.value?e:n}))}},br=function(t,e){var i;return n(this,void 0,void 0,(function*(){null===(i=o(this,hr,"f"))||void 0===i||i.abort();const s=t.querySelector('input[autocomplete="webauthn"]');if(s&&(yield N())){const{options:t,transactionId:i}=(yield o(this,gr,"f").call(this))||{};t&&i&&(o(this,ur,"m",vr).call(this,s),r(this,hr,new AbortController,"f"),this.sdk.webauthn.helpers.conditional(t,o(this,hr,"f")).then((t=>n(this,void 0,void 0,(function*(){const n=yield e(s.id,{transactionId:i,response:t});o(this,fr,"f").call(this,n)})))).catch((t=>{"AbortError"!==t.name&&this.logger.error("Conditional login failed",t.message)})))}}))},yr=function(){return Array.from(this.shadowRoot.querySelectorAll(".descope-input")).every((t=>(t.reportValidity(),t.checkValidity())))},mr=function(){return Array.from(this.shadowRoot.querySelectorAll(`*[name]:not([${d}])`)).reduce(((t,e)=>e.name?Object.assign(t,{[e.name]:e.value}):t),{})},wr=function(t){const e=this.nextRequestStatus.subscribe((({isLoading:n})=>{var o,r;n?null===(o=null==t?void 0:t.classList)||void 0===o||o.add("loading"):(this.nextRequestStatus.unsubscribe(e),null===(r=null==t?void 0:t.classList)||void 0===r||r.remove("loading"))}))},kr=function(t,e){return n(this,void 0,void 0,(function*(){if(t.formNoValidate||o(this,ur,"m",yr).call(this)){const r=null==t?void 0:t.getAttribute("id");o(this,ur,"m",wr).call(this,t);const i=o(this,ur,"m",mr).call(this),s=(n=t,Array.from((null==n?void 0:n.attributes)||[]).reduce(((t,e)=>{var n;const o=null===(n=new RegExp("^data-descope-(\\S+)$").exec(e.name))||void 0===n?void 0:n[1];return o?Object.assign(t,{[o]:e.value}):t}),{})),a=Object.assign(Object.assign(Object.assign({},s),i),{origin:window.location.origin}),c=yield e(r,a);o(this,fr,"f").call(this,c)}var n}))},Ir=function(t){this.rootElement.querySelectorAll("button").forEach((e=>{e.onclick=()=>{o(this,ur,"m",kr).call(this,e,t)}}))},Or=function(t,e){this.rootElement.addEventListener("transitionend",(()=>{this.rootElement.classList.remove("fade-out"),t()}),{once:!0});const n=e===k.forward?"slide-forward":"slide-backward";Array.from(this.rootElement.getElementsByClassName("input-container")).forEach(((t,e)=>{t.style["transition-delay"]=40*e+"ms",t.classList.add(n)})),this.rootElement.classList.add("fade-out")},jr=function(t,e){this.dispatchEvent(new CustomEvent(t,{detail:e}))},customElements.define("descope-wc",Er);export{Er as D,$ as S,o as _,r as a};
@@ -0,0 +1 @@
1
+ export{D as default}from"./index-e76ada1f.js";
@@ -0,0 +1,116 @@
1
+ import createSdk from '@descope/web-js-sdk';
2
+
3
+ declare type SdkConfig = Parameters<typeof createSdk>[0];
4
+ declare type Sdk = ReturnType<typeof createSdk>;
5
+ declare type SdkFlowNext = Sdk['flow']['next'];
6
+ declare type OmitFirstArg<F> = F extends (x: any, ...args: infer P) => infer R ? (...args: P) => R : never;
7
+ declare enum Direction {
8
+ backward = "backward",
9
+ forward = "forward"
10
+ }
11
+ interface LastAuthState {
12
+ loginId?: string;
13
+ name?: string;
14
+ }
15
+ interface ScreenState {
16
+ errorText?: string;
17
+ inputs?: Record<string, string>;
18
+ lastAuth?: LastAuthState;
19
+ totp?: {
20
+ image?: string;
21
+ provisionUrl?: string;
22
+ };
23
+ }
24
+ declare type FlowState = {
25
+ flowId: string;
26
+ projectId: string;
27
+ baseUrl: string;
28
+ tenant: string;
29
+ stepId: string;
30
+ executionId: string;
31
+ action: string;
32
+ redirectTo: string;
33
+ redirectUrl: string;
34
+ screenId: string;
35
+ screenState: ScreenState;
36
+ token: string;
37
+ code: string;
38
+ exchangeError: string;
39
+ webauthnTransactionId: string;
40
+ webauthnOptions: string;
41
+ telemetryKey: string;
42
+ };
43
+ declare type StepState = {
44
+ screenState: ScreenState;
45
+ htmlUrl: string;
46
+ next: NextFn;
47
+ direction: Direction | undefined;
48
+ };
49
+ declare type NextFn = OmitFirstArg<OmitFirstArg<SdkFlowNext>>;
50
+ declare type FlowStateUpdateFn = (state: FlowState) => void;
51
+ declare type AutoFocusOptions = true | false | 'skipFirstScreen';
52
+ declare type ThemeOptions = 'light' | 'dark' | 'os';
53
+
54
+ declare const createIsChanged: <T extends Record<string, any>>(state: T, prevState: T) => (attrName: keyof T) => boolean;
55
+
56
+ declare type StateObject = Record<string, any>;
57
+ declare type SubscribeCb<T> = (state: T, prevState: T, isChanged: ReturnType<typeof createIsChanged>) => void | Promise<void>;
58
+ declare type UpdateStateCb<T> = (state: T) => Partial<T>;
59
+ declare type IsChanged<T> = Parameters<SubscribeCb<T>>[2];
60
+ declare class State<T extends StateObject> {
61
+ #private;
62
+ constructor(init?: T, { updateOnlyOnChange }?: {
63
+ updateOnlyOnChange?: boolean;
64
+ });
65
+ get current(): T;
66
+ update: (newState: Partial<T> | UpdateStateCb<T>) => void;
67
+ subscribe(cb: SubscribeCb<T>): string;
68
+ unsubscribe(token: string): boolean;
69
+ unsubscribeAll(): boolean;
70
+ }
71
+
72
+ declare class BaseDescopeWc extends HTMLElement {
73
+ #private;
74
+ static get observedAttributes(): string[];
75
+ static sdkConfigOverrides: Partial<SdkConfig>;
76
+ nextRequestStatus: State<{
77
+ isLoading: boolean;
78
+ }>;
79
+ rootElement: HTMLDivElement;
80
+ sdk: ReturnType<typeof createSdk>;
81
+ constructor(updateExecState: FlowStateUpdateFn);
82
+ get projectId(): string;
83
+ get flowId(): string;
84
+ get baseUrl(): string;
85
+ get tenant(): string;
86
+ get redirectUrl(): string;
87
+ get debug(): boolean;
88
+ get theme(): ThemeOptions;
89
+ get telemetryKey(): string;
90
+ get autoFocus(): AutoFocusOptions;
91
+ getExecutionContext(): Promise<{
92
+ geo: string;
93
+ }>;
94
+ getFlowConfig(): Promise<any>;
95
+ logger: {
96
+ error: (message: string, description?: string) => void;
97
+ info: (message: string, description?: string) => void;
98
+ };
99
+ connectedCallback(): Promise<void>;
100
+ disconnectedCallback(): void;
101
+ attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
102
+ }
103
+
104
+ declare class DescopeWc extends BaseDescopeWc {
105
+ #private;
106
+ static set sdkConfigOverrides(config: Partial<SdkConfig>);
107
+ flowState: State<FlowState>;
108
+ stepState: State<StepState>;
109
+ constructor();
110
+ connectedCallback(): Promise<void>;
111
+ disconnectedCallback(): void;
112
+ onFlowChange(currentState: FlowState, prevState: FlowState, isChanged: IsChanged<FlowState>): Promise<void>;
113
+ onStepChange(currentState: StepState, prevState: StepState): Promise<void>;
114
+ }
115
+
116
+ export { AutoFocusOptions, ThemeOptions, DescopeWc as default };
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ !function(){"use strict";var t=function(){return t=Object.assign||function(t){for(var e,n=1,o=arguments.length;n<o;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},t.apply(this,arguments)};function e(t,e){var n={};for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e.indexOf(o)<0&&(n[o]=t[o]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(o=Object.getOwnPropertySymbols(t);i<o.length;i++)e.indexOf(o[i])<0&&Object.prototype.propertyIsEnumerable.call(t,o[i])&&(n[o[i]]=t[o[i]])}return n}function n(t,e,n,o){return new(n||(n=Promise))((function(i,r){function s(t){try{l(o.next(t))}catch(t){r(t)}}function a(t){try{l(o.throw(t))}catch(t){r(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(s,a)}l((o=o.apply(t,e||[])).next())}))}function o(t,e,n,o){if("a"===n&&!o)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===n?o:"a"===n?o.call(t):o?o.value:e.get(t)}function i(t,e,n,o,i){if("m"===o)throw new TypeError("Private method is not writable");if("a"===o&&!i)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!i:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===o?i.call(t,n):i?i.value=n:e.set(t,n),n}const r="undefined"!=typeof localStorage,s=r&&localStorage.getItem("base.content.url")||"https://static.descope.com/pages",a="descope-login-flow",l="t",c="code",u="err",d="data-exclude-field",h="dls_last_auth",p="data-type",f="redirect",g="poll",v="webauthnCreate",m="webauthnGet",b="v2-alpha",w="submit",y="polling";var k;function I(t){return new URLSearchParams(window.location.search).get(t)}function x(t){if(window.history.replaceState&&I(t)){const e=new URL(window.location.href),n=new URLSearchParams(e.search);n.delete(t),e.search=n.toString(),window.history.replaceState({},"",e.toString())}}function O(t,e){return n(this,void 0,void 0,(function*(){const n=yield fetch(t,{cache:"default"});if(!n.ok)throw Error(`Error fetching URL ${t}`);return{body:yield n[e||"text"](),headers:Object.fromEntries(n.headers.entries())}}))}!function(t){t.backward="backward",t.forward="forward"}(k||(k={}));const j=(...t)=>t.join("/").replace(/\/+/g,"/");function S(t,e){const n=new URL(s);return n.pathname=j(n.pathname,t,b,e),n.toString()}function C(t,e){if(!Number.isNaN(t)&&!Number.isNaN(e))return t>e?k.forward:t<e?k.backward:void 0}const E=()=>{const[t="",e=""]=(I(a)||"").split("_");return{executionId:t,stepId:e}};function _(){x(a)}const A=t=>t.replace(/-./g,(t=>t[1].toUpperCase())),U=()=>{const{executionId:t,stepId:e}=E();(t||e)&&_();const n=I(l)||void 0;n&&x(l);const o=I(c)||void 0;o&&x(c);const i=I(u)||void 0;return i&&x(u),{executionId:t,stepId:e,token:n,code:o,exchangeError:i}},R=t=>{let e,n;return(...o)=>{return e&&(r=o,(i=e).length===r.length&&i.every(((t,e)=>t===r[e])))||(e=o,n=t(...o)),n;var i,r}};var P,T,L,M;function q(t,e){const n=Object.getOwnPropertyNames(t),o=Object.getOwnPropertyNames(e);if(n.length!==o.length)return!1;for(let o=0;o<n.length;o+=1){const i=n[o],r=t[i],s=e[i];if("object"==typeof r&&"object"==typeof s){if(!q(r,s))return!1}else if(r!==s)return!1}return!0}class ${constructor(t={},{updateOnlyOnChange:e=!0}={}){P.set(this,void 0),T.set(this,{}),L.set(this,0),M.set(this,!1),this.update=t=>{const e="function"==typeof t?t(o(this,P,"f")):t,n=Object.assign(Object.assign({},o(this,P,"f")),e);if(!o(this,M,"f")||!q(o(this,P,"f"),n)){const t=o(this,P,"f");i(this,P,n,"f"),Object.freeze(o(this,P,"f")),setTimeout((()=>{Object.values(o(this,T,"f")).forEach((e=>e(n,t,((t,e)=>n=>t[n]!==e[n])(n,t))))}),0)}},i(this,P,t,"f"),i(this,M,e,"f")}get current(){return Object.assign({},o(this,P,"f"))}subscribe(t){return i(this,L,o(this,L,"f")+1,"f"),o(this,T,"f")[o(this,L,"f")]=t,o(this,L,"f").toString()}unsubscribe(t){const e=!!o(this,T,"f")[t];return e&&delete o(this,T,"f")[t],e}unsubscribeAll(){return i(this,T,{},"f"),!0}}P=new WeakMap,T=new WeakMap,L=new WeakMap,M=new WeakMap;const D=(t,e)=>{var n;((t,e,n="")=>{t.querySelectorAll(`[${p}="${e}"]`).forEach((t=>{t.textContent=n,t.classList[n?"remove":"add"]("hide")}))})(t,"error-message",null==e?void 0:e.errorText),((t,e)=>{Object.entries(e||{}).forEach((([e,n])=>{Array.from(t.querySelectorAll(`.descope-input[name="${e}"]:not([${d}])`)).forEach((t=>{t.value=n}))}))})(t,null==e?void 0:e.inputs),((t,e)=>{t.querySelectorAll(`[${p}="totp-link"]`).forEach((t=>{t.href=e}))})(t,null===(n=null==e?void 0:e.totp)||void 0===n?void 0:n.provisionUrl),((t,e)=>{t.querySelectorAll(".descope-text,.descope-link").forEach((t=>{t.textContent=((t,e)=>t.replace(/{{(.+?)}}/g,((t,n)=>{return o=e,n.split(".").reduce(((t,e)=>(null==t?void 0:t[e])||""),o);var o})))(t.textContent,e)}))})(t,e)},N=R((()=>n(void 0,void 0,void 0,(function*(){if(!window.PublicKeyCredential||!PublicKeyCredential.isConditionalMediationAvailable||!PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable)return console.warn("webauthn","Conditional UI is not supported"),!1;try{return(yield Promise.all([PublicKeyCredential.isConditionalMediationAvailable(),PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()])).every((t=>!!t))}catch(t){return console.warn("webauthn","Conditional login check failed",t),!1}})))),W=(t,e,n,o={})=>{var i,r,s,a;return[Math.min(Math.max(e,("all"===o.left?t.offsetWidth:null!==(i=o.left)&&void 0!==i?i:0)-t.offsetWidth),window.innerWidth-("all"===o.right?t.offsetWidth:null!==(r=o.right)&&void 0!==r?r:0)),Math.min(Math.max(n,("all"===o.top?t.offsetHeight:null!==(s=o.top)&&void 0!==s?s:0)-t.offsetHeight),window.innerHeight-("all"===o.bottom?t.offsetHeight:null!==(a=o.bottom)&&void 0!==a?a:0))]};function F(t){this.message=t}F.prototype=new Error,F.prototype.name="InvalidCharacterError";var K="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(t){var e=String(t).replace(/=+$/,"");if(e.length%4==1)throw new F("'atob' failed: The string to be decoded is not correctly encoded.");for(var n,o,i=0,r=0,s="";o=e.charAt(r++);~o&&(n=i%4?64*n+o:o,i++%4)?s+=String.fromCharCode(255&n>>(-2*i&6)):0)o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(o);return s};function J(t){this.message=t}function H(t,e){if("string"!=typeof t)throw new J("Invalid token specified");var n=!0===(e=e||{}).header?0:1;try{return JSON.parse(function(t){var e=t.replace(/-/g,"+").replace(/_/g,"/");switch(e.length%4){case 0:break;case 2:e+="==";break;case 3:e+="=";break;default:throw"Illegal base64url string!"}try{return function(t){return decodeURIComponent(K(t).replace(/(.)/g,(function(t,e){var n=e.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n="0"+n),"%"+n})))}(e)}catch(t){return K(e)}}(t.split(".")[n]))}catch(t){throw new J("Invalid token specified: "+t.message)}}J.prototype=new Error,J.prototype.name="InvalidTokenError";var z="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},B="Expected a function",V="__lodash_hash_undefined__",Z=1/0,G="[object Function]",X="[object GeneratorFunction]",Y="[object Symbol]",Q=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,tt=/^\w*$/,et=/^\./,nt=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ot=/\\(\\)?/g,it=/^\[object .+?Constructor\]$/,rt="object"==typeof z&&z&&z.Object===Object&&z,st="object"==typeof self&&self&&self.Object===Object&&self,at=rt||st||Function("return this")();var lt,ct=Array.prototype,ut=Function.prototype,dt=Object.prototype,ht=at["__core-js_shared__"],pt=(lt=/[^.]+$/.exec(ht&&ht.keys&&ht.keys.IE_PROTO||""))?"Symbol(src)_1."+lt:"",ft=ut.toString,gt=dt.hasOwnProperty,vt=dt.toString,mt=RegExp("^"+ft.call(gt).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),bt=at.Symbol,wt=ct.splice,yt=Ut(at,"Map"),kt=Ut(Object,"create"),It=bt?bt.prototype:void 0,xt=It?It.toString:void 0;function Ot(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var o=t[e];this.set(o[0],o[1])}}function jt(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var o=t[e];this.set(o[0],o[1])}}function St(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var o=t[e];this.set(o[0],o[1])}}function Ct(t,e){for(var n,o,i=t.length;i--;)if((n=t[i][0])===(o=e)||n!=n&&o!=o)return i;return-1}function Et(t,e){var n;e=function(t,e){if(Lt(t))return!1;var n=typeof t;if("number"==n||"symbol"==n||"boolean"==n||null==t||qt(t))return!0;return tt.test(t)||!Q.test(t)||null!=e&&t in Object(e)}(e,t)?[e]:Lt(n=e)?n:Rt(n);for(var o=0,i=e.length;null!=t&&o<i;)t=t[Pt(e[o++])];return o&&o==i?t:void 0}function _t(t){if(!Mt(t)||(e=t,pt&&pt in e))return!1;var e,n=function(t){var e=Mt(t)?vt.call(t):"";return e==G||e==X}(t)||function(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}(t)?mt:it;return n.test(function(t){if(null!=t){try{return ft.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}function At(t,e){var n,o,i=t.__data__;return("string"==(o=typeof(n=e))||"number"==o||"symbol"==o||"boolean"==o?"__proto__"!==n:null===n)?i["string"==typeof e?"string":"hash"]:i.map}function Ut(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return _t(n)?n:void 0}Ot.prototype.clear=function(){this.__data__=kt?kt(null):{}},Ot.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},Ot.prototype.get=function(t){var e=this.__data__;if(kt){var n=e[t];return n===V?void 0:n}return gt.call(e,t)?e[t]:void 0},Ot.prototype.has=function(t){var e=this.__data__;return kt?void 0!==e[t]:gt.call(e,t)},Ot.prototype.set=function(t,e){return this.__data__[t]=kt&&void 0===e?V:e,this},jt.prototype.clear=function(){this.__data__=[]},jt.prototype.delete=function(t){var e=this.__data__,n=Ct(e,t);return!(n<0)&&(n==e.length-1?e.pop():wt.call(e,n,1),!0)},jt.prototype.get=function(t){var e=this.__data__,n=Ct(e,t);return n<0?void 0:e[n][1]},jt.prototype.has=function(t){return Ct(this.__data__,t)>-1},jt.prototype.set=function(t,e){var n=this.__data__,o=Ct(n,t);return o<0?n.push([t,e]):n[o][1]=e,this},St.prototype.clear=function(){this.__data__={hash:new Ot,map:new(yt||jt),string:new Ot}},St.prototype.delete=function(t){return At(this,t).delete(t)},St.prototype.get=function(t){return At(this,t).get(t)},St.prototype.has=function(t){return At(this,t).has(t)},St.prototype.set=function(t,e){return At(this,t).set(t,e),this};var Rt=Tt((function(t){var e;t=null==(e=t)?"":function(t){if("string"==typeof t)return t;if(qt(t))return xt?xt.call(t):"";var e=t+"";return"0"==e&&1/t==-Z?"-0":e}(e);var n=[];return et.test(t)&&n.push(""),t.replace(nt,(function(t,e,o,i){n.push(o?i.replace(ot,"$1"):e||t)})),n}));function Pt(t){if("string"==typeof t||qt(t))return t;var e=t+"";return"0"==e&&1/t==-Z?"-0":e}function Tt(t,e){if("function"!=typeof t||e&&"function"!=typeof e)throw new TypeError(B);var n=function(){var o=arguments,i=e?e.apply(this,o):o[0],r=n.cache;if(r.has(i))return r.get(i);var s=t.apply(this,o);return n.cache=r.set(i,s),s};return n.cache=new(Tt.Cache||St),n}Tt.Cache=St;var Lt=Array.isArray;function Mt(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function qt(t){return"symbol"==typeof t||function(t){return!!t&&"object"==typeof t}(t)&&vt.call(t)==Y}var $t=function(t,e,n){var o=null==t?void 0:Et(t,e);return void 0===o?n:o},Dt="/v1/auth/accesskey/exchange",Nt="/v1/auth/otp/verify",Wt="/v1/auth/otp/signin",Ft="/v1/auth/otp/signup",Kt={email:"/v1/auth/otp/update/email",phone:"/v1/auth/otp/update/phone"},Jt="/v1/auth/otp/signup-in",Ht="/v1/auth/magiclink/verify",zt="/v1/auth/magiclink/signin",Bt="/v1/auth/magiclink/signup",Vt={email:"/v1/auth/magiclink/update/email",phone:"/v1/auth/magiclink/update/phone"},Zt="/v1/auth/magiclink/signup-in",Gt="/v1/auth/enchantedlink/verify",Xt="/v1/auth/enchantedlink/signin",Yt="/v1/auth/enchantedlink/signup",Qt="/v1/auth/enchantedlink/pending-session",te={email:"/v1/auth/enchantedlink/update/email"},ee="/v1/auth/enchantedlink/signup-in",ne="/v1/auth/oauth/authorize",oe="/v1/auth/oauth/exchange",ie="/v1/auth/saml/authorize",re="/v1/auth/saml/exchange",se="/v1/auth/totp/verify",ae="/v1/auth/totp/signup",le="/v1/auth/totp/update",ce={start:"/v1/auth/webauthn/signup/start",finish:"/v1/auth/webauthn/signup/finish"},ue={start:"/v1/auth/webauthn/signin/start",finish:"/v1/auth/webauthn/signin/finish"},de={start:"/v1/auth/webauthn/signup-in/start"},he={start:"v1/auth/webauthn/update/start",finish:"/v1/auth/webauthn/update/finish"},pe="/v1/auth/refresh",fe="/v1/auth/logout",ge="/v1/auth/logoutall",ve="/v1/auth/me",me="/v1/flow/start",be="/v1/flow/next";const we=()=>{const t={};return{headers(e){const n="function"==typeof e.entries?Object.fromEntries(e.entries()):e;return t.Headers=JSON.stringify(n),this},body(e){return t.Body=e,this},url(e){return t.Url=e.toString(),this},method(e){return t.Method=e,this},title(e){return t.Title=e,this},status(e){return t.Status=e,this},build:()=>Object.keys(t).flatMap((e=>t[e]?[`${"Title"!==e?`${e}: `:""}${t[e]}`]:[])).join("\n")}};var ye;!function(t){t.get="GET",t.delete="DELETE",t.post="POST",t.put="PUT"}(ye||(ye={}));const ke=(...t)=>new Headers(t.reduce(((t,e)=>{const n=(t=>Array.isArray(t)?t:t instanceof Headers?Array.from(t.entries()):t?Object.entries(t):[])(e);return n.reduce(((e,[n,o])=>(t[n]=o,t)),t),t}),{})),Ie=t=>void 0===t?void 0:JSON.stringify(t),xe=(t,e="")=>{let n=t;return e&&(n=n+":"+e),{Authorization:`Bearer ${n}`}},Oe=({baseUrl:t,projectId:e,baseConfig:n,logger:o,hooks:i,cookiePolicy:r,fetch:s})=>{const a=((t,e)=>{const n=e||fetch;return n||null==t||t.warn("Fetch is not defined, you will not be able to send http requests, if you are running in a test, make sure fetch is defined globally"),t?async(...e)=>{if(!n)throw Error("Cannot send http request, fetch is not defined, if you are running in a test, make sure fetch is defined globally");t.log((t=>we().title("Request").url(t[0]).method(t[1].method).headers(t[1].headers).body(t[1].body).build())(e));const o=await n(...e);return t[o.ok?"log":"error"](await(async t=>{const e=await(t.clone?t.clone().text():t.text());return t.text=()=>Promise.resolve(e),t.json=()=>Promise.resolve(JSON.parse(e)),we().title("Response").url(t.url.toString()).status(`${t.status} ${t.statusText}`).headers(t.headers).body(e).build()})(o)),o}:n})(o,s),l=async o=>{const s=(null==i?void 0:i.beforeRequest)?i.beforeRequest(o):o,{path:l,body:c,headers:u,queryParams:d,method:h,token:p}=s,f=await a((({path:t,baseUrl:e,queryParams:n})=>{const o=new URL(t,e);return n&&(o.search=new URLSearchParams(n).toString()),o})({path:l,baseUrl:t,queryParams:d}),{headers:ke(xe(e,p),{"x-descope-sdk-name":"core-js","x-descope-sdk-version":"1.0.1"},(null==n?void 0:n.baseHeaders)||{},u),method:h,body:Ie(c),credentials:r||"include"});return(null==i?void 0:i.afterRequest)&&await i.afterRequest(o,null==f?void 0:f.clone()),f};return{get:(t,{headers:e,queryParams:n,token:o}={})=>l({path:t,headers:e,queryParams:n,body:void 0,method:ye.get,token:o}),post:(t,e,{headers:n,queryParams:o,token:i}={})=>l({path:t,headers:n,queryParams:o,body:e,method:ye.post,token:i}),put:(t,e,{headers:n,queryParams:o,token:i}={})=>l({path:t,headers:n,queryParams:o,body:e,method:ye.put,token:i}),delete:(t,e,{headers:n,queryParams:o,token:i}={})=>l({path:t,headers:n,queryParams:o,body:e,method:ye.delete,token:i}),hooks:i}};var je={TOO_MANY_REQUESTS:429};function Se(t,e,n){var o;let i=Ce(t);e&&(i=null===(o=null==i?void 0:i.tenants)||void 0===o?void 0:o[e]);const r=null==i?void 0:i[n];return Array.isArray(r)?r:[]}function Ce(t){if("string"!=typeof t||!t)throw new Error("Invalid token provided");return H(t)}function Ee(t){const{exp:e}=Ce(t);return(new Date).getTime()/1e3>e}function _e(t,e){return Se(t,e,"permissions")}function Ae(t,e){return Se(t,e,"roles")}const Ue=(...t)=>t.join("/").replace(/\/{2,}/g,"/");async function Re(t,e){var n;const o=await t,i={code:o.status,ok:o.ok,response:o},r=await o.clone().json();return o.ok?i.data=e?e(r):r:(i.error=r,o.status===je.TOO_MANY_REQUESTS&&Object.assign(i.error,{retryAfter:Number.parseInt(null===(n=o.headers)||void 0===n?void 0:n.get("retry-after"))||0})),i}const Pe=(t,e)=>(n=e)=>e=>!t(e)&&n.replace("{val}",e),Te=(...t)=>({validate:e=>(t.forEach((t=>{const n=t(e);if(n)throw new Error(n)})),!0)}),Le=t=>e=>t.test(e),Me=Le(/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/),qe=Le(/^\+[1-9]{1}[0-9]{3,14}$/),$e=Pe(Me,'"{val}" is not a valid email'),De=Pe(qe,'"{val}" is not a valid phone number'),Ne=Pe((1,t=>t.length>=1),"Minimum length is 1");const We=Pe((t=>"string"==typeof t),"Input is not a string"),Fe=(...t)=>e=>(...n)=>(t.forEach(((t,e)=>Te(...t).validate(n[e]))),e(...n)),Ke=t=>[We(`"${t}" must be a string`),Ne(`"${t}" must not be empty`)],Je=t=>[We(`"${t}" must be a string`),$e()],He=t=>[We(`"${t}" must be a string`),De()],ze=Fe(Ke("accessKey")),Be=t=>({exchange:ze((e=>Re(t.post(Dt,{},{token:e}))))});var Ve,Ze,Ge,Xe;!function(t){t.sms="sms",t.whatsapp="whatsapp"}(Ve||(Ve={})),function(t){t.email="email",t.sms="sms",t.whatsapp="whatsapp"}(Ze||(Ze={})),function(t){t.waiting="waiting",t.running="running",t.completed="completed",t.failed="failed"}(Ge||(Ge={})),function(t){t.signUp="signup",t.signIn="signin",t.verify="verify"}(Xe||(Xe={}));const Ye=Ke("loginId"),Qe=Fe(Ke("token")),tn=Fe(Ye),en=Fe(Ke("pendingRef")),nn=Fe(Ye,Je("email")),on=t=>({verify:Qe((e=>Re(t.post(Gt,{token:e})))),signIn:tn(((e,n,o,i)=>Re(t.post(Ue(Xt,Ze.email),{loginId:e,URI:n,loginOptions:o},{token:i})))),signUpOrIn:tn(((e,n)=>Re(t.post(Ue(ee,Ze.email),{loginId:e,URI:n})))),signUp:tn(((e,n,o)=>Re(t.post(Ue(Yt,Ze.email),{loginId:e,URI:n,user:o})))),waitForSession:en(((e,n)=>new Promise((o=>{const{pollingIntervalMs:i,timeoutMs:r}=(({pollingIntervalMs:t=1e3,timeoutMs:e=6e5}={})=>({pollingIntervalMs:Math.max(t||1e3,1e3),timeoutMs:Math.min(e||6e5,6e5)}))(n);let s;const a=setInterval((async()=>{const n=await t.post(Qt,{pendingRef:e});n.ok&&(clearInterval(a),s&&clearTimeout(s),o(Re(Promise.resolve(n))))}),i);s=setTimeout((()=>{o({error:{errorDescription:`Session polling timeout exceeded: ${r}ms`,errorCode:"0"},ok:!1}),clearInterval(a)}),r)})))),update:{email:nn(((e,n,o,i)=>Re(t.post(te.email,{loginId:e,email:n,URI:o},{token:i}))))}}),rn=Fe(Ke("flowId")),sn=Fe(Ke("executionId"),Ke("stepId"),Ke("interactionId")),an=t=>({start:rn(((e,n,o,i,r)=>Re(t.post(me,{flowId:e,options:n,conditionInteractionId:o,interactionId:i,input:r})))),next:sn(((e,n,o,i)=>Re(t.post(be,{executionId:e,stepId:n,interactionId:o,input:i}))))}),ln=Ke("loginId"),cn=Fe(Ke("token")),un=Fe(ln),dn=Fe(ln,He("phone")),hn=Fe(ln,Je("email")),pn=t=>({verify:cn((e=>Re(t.post(Ht,{token:e})))),signIn:Object.keys(Ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:un(((e,o,i,r)=>Re(t.post(Ue(zt,n),{loginId:e,URI:o,loginOptions:i},{token:r}))))})),{}),signUp:Object.keys(Ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:un(((e,o,i)=>Re(t.post(Ue(Bt,n),{loginId:e,URI:o,user:i}))))})),{}),signUpOrIn:Object.keys(Ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:un(((e,o)=>Re(t.post(Ue(Zt,n),{loginId:e,URI:o}))))})),{}),update:{email:hn(((e,n,o,i)=>Re(t.post(Vt.email,{loginId:e,email:n,URI:o},{token:i})))),phone:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:dn(((e,o,i,r)=>Re(t.post(Ue(Vt.phone,n),{loginId:e,phone:o,URI:i},{token:r}))))})),{})}});var fn;!function(t){t.facebook="facebook",t.github="github",t.google="google",t.microsoft="microsoft",t.gitlab="gitlab",t.apple="apple",t.discord="discord",t.linkedin="linkedin"}(fn||(fn={}));const gn=Fe(Ke("code")),vn=t=>({start:Object.keys(fn).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:async(e,{redirect:o=!1}={},i,r)=>{const s=await t.post(ne,i||{},{queryParams:Object.assign({provider:n},e&&{redirectURL:e}),token:r});if(!o||!s.ok)return Re(Promise.resolve(s));const{url:a}=await s.json();window.location.href=a}})),{}),exchange:gn((e=>Re(t.post(oe,{code:e}))))});var mn;!function(t){t.signUp="signup",t.signIn="signin",t.verify="verify",t.updatePhone="updatePhone"}(mn||(mn={}));const bn=Ke("loginId"),wn=Fe(bn,Ke("code")),yn=Fe(bn),kn=Fe(bn,He("phone")),In=Fe(bn,Je("email")),xn=t=>({verify:Object.keys(Ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:wn(((e,o)=>Re(t.post(Ue(Nt,n),{code:o,loginId:e}))))})),{}),signIn:Object.keys(Ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:yn(((e,o,i)=>Re(t.post(Ue(Wt,n),{loginId:e,loginOptions:o},{token:i}))))})),{}),signUp:Object.keys(Ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:yn(((e,o)=>Re(t.post(Ue(Ft,n),{loginId:e,user:o}))))})),{}),signUpOrIn:Object.keys(Ze).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:yn((e=>Re(t.post(Ue(Jt,n),{loginId:e}))))})),{}),update:{email:In(((e,n,o)=>Re(t.post(Kt.email,{loginId:e,email:n},{token:o})))),phone:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:kn(((e,o,i)=>Re(t.post(Ue(Kt.phone,n),{loginId:e,phone:o},{token:i}))))})),{})}}),On=Fe(Ke("tenant")),jn=Fe(Ke("code")),Sn=t=>({start:On((async(e,n,{redirect:o=!1}={},i,r)=>{const s=await t.post(ie,i||{},{queryParams:{tenant:e,redirectURL:n},token:r});if(!o||!s.ok)return Re(Promise.resolve(s));const{url:a}=await s.json();window.location.href=a})),exchange:jn((e=>Re(t.post(re,{code:e}))))}),Cn=Ke("loginId"),En=Fe(Cn,Ke("code")),_n=Fe(Cn),An=Fe(Cn),Un=t=>({signUp:_n(((e,n)=>Re(t.post(ae,{loginId:e,user:n})))),verify:En(((e,n,o,i)=>Re(t.post(se,{loginId:e,code:n,loginOptions:o},{token:i})))),update:An(((e,n)=>Re(t.post(le,{loginId:e},{token:n}))))}),Rn=[We('"loginId" must be a string')],Pn=Ke("loginId"),Tn=Ke("origin"),Ln=Fe(Pn,Tn,Ke("name")),Mn=Fe(Pn,Tn),qn=Fe(Rn,Tn),$n=Fe(Pn,Tn,Ke("token")),Dn=Fe(Ke("transactionId"),Ke("response")),Nn=t=>({signUp:{start:Ln(((e,n,o)=>Re(t.post(ce.start,{user:{loginId:e,name:o},origin:n})))),finish:Dn(((e,n)=>Re(t.post(ce.finish,{transactionId:e,response:n}))))},signIn:{start:qn(((e,n,o,i)=>Re(t.post(ue.start,{loginId:e,origin:n,loginOptions:o},{token:i})))),finish:Dn(((e,n)=>Re(t.post(ue.finish,{transactionId:e,response:n}))))},signUpOrIn:{start:Mn(((e,n)=>Re(t.post(de.start,{loginId:e,origin:n}))))},update:{start:$n(((e,n,o)=>Re(t.post(he.start,{loginId:e,origin:n},{token:o})))),finish:Dn(((e,n)=>Re(t.post(he.finish,{transactionId:e,response:n}))))}}),Wn=Fe(Ke("token"));var Fn,Kn=Fe([("projectId",Fn=Ke("projectId"),Pe(((t,e)=>n=>Te(...e).validate($t(n,t)))("projectId",Fn))())])((t=>{var e,n;const o=[].concat((null===(e=t.hooks)||void 0===e?void 0:e.beforeRequest)||[]),i=[].concat((null===(n=t.hooks)||void 0===n?void 0:n.afterRequest)||[]);return(({projectId:t,logger:e,baseUrl:n,hooks:o,cookiePolicy:i,baseHeaders:r={},fetch:s})=>{return a=Oe({baseUrl:n||"https://api.descope.com",projectId:t,logger:e,hooks:o,cookiePolicy:i,baseConfig:{baseHeaders:r},fetch:s}),{accessKey:Be(a),otp:xn(a),magicLink:pn(a),enchantedLink:on(a),oauth:vn(a),saml:Sn(a),totp:Un(a),webauthn:Nn(a),flow:an(a),refresh:t=>Re(a.post(pe,{},{token:t})),logout:t=>Re(a.post(fe,{},{token:t})),logoutAll:t=>Re(a.post(ge,{},{token:t})),me:t=>Re(a.get(ve,{token:t})),isJwtExpired:Wn(Ee),getJwtPermissions:Wn(_e),getJwtRoles:Wn(Ae),httpClient:a};var a})(Object.assign(Object.assign({},t),{hooks:{beforeRequest:t=>null==o?void 0:o.reduce(((t,e)=>e(t)),t),afterRequest:async(e,n)=>{(await Promise.allSettled(null==i?void 0:i.map((t=>t(e,null==n?void 0:n.clone()))))).forEach((e=>{var n;return"rejected"===e.status&&(null===(n=t.logger)||void 0===n?void 0:n.error(e.reason))}))}}}))}));const Jn=(t,e,n)=>(e.forEach((e=>{const o=e.split(".");let i=o.shift(),r=t;for(;o.length>0;){if(r=r[i],!i||!r)throw Error(`Invalid path "${e}", "${i}" is missing or has no value`);i=o.shift()}if("function"!=typeof r[i])throw Error(`"${e}" is not a function`);const s=r[i];r[i]=n(s)})),t);var Hn=Object.assign(Kn,{DeliveryMethods:Ze});var zn="Blocked by CSP",Bn="API key required",Vn="3.8.2",Zn="9319";function Gn(t,e){var n=[];return function(t,e){var n,o,i=(o=function(t,e,n){if(n||2===arguments.length)for(var o,i=0,r=e.length;i<r;i++)!o&&i in e||(o||(o=Array.prototype.slice.call(e,0,i)),o[i]=e[i]);return t.concat(o||Array.prototype.slice.call(e))}([],t,!0),{current:function(){return o[0]},postpone:function(){var t=o.shift();void 0!==t&&o.push(t)},exclude:function(){o.shift()}}),r=(100,3e3,n=0,function(){return Math.random()*Math.min(3e3,100*Math.pow(2,n++))}),s=i.current();if(void 0===s)return Promise.reject(new TypeError("The list of script URL patterns is empty"));var a=function(t,n){return e(t).catch((function(t){if(n+1>=5)throw t;!function(t){if(!(t instanceof Error))return!1;var e=t.message;return e===zn||e===Zn}(t)?i.postpone():i.exclude();var e,o=i.current();if(void 0===o)throw t;return(e=r(),new Promise((function(t){return setTimeout(t,e)}))).then((function(){return a(o,n+1)}))}))};return a(s,0)}(t,(function(t){var o=new Date,i=function(){return n.push({url:t,startedAt:o,finishedAt:new Date})},r=e(t);return r.then(i,i),r})).then((function(t){return[t,{attempts:n}]}))}var Xn="https://fpnpmcdn.net/v<version>/<apiKey>/loader_v<loaderVersion>.js",Yn="Failed to load the JS script of the agent";function Qn(n){var o;n.scriptUrlPattern;var i=n.token,r=n.apiKey,s=void 0===r?i:r,a=e(n,["scriptUrlPattern","token","apiKey"]),l=null!==(o=function(t,e){return function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}(t,e)?t[e]:void 0}(n,"scriptUrlPattern"))&&void 0!==o?o:Xn;return Promise.resolve().then((function(){if(!s||"string"!=typeof s)throw new Error(Bn);var t=function(t,e){return(Array.isArray(t)?t:[t]).map((function(t){return function(t,e){var n=encodeURIComponent;return t.replace(/<[^<>]+>/g,(function(t){return"<version>"===t?"3":"<apiKey>"===t?n(e):"<loaderVersion>"===t?n(Vn):t}))}(String(t),e)}))}(l,s);return Gn(t,to).catch(no)})).then((function(e){var n=e[0],o=e[1];return n.load(t(t({},a),{ldi:o}))}))}function to(t){return function(t,e,n,o){var i,r=document,s="securitypolicyviolation",a=function(e){var n=new URL(t,location.href),o=e.blockedURI;o!==n.href&&o!==n.protocol.slice(0,-1)&&o!==n.origin||(i=e,l())};r.addEventListener(s,a);var l=function(){return r.removeEventListener(s,a)};return Promise.resolve().then(e).then((function(t){return l(),t}),(function(t){return new Promise((function(t){return setTimeout(t)})).then((function(){if(l(),i)return function(){throw new Error(zn)}();throw t}))}))}(t,(function(){return function(t){return new Promise((function(e,n){var o=document.createElement("script"),i=function(){var t;return null===(t=o.parentNode)||void 0===t?void 0:t.removeChild(o)},r=document.head||document.getElementsByTagName("head")[0];o.onload=function(){i(),e()},o.onerror=function(){i(),n(new Error(Yn))},o.async=!0,o.src=t,r.appendChild(o)}))}(t)})).then(eo)}function eo(){var t=window,e="__fpjs_p_l_b",n=t[e];if(function(t,e){var n,o=null===(n=Object.getOwnPropertyDescriptor)||void 0===n?void 0:n.call(Object,t,e);(null==o?void 0:o.configurable)?delete t[e]:o&&!o.writable||(t[e]=void 0)}(t,e),"function"!=typeof(null==n?void 0:n.load))throw new Error(Zn);return n}function no(t){throw t instanceof Error&&t.message===Zn?new Error(Yn):t}
2
+ /*! js-cookie v3.0.1 | MIT */function oo(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)t[o]=n[o]}return t}var io=function t(e,n){function o(t,o,i){if("undefined"!=typeof document){"number"==typeof(i=oo({},n,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var r="";for(var s in i)i[s]&&(r+="; "+s,!0!==i[s]&&(r+="="+i[s].split(";")[0]));return document.cookie=t+"="+e.write(o,t)+r}}return Object.create({set:o,get:function(t){if("undefined"!=typeof document&&(!arguments.length||t)){for(var n=document.cookie?document.cookie.split("; "):[],o={},i=0;i<n.length;i++){var r=n[i].split("="),s=r.slice(1).join("=");try{var a=decodeURIComponent(r[0]);if(o[a]=e.read(s,a),t===a)break}catch(t){}}return t?o[t]:o}},remove:function(t,e){o(t,"",oo({},e,{expires:-1}))},withAttributes:function(e){return t(this.converter,oo({},this.attributes,e))},withConverter:function(e){return t(oo({},this.converter,e),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(e)}})}({read:function(t){return'"'===t[0]&&(t=t.slice(1,-1)),t.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(t){return encodeURIComponent(t).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"});const ro=(t,e)=>{var n;return["beforeRequest","afterRequest"].reduce(((n,o)=>{var i;return n[o]=[].concat((null===(i=t.hooks)||void 0===i?void 0:i[o])||[]).concat((null==e?void 0:e[o])||[]),n}),null!==(n=t.hooks)&&void 0!==n?n:t.hooks={}),t},so=async t=>{if(!(null==t?void 0:t.ok))return{};const e=await(null==t?void 0:t.clone().json());return(null==e?void 0:e.authInfo)||e||{}},ao=async t=>{const e=await so(t);return(null==e?void 0:e.user)||((null==e?void 0:e.hasOwnProperty("userId"))?e:void 0)},lo="undefined"!=typeof localStorage,co=(t,e)=>lo&&(null===localStorage||void 0===localStorage?void 0:localStorage.setItem(t,e)),uo=t=>lo&&(null===localStorage||void 0===localStorage?void 0:localStorage.getItem(t)),ho=t=>lo&&(null===localStorage||void 0===localStorage?void 0:localStorage.removeItem(t)),po="undefined"!=typeof window,fo=po&&(null===localStorage||void 0===localStorage?void 0:localStorage.getItem("fingerprint.endpoint.url"))||"https://fp.descope.com",go=(t="",e="")=>({vsid:t,vrid:e}),vo=(t=!1)=>{const e=localStorage.getItem("fp");if(!e)return null;const n=JSON.parse(e);return(new Date).getTime()>n.expiry&&!t?null:n.value},mo=t=>(t.body&&(t.body.fpData=vo(!0)||go()),t),bo=()=>uo("dls_last_user_login_id"),wo=()=>uo("dls_last_user_display_name"),yo=t=>async(...e)=>{var n;e[1]=e[1]||{};const[,o={}]=e,i=bo(),r=wo();return i&&(null!==(n=o.lastAuth)&&void 0!==n||(o.lastAuth={}),o.lastAuth.loginId=i,o.lastAuth.name=r),await t(...e)},ko=t=>async(...e)=>{const n=await t(...e);return ho("dls_last_user_login_id"),ho("dls_last_user_display_name"),n};function Io(){const t=[];return{pub:e=>{t.forEach((t=>t(e)))},sub:e=>{const n=t.push(e)-1;return()=>t.splice(n,1)}}}const xo=(t={},n)=>{var{refreshJwt:o,sessionJwt:i}=t,r=e(t,["refreshJwt","sessionJwt"]);void 0===n&&(n=!1),o&&co("DSR",o),i&&(n?function(t,e,{cookiePath:n,cookieDomain:o,cookieExpiration:i}){if(e){const r=new Date(1e3*i);io.set(t,e,{path:n,domain:o,expires:r,sameSite:"Strict",secure:!0})}}("DS",i,r):co("DS",i))};function Oo(){return uo("DSR")||""}function jo(){return io.get("DS")||uo("DS")||""}function So(){ho("DSR"),ho("DS"),io.remove("DS")}const Co=t=>Object.assign(t,{token:t.token||Oo()}),Eo=t=>async(...e)=>{const n=await t(...e);return So(),n};async function _o(t){const e=function(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=Lo(n.publicKey.challenge),n.publicKey.user.id=Lo(n.publicKey.user.id),null===(e=n.publicKey.excludeCredentials)||void 0===e||e.forEach((t=>{t.id=Lo(t.id)})),n}(t);return n=await navigator.credentials.create(e),JSON.stringify({id:n.id,rawId:Mo(n.rawId),type:n.type,response:{attestationObject:Mo(n.response.attestationObject),clientDataJSON:Mo(n.response.clientDataJSON)}});var n}async function Ao(t){const e=Po(t);return To(await navigator.credentials.get(e))}async function Uo(t,e){const n=Po(t);return n.signal=e.signal,n.mediation="conditional",To(await navigator.credentials.get(n))}async function Ro(t=!1){if(!po)return Promise.resolve(!1);const e=!!(PublicKeyCredential&&navigator.credentials&&navigator.credentials.create&&navigator.credentials.get);return e&&t&&PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable?PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable():e}function Po(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=Lo(n.publicKey.challenge),null===(e=n.publicKey.allowCredentials)||void 0===e||e.forEach((t=>{t.id=Lo(t.id)})),n}function To(t){return JSON.stringify({id:t.id,rawId:Mo(t.rawId),type:t.type,response:{authenticatorData:Mo(t.response.authenticatorData),clientDataJSON:Mo(t.response.clientDataJSON),signature:Mo(t.response.signature),userHandle:t.response.userHandle?Mo(t.response.userHandle):void 0}})}function Lo(t){const e=t.replace(/_/g,"/").replace(/-/g,"+");return Uint8Array.from(atob(e),(t=>t.charCodeAt(0))).buffer}function Mo(t){return btoa(String.fromCharCode.apply(null,new Uint8Array(t))).replace(/\//g,"_").replace(/\+/g,"-").replace(/=/g,"")}var qo,$o=(qo=t=>({async signUp(e,n){const o=await t.webauthn.signUp.start(e,window.location.origin,n);if(!o.ok)return o;const i=await _o(o.data.options);return await t.webauthn.signUp.finish(o.data.transactionId,i)},async signIn(e){const n=await t.webauthn.signIn.start(e,window.location.origin);if(!n.ok)return n;const o=await Ao(n.data.options);return await t.webauthn.signIn.finish(n.data.transactionId,o)},async signUpOrIn(e){var n;const o=await t.webauthn.signUpOrIn.start(e,window.location.origin);if(!o.ok)return o;if(null===(n=o.data)||void 0===n?void 0:n.create){const e=await _o(o.data.options);return await t.webauthn.signUp.finish(o.data.transactionId,e)}{const e=await Ao(o.data.options);return await t.webauthn.signIn.finish(o.data.transactionId,e)}},async update(e,n){const o=await t.webauthn.update.start(e,window.location.origin,n);if(!o.ok)return o;const i=await _o(o.data.options);return await t.webauthn.update.finish(o.data.transactionId,i)},helpers:{create:_o,get:Ao,isSupported:Ro,conditional:Uo}}),(...t)=>{const e=qo(...t);return Object.assign(e.signUp,t[0].webauthn.signUp),Object.assign(e.signIn,t[0].webauthn.signIn),Object.assign(e.signUpOrIn,t[0].webauthn.signUpOrIn),Object.assign(e.update,t[0].webauthn.update),e}),Do=t=>Object.assign(Object.assign({},t.flow),{start:async(...e)=>{const n=await Ro(),o=Object.assign(Object.assign({redirectUrl:window.location.href},e[1]),{deviceInfo:{webAuthnSupport:n}});return e[1]=o,t.flow.start(...e)}});const No=function(...t){return e=>t.reduce(((t,e)=>e(t)),e)}((t=>n=>{var{fpKey:o,fpLoad:i}=n,r=e(n,["fpKey","fpLoad"]);return o?(po?i&&(async t=>{try{if(vo())return;const e=(Date.now().toString(36)+Math.random().toString(36).substring(2)+Math.random().toString(36).substring(2)).substring(0,27),n=Qn({apiKey:t,endpoint:fo}),o=await n,{requestId:i}=await o.get({linkedId:e});(t=>{const e={value:t,expiry:(new Date).getTime()+864e5};localStorage.setItem("fp",JSON.stringify(e))})(go(e,i))}catch(t){global.FB_DEBUG&&console.error(t)}})(o).catch((()=>null)):console.warn("Fingerprint is a client side only capability and will not work when running in the server"),t(ro(r,{beforeRequest:mo}))):t(Object.assign({},r))}),(t=>n=>{var o=e(n,["autoRefresh"]);const{clearAllTimers:i,setTimer:r}=(()=>{const t=[];return{clearAllTimers:()=>{for(;t.length;)clearTimeout(t.pop())},setTimer:(e,n)=>{t.push(setTimeout(e,n))}}})(),s=t(ro(o,{afterRequest:async(t,e)=>{const{refreshJwt:n,sessionJwt:o}=await so(e);if(401===(null==e?void 0:e.status))i();else if(o){const t=((a=(t=>{const e=t.split(".");try{if(3===e.length){const t=JSON.parse(window.atob(e[1]));if(t.exp)return new Date(1e3*t.exp)}}catch(t){}return null})(o))?a.getTime()-(new Date).getTime():0)-2e4;i(),r((()=>s.refresh(n)),t)}var a}}));return Jn(s,["logout","logoutAll"],(t=>async(...e)=>{const n=await t(...e);return i(),n}))}),(t=>e=>t(Object.assign(Object.assign({},e),{baseHeaders:Object.assign({"x-descope-sdk-name":"web-js","x-descope-sdk-version":"1.0.0"},e.baseHeaders)}))),(t=>e=>{const n=Io(),o=Io(),i=t(ro(e,{afterRequest:async(t,e)=>{if(401===(null==e?void 0:e.status))n.pub(null),o.pub(null);else{const t=await ao(e);t&&o.pub(t);const{sessionJwt:i}=await so(e);i&&n.pub(i)}}})),r=Jn(i,["logout","logoutAll"],(t=>async(...e)=>{const i=await t(...e);return n.pub(null),o.pub(null),i}));return Object.assign(r,{onSessionTokenChange:n.sub,onUserChange:o.sub})}),(t=>e=>{const n=t(ro(e,{afterRequest:async(t,e)=>{var n;const o=await ao(e),i=null===(n=null==o?void 0:o.loginIds)||void 0===n?void 0:n[0],r=null==o?void 0:o.name;i&&((t=>{co("dls_last_user_login_id",t)})(i),(t=>{co("dls_last_user_display_name",t)})(r))}}));let o=Jn(n,["flow.start"],yo);return o=Jn(o,["logout","logoutAll"],ko),Object.assign(o,{getLastUserLoginId:bo,getLastUserDisplayName:wo})}),(t=>n=>{var{persistTokens:o,sessionTokenViaCookie:i}=n,r=e(n,["persistTokens","sessionTokenViaCookie"]);if(!o||!po)return o&&console.warn("Storing auth tokens in local storage and cookies are a client side only capabilities and will not be done when running in the server"),t(r);const s=t(ro(r,{beforeRequest:Co,afterRequest:async(t,e)=>{401===(null==e?void 0:e.status)?So():xo(await so(e),i)}})),a=Jn(s,["logout","logoutAll"],Eo);return Object.assign(a,{getRefreshToken:Oo,getSessionToken:jo})}))(((...t)=>{const e=Hn(...t);return Object.assign(Object.assign({},e),{flow:Do(e),webauthn:$o(e)})})),Wo=document.createElement("template");var Fo,Ko,Jo,Ho,zo,Bo,Vo,Zo,Go,Xo,Yo,Qo,ti,ei,ni,oi,ii,ri,si,ai,li,ci,ui,di,hi,pi,fi,gi,vi,mi,bi,wi,yi,ki,Ii,xi,Oi,ji,Si,Ci,Ei,_i,Ai,Ui,Ri,Pi,Ti,Li;Wo.innerHTML='\n\t<style>\n\t\t:host {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\t\t\n\t\t#wc-root {\n\t\t\theight: 100%;\n\t\t\ttransition: opacity 300ms ease-in-out;\n\t\t}\n\n\t\t#wc-root[data-theme] {\n\t\t\tbackground-color: transparent;\n\t\t}\n\n\t\t.fade-out {\n\t\t\topacity: 0.1;\n\t\t}\n\n\t</style>\n\t<div id="wc-root"></div>\n\t';class Mi extends HTMLElement{constructor(t){super(),Fo.add(this),Ko.set(this,!1),Jo.set(this,new $),Ho.set(this,new $),this.nextRequestStatus=new $({isLoading:!1}),zo.set(this,void 0),Bo.set(this,{popstate:o(this,Fo,"m",Qo).bind(this)}),Vo.set(this,void 0),ni.set(this,R((()=>n(this,void 0,void 0,(function*(){const t=S(this.projectId,"config.json");try{const{body:e,headers:n}=yield O(t,"json");return{projectConfig:e,executionContext:{geo:n["x-geo"]}}}catch(t){this.logger.error("Cannot get config file","make sure that your projectId & flowId are correct")}}))))),this.logger={error:(t,e="")=>{console.error(t,e,new Error),o(this,Fo,"m",ci).call(this,t,e)},info:(t,e="")=>{console.log(t,e)}},i(this,Vo,t,"f"),o(this,Fo,"m",Zo).call(this)}static get observedAttributes(){return["project-id","flow-id","base-url","tenant","theme","debug","telemetryKey","redirect-url","auto-focus"]}get projectId(){return this.getAttribute("project-id")}get flowId(){return this.getAttribute("flow-id")}get baseUrl(){return this.getAttribute("base-url")||void 0}get tenant(){return this.getAttribute("tenant")||void 0}get redirectUrl(){return this.getAttribute("redirect-url")||void 0}get debug(){return"true"===this.getAttribute("debug")}get theme(){var t,e;const n=this.getAttribute("theme");if("os"===n){return window.matchMedia&&(null===(e=null===(t=window.matchMedia)||void 0===t?void 0:t.call(window,"(prefers-color-scheme: dark)"))||void 0===e?void 0:e.matches)?"dark":"light"}return n||"light"}get telemetryKey(){return this.getAttribute("telemetryKey")||void 0}get autoFocus(){var t;const e=null!==(t=this.getAttribute("auto-focus"))&&void 0!==t?t:"true";return"skipFirstScreen"===e?e:"true"===e}getExecutionContext(){return n(this,void 0,void 0,(function*(){const{executionContext:t}=yield o(this,ni,"f").call(this);return t}))}getFlowConfig(){var t;return n(this,void 0,void 0,(function*(){const{projectConfig:e}=yield o(this,ni,"f").call(this);return(null===(t=null==e?void 0:e.flows)||void 0===t?void 0:t[this.flowId])||{}}))}connectedCallback(){return n(this,void 0,void 0,(function*(){if(this.shadowRoot.isConnected){if(o(this,Fo,"m",Go).call(this))return void o(this,Fo,"m",Xo).call(this);o(this,Fo,"m",Yo).call(this),o(this,Fo,"m",ii).call(this),o(this,Fo,"m",oi).call(this),o(this,Fo,"m",ui).call(this);const{executionId:t,stepId:e,token:n,code:r,exchangeError:s}=U();window.addEventListener("popstate",o(this,Bo,"f").popstate),o(this,Jo,"f").subscribe(o(this,Fo,"m",ei).bind(this)),o(this,Ho,"f").subscribe(o(this,Fo,"m",li).bind(this)),o(this,Jo,"f").update({projectId:this.projectId,flowId:this.flowId,baseUrl:this.baseUrl,tenant:this.tenant,redirectUrl:this.redirectUrl,stepId:e,executionId:t,token:n,code:r,exchangeError:s,telemetryKey:this.telemetryKey}),o(this,Ho,"f").update({isDebug:this.debug}),i(this,Ko,!0,"f")}}))}disconnectedCallback(){o(this,Jo,"f").unsubscribeAll(),o(this,Ho,"f").unsubscribeAll(),o(this,Fo,"m",ai).call(this),window.removeEventListener("popstate",o(this,Bo,"f").popstate)}attributeChangedCallback(t,e,n){if(this.shadowRoot.isConnected&&o(this,Ko,"f")&&e!==n&&Mi.observedAttributes.includes(t)){o(this,Fo,"m",Yo).call(this);const i=null===e;o(this,Jo,"f").update((({stepId:e,executionId:o})=>{let r=e,s=o;return i||(s=null,r=null,_()),{[A(t)]:n,stepId:r,executionId:s}})),o(this,Ho,"f").update({isDebug:this.debug})}}}Ko=new WeakMap,Jo=new WeakMap,Ho=new WeakMap,zo=new WeakMap,Bo=new WeakMap,Vo=new WeakMap,ni=new WeakMap,Fo=new WeakSet,Zo=function(){this.attachShadow({mode:"open"}),this.shadowRoot.appendChild(Wo.content.cloneNode(!0)),this.rootElement=this.shadowRoot.querySelector("#wc-root")},Go=function(){const t=/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor);return!this.shadowRoot.host.closest("form")&&t},Xo=function(){const t=this.shadowRoot.host,e=document.createElement("form");t.parentElement.appendChild(e),e.appendChild(t)},Yo=function(){const t=["base-url","tenant","theme","debug","telemetryKey","redirect-url","auto-focus"];if(Mi.observedAttributes.forEach((e=>{if(!t.includes(e)&&!this[A(e)])throw Error(`${e} cannot be empty`)})),this.theme&&"light"!==this.theme&&"dark"!==this.theme)throw Error('Supported theme values are "light", "dark", or leave empty for using the OS theme')},Qo=function(){const{stepId:t,executionId:e}=E();o(this,Jo,"f").update({stepId:t,executionId:e})},ti=function(t,e,o){const i=o||void 0,r=!!i;this.sdk=No(Object.assign(Object.assign({},Mi.sdkConfigOverrides),{projectId:t,baseUrl:e,fpKey:i,fpLoad:r,persistTokens:!0})),["start","next"].forEach((t=>{const e=this.sdk.flow[t];this.sdk.flow[t]=(...t)=>n(this,void 0,void 0,(function*(){this.nextRequestStatus.update({isLoading:!0});try{return yield e(...t)}finally{this.nextRequestStatus.update({isLoading:!1})}}))}))},ei=function(t,e,i){return n(this,void 0,void 0,(function*(){const{projectId:e,baseUrl:n,telemetryKey:r}=t;if(i("projectId")||i("baseUrl")||i("telemetryKey")){if(!e)return;o(this,Fo,"m",ti).call(this,e,n,r)}o(this,Vo,"f").call(this,t)}))},oi=function(){var t,e,i,r;return n(this,void 0,void 0,(function*(){const{projectConfig:n}=yield o(this,ni,"f").call(this);null===(r=null===(i=null===(e=null===(t=null==n?void 0:n.cssTemplate)||void 0===t?void 0:t[this.theme])||void 0===e?void 0:e.typography)||void 0===i?void 0:i.fontFamilies)||void 0===r||r.forEach((t=>(t=>{if(!t)return;const e=document.createElement("link");e.href=t,e.rel="stylesheet",document.head.appendChild(e)})(t.url)))}))},ii=function(){o(this,Fo,"m",ri).call(this),o(this,Fo,"m",si).call(this)},ri=function(){return n(this,void 0,void 0,(function*(){const t=document.createElement("style"),e=S(this.projectId,"theme.css");try{const{body:n}=yield O(e,"text");t.innerText=n}catch(t){this.logger.error("Cannot fetch theme file","make sure that your projectId & flowId are correct")}this.shadowRoot.appendChild(t)}))},si=function(){this.rootElement.setAttribute("data-theme",this.theme)},ai=function(){var t;null===(t=o(this,zo,"f"))||void 0===t||t.remove(),i(this,zo,null,"f")},li=function({isDebug:t}){return n(this,void 0,void 0,(function*(){t?(yield Promise.resolve().then((function(){return Ni})),i(this,zo,document.createElement("descope-debugger"),"f"),Object.assign(o(this,zo,"f").style,{position:"fixed",top:"0",right:"0",height:"100vh",width:"100vw",pointerEvents:"none",zIndex:99999}),document.body.appendChild(o(this,zo,"f"))):o(this,Fo,"m",ai).call(this)}))},ci=function(t,e){var n;t&&this.debug&&(null===(n=o(this,zo,"f"))||void 0===n||n.updateData({title:t,description:e}))},ui=function(){this.rootElement.onkeydown=t=>{if("Enter"!==t.key)return;t.preventDefault();const e=this.rootElement.querySelectorAll("button");if(1===e.length)return void e[0].click();const n=Array.from(e).filter((t=>"button"===t.getAttribute("data-type")));1===n.length&&n[0].click()}},Mi.sdkConfigOverrides={baseHeaders:{"x-descope-sdk-name":"web-component","x-descope-sdk-version":"2.0.1"}};class qi extends Mi{constructor(){const t=new $;super(t.update.bind(t)),di.add(this),this.stepState=new $({},{updateOnlyOnChange:!1}),hi.set(this,void 0),pi.set(this,null),fi.set(this,(()=>{clearInterval(o(this,hi,"f")),i(this,hi,null,"f")})),gi.set(this,(t=>{var e,n,i,s,a,l,c,u,d;if(!(null==t?void 0:t.ok)){o(this,fi,"f").call(this),o(this,di,"m",ji).call(this,"error",null==t?void 0:t.error);const r=null===(e=null==t?void 0:t.response)||void 0===e?void 0:e.url,l=`${null===(n=null==t?void 0:t.response)||void 0===n?void 0:n.status} - ${null===(i=null==t?void 0:t.response)||void 0===i?void 0:i.statusText}`;return void this.logger.error((null===(s=null==t?void 0:t.error)||void 0===s?void 0:s.errorDescription)||r,(null===(a=null==t?void 0:t.error)||void 0===a?void 0:a.errorMessage)||l)}const p=null===(u=null===(c=null===(l=t.data)||void 0===l?void 0:l.screen)||void 0===c?void 0:c.state)||void 0===u?void 0:u.errorText;p&&this.logger.error(p),(null===(d=t.data)||void 0===d?void 0:d.error)&&this.logger.error(`[${t.data.error.code}]: ${t.data.error.description}`,t.data.error.message);const{status:f,authInfo:v,lastAuth:m}=t.data;if("completed"===f)return function(t){(null==t?void 0:t.authMethod)&&r&&localStorage.setItem(h,JSON.stringify(t))}(m),o(this,fi,"f").call(this),void o(this,di,"m",ji).call(this,"success",v);const{executionId:b,stepId:w,action:y,screen:k,redirect:I,webauthn:x}=t.data;y!==g?this.flowState.update({stepId:w,executionId:b,action:y,redirectTo:null==I?void 0:I.url,screenId:null==k?void 0:k.id,screenState:null==k?void 0:k.state,webauthnTransactionId:null==x?void 0:x.transactionId,webauthnOptions:null==x?void 0:x.options}):this.flowState.update({action:y})})),vi.set(this,R((()=>n(this,void 0,void 0,(function*(){var t;try{const e=yield this.sdk.webauthn.signIn.start("",window.location.origin);return e.ok||this.logger.error("Webauthn start failed",null===(t=null==e?void 0:e.error)||void 0===t?void 0:t.errorMessage),e.data}catch(t){this.logger.error("Webauthn start failed",t.message)}}))))),this.flowState=t}static set sdkConfigOverrides(t){Mi.sdkConfigOverrides=t}connectedCallback(){const t=Object.create(null,{connectedCallback:{get:()=>super.connectedCallback}});var e,o;return n(this,void 0,void 0,(function*(){this.shadowRoot.isConnected&&(null===(e=this.flowState)||void 0===e||e.subscribe(this.onFlowChange.bind(this)),null===(o=this.stepState)||void 0===o||o.subscribe(this.onStepChange.bind(this))),yield t.connectedCallback.call(this)}))}disconnectedCallback(){super.disconnectedCallback(),this.flowState.unsubscribeAll(),this.stepState.unsubscribeAll()}onFlowChange(t,e,r){var s;return n(this,void 0,void 0,(function*(){const{projectId:a,flowId:l,tenant:c,stepId:u,executionId:d,action:p,screenId:b,screenState:k,redirectTo:I,redirectUrl:x,token:O,code:j,exchangeError:E,webauthnTransactionId:_,webauthnOptions:A}=t;let U,R;o(this,hi,"f")&&o(this,fi,"f").call(this);const P=this.sdk.getLastUserLoginId();if(!d){if(!l)return;const t=yield this.getFlowConfig();if(({startScreenId:U=t.startScreenId,conditionInteractionId:R}=((t,e)=>{if(t&&"not-empty"===t.operator){const n=e?t.met:t.unmet;return{startScreenId:null==n?void 0:n.screenId,conditionInteractionId:null==n?void 0:n.interactionId}}return{}})(t.condition,P)),!U){const t=yield this.sdk.flow.start(l,Object.assign({tenant:c},x&&{redirectUrl:x}));return void o(this,gi,"f").call(this,t)}}if(r("token")&&O||r("code")&&j||r("exchangeError")&&E){const t=yield this.sdk.flow.next(d,u,w,{token:O,exchangeCode:j,exchangeError:E});return o(this,gi,"f").call(this,t),void this.flowState.update({token:void 0,code:void 0,exchangeError:void 0})}if(p===f)return I||this.logger.error("Did not get redirect url"),void window.location.assign(I);if(p===v||p===m){if(!_||!A)return void this.logger.error("Did not get webauthn transaction id or options");let t,e;null===(s=o(this,pi,"f"))||void 0===s||s.abort(),i(this,pi,null,"f");try{t=p===v?yield this.sdk.webauthn.helpers.create(A):yield this.sdk.webauthn.helpers.get(A)}catch(t){if("NotAllowedError"!==t.name)return void this.logger.error(t.message);e=!0}const n=yield this.sdk.flow.next(d,u,w,{transactionId:_,response:t,cancelWebauthn:e});o(this,gi,"f").call(this,n)}if(p===g&&i(this,hi,setInterval((()=>n(this,void 0,void 0,(function*(){const t=yield this.sdk.flow.next(d,u,y,{});o(this,gi,"f").call(this,t)}))),2e3),"f"),!b&&!U)return void this.logger.info("Refreshing the page during a flow is not supported yet");const T={direction:C(+u,+e.stepId),screenState:Object.assign(Object.assign({},k),{lastAuth:{loginId:P,name:this.sdk.getLastUserDisplayName()||P}}),htmlUrl:S(a,`${U||b}.html`)},L=function(t){const e={};if(t)try{Object.assign(e,JSON.parse(localStorage.getItem(h)))}catch(t){}return e}(P);U?T.next=(...t)=>this.sdk.flow.start(l,{tenant:c,lastAuth:L},R,...t):(r("projectId")||r("baseUrl")||r("executionId")||r("stepId"))&&(T.next=(...t)=>this.sdk.flow.next(d,u,...t)),this.stepState.update(T)}))}onStepChange(t,e){var i;return n(this,void 0,void 0,(function*(){const{htmlUrl:r,direction:s,next:a,screenState:l}=t,c=document.createElement("template"),{body:u}=yield O(r,"text");c.innerHTML=u;const d=c.content.cloneNode(!0),h=((t,e)=>{var n;const o=Array.from(t.querySelectorAll("script[data-id]")).map((n=>{var o;const i=n.getAttribute("data-id"),r=null===(o=t.getElementById(i))||void 0===o?void 0:o.innerHTML,s=Function(r).bind(n.previousSibling,e);return n.remove(),s}));return null===(n=t.querySelector("scripts"))||void 0===n||n.remove(),o})(d,yield this.getExecutionContext());this.sdk.webauthn.helpers.isSupported()?yield o(this,di,"m",bi).call(this,d,a):d.querySelectorAll(`button[${p}="biometrics"]`).forEach((t=>t.setAttribute("disabled","true"))),D(d,l),((t,e)=>{var n;e&&(null===(n=null==t?void 0:t.style)||void 0===n||n.setProperty("--totp-image",`url(data:image/jpg;base64,${e})`))})(d.querySelector("div"),null===(i=null==l?void 0:l.totp)||void 0===i?void 0:i.image);const f=()=>n(this,void 0,void 0,(function*(){try{h.forEach((t=>{t()}))}catch(t){this.logger.error(t.message)}this.rootElement.replaceChildren(d);const t=!e.htmlUrl;((t,e,n)=>{if(!0===e||"skipFirstScreen"===e&&!n){const e=t.querySelector('input:not([aria-hidden="true"])');null==e||e.focus()}})(this.rootElement,this.autoFocus,t),o(this,di,"m",xi).call(this,a),o(this,di,"m",ji).call(this,"page-updated",{});if(this.rootElement.querySelector(`[${p}="polling"]`)){const t=yield a(y,{});o(this,gi,"f").call(this,t)}}));s?o(this,di,"m",Oi).call(this,f,s):f()}))}}hi=new WeakMap,pi=new WeakMap,fi=new WeakMap,gi=new WeakMap,vi=new WeakMap,di=new WeakSet,mi=function(t){const e=t.name;if(!["email"].includes(e)){const n=`user-${e}`;t.name=n,t.addEventListener("input",(()=>{t.name=t.value?e:n}))}},bi=function(t,e){var r;return n(this,void 0,void 0,(function*(){null===(r=o(this,pi,"f"))||void 0===r||r.abort();const s=t.querySelector('input[autocomplete="webauthn"]');if(s&&(yield N())){const{options:t,transactionId:r}=(yield o(this,vi,"f").call(this))||{};t&&r&&(o(this,di,"m",mi).call(this,s),i(this,pi,new AbortController,"f"),this.sdk.webauthn.helpers.conditional(t,o(this,pi,"f")).then((t=>n(this,void 0,void 0,(function*(){const n=yield e(s.id,{transactionId:r,response:t});o(this,gi,"f").call(this,n)})))).catch((t=>{"AbortError"!==t.name&&this.logger.error("Conditional login failed",t.message)})))}}))},wi=function(){return Array.from(this.shadowRoot.querySelectorAll(".descope-input")).every((t=>(t.reportValidity(),t.checkValidity())))},yi=function(){return Array.from(this.shadowRoot.querySelectorAll(`*[name]:not([${d}])`)).reduce(((t,e)=>e.name?Object.assign(t,{[e.name]:e.value}):t),{})},ki=function(t){const e=this.nextRequestStatus.subscribe((({isLoading:n})=>{var o,i;n?null===(o=null==t?void 0:t.classList)||void 0===o||o.add("loading"):(this.nextRequestStatus.unsubscribe(e),null===(i=null==t?void 0:t.classList)||void 0===i||i.remove("loading"))}))},Ii=function(t,e){return n(this,void 0,void 0,(function*(){if(t.formNoValidate||o(this,di,"m",wi).call(this)){const i=null==t?void 0:t.getAttribute("id");o(this,di,"m",ki).call(this,t);const r=o(this,di,"m",yi).call(this),s=(n=t,Array.from((null==n?void 0:n.attributes)||[]).reduce(((t,e)=>{var n;const o=null===(n=new RegExp("^data-descope-(\\S+)$").exec(e.name))||void 0===n?void 0:n[1];return o?Object.assign(t,{[o]:e.value}):t}),{})),a=Object.assign(Object.assign(Object.assign({},s),r),{origin:window.location.origin}),l=yield e(i,a);o(this,gi,"f").call(this,l)}var n}))},xi=function(t){this.rootElement.querySelectorAll("button").forEach((e=>{e.onclick=()=>{o(this,di,"m",Ii).call(this,e,t)}}))},Oi=function(t,e){this.rootElement.addEventListener("transitionend",(()=>{this.rootElement.classList.remove("fade-out"),t()}),{once:!0});const n=e===k.forward?"slide-forward":"slide-backward";Array.from(this.rootElement.getElementsByClassName("input-container")).forEach(((t,e)=>{t.style["transition-delay"]=40*e+"ms",t.classList.add(n)})),this.rootElement.classList.add("fade-out")},ji=function(t,e){this.dispatchEvent(new CustomEvent(t,{detail:e}))},customElements.define("descope-wc",qi);const $i=document.createElement("template");$i.innerHTML=`\n<style>\n .debugger {\n width: 300px;\n height: 200px;\n background-color: #FAFAFA;\n position: fixed;\n font-family: "Helvetica Neue", sans-serif;\n box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid lightgrey;\n pointer-events: initial;\n display: flex;\n flex-direction: column;\n min-width: 200px;\n max-width: 600px;\n max-height: calc(100% - 64px);\n min-height: 200px;\n resize: both;\n }\n\n .header {\n padding: 8px 16px;\n display: flex;\n align-items: center;\n background-color: #EEEEEE;\n cursor: move;\n border-bottom: 1px solid #e0e0e0;\n }\n\n .content {\n font-size: 14px;\n flex-grow: 1;\n overflow: auto;\n }\n\n .msg {\n border-bottom: 1px solid lightgrey; \n padding: 8px 16px;\n display: flex;\n gap: 5px;\n background-color: #FAFAFA;\n }\n\n .msg.collapsible {\n cursor: pointer;\n }\n\n .empty-state {\n padding: 8px 16px;\n background-color: #FAFAFA;\n }\n \n\n .msg.collapsible:not(.collapsed) {\n background-color: #F5F5F5;\n }\n\n .msg_title {\n padding-bottom: 5px;\n display: flex;\n gap: 8px;\n font-weight: 500;\n }\n\n .msg svg {\n padding: 1px;\n flex-shrink: 0;\n margin-top: -2px;\n }\n\n .msg_content {\n overflow: hidden;\n flex-grow: 1;\n margin-right:5px;\n } \n\n .msg_desc {\n color: #646464;\n cursor: initial;\n } \n\n .msg.collapsed .msg_desc {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n .msg.collapsible.collapsed .chevron {\n transform: rotate(-45deg) translateX(-2px);\n }\n\n .msg.collapsible .chevron {\n content: "";\n width:6px;\n height:6px;\n border-bottom: 2px solid grey;\n border-right: 2px solid grey;\n transform: rotate(45deg) translateX(-1px);\n margin: 5px;\n flex-shrink:0;\n }\n</style>\n\n<div style="top:32px; left:${window.innerWidth-300-32}px;" class="debugger">\n <div class="header">\n <span>Debugger messages</span>\n </div>\n <div class="content">\n <div class="empty-state">\n No errors detected 👀\n </div>\n </div>\n</div>\n`;class Di extends HTMLElement{constructor(){super(),Si.add(this),Ci.set(this,new $({messages:[]})),Ei.set(this,void 0),_i.set(this,void 0),Ai.set(this,void 0),Ui.set(this,{resize:o(this,Si,"m",Li).bind(this)}),this.attachShadow({mode:"open"}),this.shadowRoot.appendChild($i.content.cloneNode(!0)),i(this,Ei,this.shadowRoot.querySelector(".debugger"),"f"),i(this,_i,o(this,Ei,"f").querySelector(".content"),"f"),i(this,Ai,o(this,Ei,"f").querySelector(".header"),"f")}updateData(t){o(this,Ci,"f").update((e=>({messages:e.messages.concat(t)})))}connectedCallback(){var t;((t,e,n)=>{let o=0,i=0,r=0,s=0;function a(e){e.preventDefault(),o=r-e.clientX,i=s-e.clientY,r=e.clientX,s=e.clientY;const[a,l]=W(t,t.offsetLeft-o,t.offsetTop-i,n);t.style.top=`${l}px`,t.style.left=`${a}px`}function l(){document.onmouseup=null,document.onmousemove=null}function c(t){t.preventDefault(),r=t.clientX,s=t.clientY,document.onmouseup=l,document.onmousemove=a}e?e.onmousedown=c:t.onmousedown=c})(o(this,Ei,"f"),o(this,Ai,"f"),{top:"all",bottom:100,left:100,right:100}),window.addEventListener("resize",o(this,Ui,"f").resize),(t=o(this,Ei,"f")).onmousemove=e=>{(e.target.w&&e.target.w!==e.target.offsetWidth||e.target.h&&e.target.h!==e.target.offsetHeight)&&t.onresize(e),e.target.w=e.target.offsetWidth,e.target.h=e.target.offsetHeight},o(this,Ei,"f").onresize=o(this,Si,"m",Ti).bind(this),o(this,Ci,"f").subscribe(o(this,Si,"m",Ri).bind(this))}disconnectedCallback(){o(this,Ci,"f").unsubscribeAll(),window.removeEventListener("resize",o(this,Ui,"f").resize)}}Ci=new WeakMap,Ei=new WeakMap,_i=new WeakMap,Ai=new WeakMap,Ui=new WeakMap,Si=new WeakSet,Ri=function(t){o(this,Si,"m",Pi).call(this,t),o(this,Si,"m",Ti).call(this)},Pi=function(t){o(this,_i,"f").innerHTML=t.messages.map((t=>`\n <div class="msg">\n <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M5.99984 13.167L8.99984 10.167L11.9998 13.167L13.1665 12.0003L10.1665 9.00033L13.1665 6.00033L11.9998 4.83366L8.99984 7.83366L5.99984 4.83366L4.83317 6.00033L7.83317 9.00033L4.83317 12.0003L5.99984 13.167ZM8.99984 17.3337C7.84706 17.3337 6.76373 17.1148 5.74984 16.677C4.73595 16.2398 3.854 15.6462 3.104 14.8962C2.354 14.1462 1.76039 13.2642 1.32317 12.2503C0.885393 11.2364 0.666504 10.1531 0.666504 9.00033C0.666504 7.84755 0.885393 6.76421 1.32317 5.75033C1.76039 4.73644 2.354 3.85449 3.104 3.10449C3.854 2.35449 4.73595 1.7606 5.74984 1.32283C6.76373 0.885603 7.84706 0.666992 8.99984 0.666992C10.1526 0.666992 11.2359 0.885603 12.2498 1.32283C13.2637 1.7606 14.1457 2.35449 14.8957 3.10449C15.6457 3.85449 16.2393 4.73644 16.6765 5.75033C17.1143 6.76421 17.3332 7.84755 17.3332 9.00033C17.3332 10.1531 17.1143 11.2364 16.6765 12.2503C16.2393 13.2642 15.6457 14.1462 14.8957 14.8962C14.1457 15.6462 13.2637 16.2398 12.2498 16.677C11.2359 17.1148 10.1526 17.3337 8.99984 17.3337ZM8.99984 15.667C10.8609 15.667 12.4373 15.0212 13.729 13.7295C15.0207 12.4378 15.6665 10.8614 15.6665 9.00033C15.6665 7.13921 15.0207 5.56283 13.729 4.27116C12.4373 2.97949 10.8609 2.33366 8.99984 2.33366C7.13873 2.33366 5.56234 2.97949 4.27067 4.27116C2.979 5.56283 2.33317 7.13921 2.33317 9.00033C2.33317 10.8614 2.979 12.4378 4.27067 13.7295C5.56234 15.0212 7.13873 15.667 8.99984 15.667Z" fill="#ED404A"/>\n</svg>\n\n <div class="msg_content">\n <div class="msg_title">\n ${t.title}\n </div>\n <div class="msg_desc">\n ${t.description}\n </div>\n </div>\n <div class="chevron"></div>\n </div>\n `)).join("")},Ti=function(){o(this,_i,"f").querySelectorAll(".msg").forEach((t=>{const e=t.querySelector(".msg_desc"),n=e.scrollWidth>e.clientWidth,o=e.clientHeight>20;n||o?(t.classList.add("collapsible"),t.onclick=e=>{e.target.classList.contains("msg_desc")||t.classList.toggle("collapsed")}):(t.classList.remove("collapsible"),t.onclick=null)}))},Li=function(){const[t,e]=W(o(this,Ei,"f"),Number.parseInt(o(this,Ei,"f").style.left,10),Number.parseInt(o(this,Ei,"f").style.top,10),{top:"all",bottom:100,left:100,right:100});o(this,Ei,"f").style.top=`${e}px`,o(this,Ei,"f").style.left=`${t}px`},customElements.define("descope-debugger",Di);var Ni=Object.freeze({__proto__:null,default:Di})}();
package/package.json CHANGED
@@ -1,71 +1,89 @@
1
1
  {
2
- "name": "@descope/web-component",
3
- "version": "1.0.0",
4
- "main": "dist/descope-wc",
5
- "types": "dist/descope-wc.d.ts",
6
- "description": "Descope WC",
7
- "scripts": {
8
- "start": "rollup -c rollup.config.app.js -w",
9
- "build": "rollup -c",
10
- "test": "jest",
11
- "lint": "eslint ./src --fix",
12
- "format": "prettier ./src --write",
13
- "prepublishOnly": "npm run build"
14
- },
15
- "license": "ISC",
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/descope/web-component.git"
19
- },
20
- "files": [
21
- "dist"
22
- ],
23
- "devDependencies": {
24
- "@open-wc/rollup-plugin-html": "1.2.5",
25
- "@rollup/plugin-commonjs": "^22.0.0",
26
- "@rollup/plugin-node-resolve": "^13.3.0",
27
- "@rollup/plugin-replace": "^4.0.0",
28
- "@rollup/plugin-typescript": "^8.3.0",
29
- "@testing-library/dom": "^8.19.0",
30
- "@types/jest": "^29.0.0",
31
- "@types/lodash.get": "^4.4.7",
32
- "@types/lodash.set": "^4.3.7",
33
- "eslint": "8.26.0",
34
- "eslint-config-airbnb": "19.0.4",
35
- "eslint-config-airbnb-typescript": "17.0.0",
36
- "eslint-config-prettier": "8.5.0",
37
- "eslint-config-standard": "17.0.0",
38
- "eslint-import-resolver-typescript": "3.4.0",
39
- "eslint-plugin-import": "2.26.0",
40
- "eslint-plugin-jest": "26.9.0",
41
- "eslint-plugin-jest-dom": "4.0.2",
42
- "eslint-plugin-jest-formatting": "3.1.0",
43
- "eslint-plugin-n": "15.3.0",
44
- "eslint-plugin-no-only-tests": "3.0.0",
45
- "eslint-plugin-prefer-arrow": "1.2.3",
46
- "eslint-plugin-prettier": "4.2.1",
47
- "eslint-plugin-promise": "6.1.1",
48
- "husky": "^8.0.1",
49
- "jest": "^29.0.0",
50
- "jest-environment-jsdom": "^29.0.0",
51
- "prettier": "^2.6.2",
52
- "rollup": "^2.62.0",
53
- "rollup-plugin-browsersync": "^1.3.3",
54
- "rollup-plugin-delete": "^2.0.0",
55
- "rollup-plugin-dts": "^4.2.2",
56
- "rollup-plugin-livereload": "^2.0.5",
57
- "rollup-plugin-terser": "7.0.2",
58
- "shadow-dom-testing-library": "^1.2.0",
59
- "string-to-arraybuffer": "^1.0.2",
60
- "ts-jest": "^29.0.0",
61
- "ts-node": "10.9.1",
62
- "typescript": "^4.5.3"
63
- },
64
- "dependencies": {
65
- "@descope/core-js-sdk": "0.0.41-alpha.17",
66
- "@descope/web-js-sdk": "0.1.0-alpha.3"
67
- },
68
- "overrides": {
69
- "terser": "5.15.1"
70
- }
2
+ "name": "@descope/web-component",
3
+ "version": "2.0.1",
4
+ "author": "Descope Team <info@descope.com>",
5
+ "homepage": "https://github.com/descope/web-component",
6
+ "bugs": {
7
+ "url": "https://github.com/descope/web-component/issues",
8
+ "email": "help@descope.com"
9
+ },
10
+ "main": "dist/index.js",
11
+ "module": "dist/esm/index.js",
12
+ "types": "dist/index.d.ts",
13
+ "description": "Descope WC",
14
+ "scripts": {
15
+ "start": "rollup -c rollup.config.app.serve.js -w",
16
+ "build-app": "rollup -c rollup.config.app.js",
17
+ "build": "rollup -c",
18
+ "test": "jest",
19
+ "prepare": "husky install",
20
+ "lint": "eslint '+(src|test)/**/*.ts' --fix",
21
+ "format": "prettier . -w --ignore-path .gitignore",
22
+ "format-check": "prettier . --check --ignore-path .gitignore",
23
+ "format-lint": "pretty-quick --staged --ignore-path .gitignore && lint-staged",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "lint-staged": {
27
+ "+(src|test)/**/*.{js,ts,jsx,tsx}": [
28
+ "npm run lint"
29
+ ]
30
+ },
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/descope/web-component.git"
35
+ },
36
+ "files": [
37
+ "dist"
38
+ ],
39
+ "devDependencies": {
40
+ "@open-wc/rollup-plugin-html": "1.2.5",
41
+ "@rollup/plugin-commonjs": "^24.0.0",
42
+ "@rollup/plugin-node-resolve": "^15.0.0",
43
+ "@rollup/plugin-replace": "^5.0.0",
44
+ "@rollup/plugin-typescript": "^11.0.0",
45
+ "@testing-library/dom": "^8.19.0",
46
+ "@testing-library/jest-dom": "^5.16.5",
47
+ "@types/jest": "^29.0.0",
48
+ "dotenv": "^16.0.3",
49
+ "eslint": "8.34.0",
50
+ "eslint-config-airbnb": "19.0.4",
51
+ "eslint-config-airbnb-typescript": "17.0.0",
52
+ "eslint-config-prettier": "8.6.0",
53
+ "eslint-config-standard": "17.0.0",
54
+ "eslint-import-resolver-typescript": "3.4.0",
55
+ "eslint-plugin-import": "2.27.5",
56
+ "eslint-plugin-jest": "27.2.1",
57
+ "eslint-plugin-jest-dom": "4.0.3",
58
+ "eslint-plugin-jest-formatting": "3.1.0",
59
+ "eslint-plugin-n": "15.6.1",
60
+ "eslint-plugin-no-only-tests": "3.1.0",
61
+ "eslint-plugin-prefer-arrow": "1.2.3",
62
+ "eslint-plugin-prettier": "4.2.1",
63
+ "eslint-plugin-promise": "6.1.1",
64
+ "husky": "^8.0.1",
65
+ "jest": "^29.0.0",
66
+ "jest-environment-jsdom": "^29.0.0",
67
+ "lint-staged": "^13.0.3",
68
+ "prettier": "^2.6.2",
69
+ "pretty-quick": "^3.1.3",
70
+ "rollup": "^2.62.0",
71
+ "rollup-plugin-browsersync": "^1.3.3",
72
+ "rollup-plugin-define": "^1.0.1",
73
+ "rollup-plugin-delete": "^2.0.0",
74
+ "rollup-plugin-dts": "^4.2.2",
75
+ "rollup-plugin-livereload": "^2.0.5",
76
+ "rollup-plugin-terser": "7.0.2",
77
+ "shadow-dom-testing-library": "^1.2.0",
78
+ "string-to-arraybuffer": "^1.0.2",
79
+ "ts-jest": "^29.0.0",
80
+ "ts-node": "10.9.1",
81
+ "typescript": "^4.5.3"
82
+ },
83
+ "dependencies": {
84
+ "@descope/web-js-sdk": "1.0.0"
85
+ },
86
+ "overrides": {
87
+ "terser": "5.16.3"
88
+ }
71
89
  }
@@ -1,13 +0,0 @@
1
- declare class DescopeWc extends HTMLElement {
2
- #private;
3
- static get observedAttributes(): string[];
4
- constructor();
5
- get 'project-id'(): string;
6
- get 'flow-id'(): string;
7
- get 'base-url'(): string;
8
- connectedCallback(): void;
9
- disconnectedCallback(): void;
10
- attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
11
- }
12
-
13
- export { DescopeWc as default };
@@ -1 +0,0 @@
1
- !function(){"use strict";var t=function(){return t=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t},t.apply(this,arguments)};function e(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(t);o<r.length;o++)e.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(t,r[o])&&(n[r[o]]=t[r[o]])}return n}function n(t,e,n,r){return new(n||(n=Promise))((function(o,i){function s(t){try{c(r.next(t))}catch(t){i(t)}}function a(t){try{c(r.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(s,a)}c((r=r.apply(t,e||[])).next())}))}function r(t,e,n,r){if("a"===n&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===n?r:"a"===n?r.call(t):r?r.value:e.get(t)}function o(t,e,n,r,o){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!o)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?o.call(t,n):o?o.value=n:e.set(t,n),n}function i(t){this.message=t}i.prototype=new Error,i.prototype.name="InvalidCharacterError";var s="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(t){var e=String(t).replace(/=+$/,"");if(e.length%4==1)throw new i("'atob' failed: The string to be decoded is not correctly encoded.");for(var n,r,o=0,s=0,a="";r=e.charAt(s++);~r&&(n=o%4?64*n+r:r,o++%4)?a+=String.fromCharCode(255&n>>(-2*o&6)):0)r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(r);return a};function a(t){this.message=t}function c(t,e){if("string"!=typeof t)throw new a("Invalid token specified");var n=!0===(e=e||{}).header?0:1;try{return JSON.parse(function(t){var e=t.replace(/-/g,"+").replace(/_/g,"/");switch(e.length%4){case 0:break;case 2:e+="==";break;case 3:e+="=";break;default:throw"Illegal base64url string!"}try{return function(t){return decodeURIComponent(s(t).replace(/(.)/g,(function(t,e){var n=e.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n="0"+n),"%"+n})))}(e)}catch(t){return s(e)}}(t.split(".")[n]))}catch(t){throw new a("Invalid token specified: "+t.message)}}a.prototype=new Error,a.prototype.name="InvalidTokenError";var u="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function l(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var d="__lodash_hash_undefined__",h="[object Function]",f="[object GeneratorFunction]",p=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,g=/^\w*$/,v=/^\./,b=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,w=/\\(\\)?/g,y=/^\[object .+?Constructor\]$/,m="object"==typeof u&&u&&u.Object===Object&&u,I="object"==typeof self&&self&&self.Object===Object&&self,O=m||I||Function("return this")();var j,k=Array.prototype,x=Function.prototype,S=Object.prototype,_=O["__core-js_shared__"],E=(j=/[^.]+$/.exec(_&&_.keys&&_.keys.IE_PROTO||""))?"Symbol(src)_1."+j:"",U=x.toString,P=S.hasOwnProperty,R=S.toString,C=RegExp("^"+U.call(P).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),T=O.Symbol,D=k.splice,A=F(O,"Map"),M=F(Object,"create"),L=T?T.prototype:void 0,N=L?L.toString:void 0;function q(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function J(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function $(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function K(t,e){for(var n,r,o=t.length;o--;)if((n=t[o][0])===(r=e)||n!=n&&r!=r)return o;return-1}function W(t,e){var n;e=function(t,e){if(V(t))return!1;var n=typeof t;if("number"==n||"symbol"==n||"boolean"==n||null==t||X(t))return!0;return g.test(t)||!p.test(t)||null!=e&&t in Object(e)}(e,t)?[e]:V(n=e)?n:z(n);for(var r=0,o=e.length;null!=t&&r<o;)t=t[G(e[r++])];return r&&r==o?t:void 0}function B(t){if(!Q(t)||(e=t,E&&E in e))return!1;var e,n=function(t){var e=Q(t)?R.call(t):"";return e==h||e==f}(t)||function(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}(t)?C:y;return n.test(function(t){if(null!=t){try{return U.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}function H(t,e){var n,r,o=t.__data__;return("string"==(r=typeof(n=e))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?o["string"==typeof e?"string":"hash"]:o.map}function F(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return B(n)?n:void 0}q.prototype.clear=function(){this.__data__=M?M(null):{}},q.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},q.prototype.get=function(t){var e=this.__data__;if(M){var n=e[t];return n===d?void 0:n}return P.call(e,t)?e[t]:void 0},q.prototype.has=function(t){var e=this.__data__;return M?void 0!==e[t]:P.call(e,t)},q.prototype.set=function(t,e){return this.__data__[t]=M&&void 0===e?d:e,this},J.prototype.clear=function(){this.__data__=[]},J.prototype.delete=function(t){var e=this.__data__,n=K(e,t);return!(n<0)&&(n==e.length-1?e.pop():D.call(e,n,1),!0)},J.prototype.get=function(t){var e=this.__data__,n=K(e,t);return n<0?void 0:e[n][1]},J.prototype.has=function(t){return K(this.__data__,t)>-1},J.prototype.set=function(t,e){var n=this.__data__,r=K(n,t);return r<0?n.push([t,e]):n[r][1]=e,this},$.prototype.clear=function(){this.__data__={hash:new q,map:new(A||J),string:new q}},$.prototype.delete=function(t){return H(this,t).delete(t)},$.prototype.get=function(t){return H(this,t).get(t)},$.prototype.has=function(t){return H(this,t).has(t)},$.prototype.set=function(t,e){return H(this,t).set(t,e),this};var z=Z((function(t){var e;t=null==(e=t)?"":function(t){if("string"==typeof t)return t;if(X(t))return N?N.call(t):"";var e=t+"";return"0"==e&&1/t==-1/0?"-0":e}(e);var n=[];return v.test(t)&&n.push(""),t.replace(b,(function(t,e,r,o){n.push(r?o.replace(w,"$1"):e||t)})),n}));function G(t){if("string"==typeof t||X(t))return t;var e=t+"";return"0"==e&&1/t==-1/0?"-0":e}function Z(t,e){if("function"!=typeof t||e&&"function"!=typeof e)throw new TypeError("Expected a function");var n=function(){var r=arguments,o=e?e.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var s=t.apply(this,r);return n.cache=i.set(o,s),s};return n.cache=new(Z.Cache||$),n}Z.Cache=$;var V=Array.isArray;function Q(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function X(t){return"symbol"==typeof t||function(t){return!!t&&"object"==typeof t}(t)&&"[object Symbol]"==R.call(t)}var Y,tt=function(t,e,n){var r=null==t?void 0:W(t,e);return void 0===r?n:r},et="/v1/auth/accesskey/exchange",nt="/v1/auth/otp/verify",rt="/v1/auth/otp/signin",ot="/v1/auth/otp/signup",it={email:"/v1/auth/otp/update/email",phone:"/v1/auth/otp/update/phone"},st="/v1/auth/otp/signup-in",at="/v1/auth/magiclink/verify",ct="/v1/auth/magiclink/signin",ut="/v1/auth/magiclink/signup",lt="/v1/auth/magiclink/pending-session",dt={email:"/v1/auth/magiclink/update/email",phone:"/v1/auth/magiclink/update/email"},ht="/v1/auth/magiclink/signup-in",ft="/v1/auth/oauth/authorize",pt="/v1/auth/saml/authorize",gt="/v1/auth/totp/verify",vt="/v1/auth/totp/signup",bt="/v1/user/totp/update",wt={start:"/v1/auth/webauthn/signup/start",finish:"/v1/auth/webauthn/signup/finish"},yt={start:"/v1/auth/webauthn/signin/start",finish:"/v1/auth/webauthn/signin/finish"},mt={start:"v1/auth/webauthn/update/start",finish:"/v1/auth/webauthn/update/finish"},It="/v1/flow/start",Ot="/v1/flow/next";!function(t){t.get="GET",t.delete="DELETE",t.post="POST",t.put="PUT"}(Y||(Y={}));const jt=()=>{const t={};return{headers(e){const n="function"==typeof e.entries?Object.fromEntries(e.entries()):e;return t.Headers=JSON.stringify(n),this},body(e){return t.Body=e,this},url(e){return t.Url=e.toString(),this},method(e){return t.Method=e,this},title(e){return t.Title=e,this},status(e){return t.Status=e,this},build:()=>Object.keys(t).flatMap((e=>t[e]?[`${"Title"!==e?`${e}: `:""}${t[e]}`]:[])).join("\n")}},kt=(...t)=>new Headers(t.reduce(((t,e)=>{const n=(t=>Array.isArray(t)?t:t instanceof Headers?Array.from(t.entries()):t?Object.entries(t):[])(e);return n.reduce(((e,[n,r])=>(t[n]=r,t)),t),t}),{})),xt=t=>void 0===t?void 0:JSON.stringify(t),St=(t,e="")=>{let n=t;return""!==e&&(n=n+":"+e),{Authorization:`Bearer ${n}`}},_t=({baseUrl:t,projectId:e,baseConfig:n,logger:r,hooks:o,cookiePolicy:i})=>{const s=((t,e)=>{const n=e||fetch;if(!n)throw new Error("fetch is not defined");return t?async(...e)=>{t.log((t=>jt().title("Request").url(t[0]).method(t[1].method).headers(t[1].headers).body(t[1].body).build())(e));const r=await n(...e);return t[r.ok?"log":"error"](await(async t=>{const e=await t.text();return t.text=()=>Promise.resolve(e),t.json=()=>Promise.resolve(JSON.parse(e)),jt().title("Response").url(t.url.toString()).status(`${t.status} ${t.statusText}`).headers(t.headers).body(e).build()})(r)),r}:n})(r),a=async r=>{const a=(null==o?void 0:o.beforeRequest)?o.beforeRequest(r):r,{path:c,body:u,headers:l,queryParams:d,method:h,token:f}=a,p=await s((({path:t,baseUrl:e,queryParams:n})=>{const r=new URL(t,e);return n&&(r.search=new URLSearchParams(n).toString()),r})({path:c,baseUrl:t,queryParams:d}),{headers:kt(St(e,f),(null==n?void 0:n.baseHeaders)||{},l),method:h,body:xt(u),credentials:i||"include"});return(null==o?void 0:o.afterRequest)&&o.afterRequest(r,null==p?void 0:p.clone()),p};return{get:(t,{headers:e,queryParams:n,token:r}={})=>a({path:t,headers:e,queryParams:n,body:void 0,method:Y.get,token:r}),post:(t,e,{headers:n,queryParams:r,token:o}={})=>a({path:t,headers:n,queryParams:r,body:e,method:Y.post,token:o}),put:(t,e,{headers:n,queryParams:r,token:o}={})=>a({path:t,headers:n,queryParams:r,body:e,method:Y.put,token:o}),delete:(t,e,{headers:n,queryParams:r,token:o}={})=>a({path:t,headers:n,queryParams:r,body:e,method:Y.delete,token:o})}};function Et(t){const{exp:e}=Dt(t);return(new Date).getTime()/1e3>e}function Ut(t,e){return Tt(t,e,"permissions")}function Pt(t,e){return Tt(t,e,"roles")}const Rt=(...t)=>t.join("/").replace(/\/{2,}/g,"/");async function Ct(t){const e=await t,n={code:e.status,ok:e.ok,response:e},r=await e.json();return e.ok?n.data=r:n.error=r,n}function Tt(t,e,n){var r;let o=Dt(t);e&&(o=null===(r=o.tenants)||void 0===r?void 0:r[e]);const i=o[n];return Array.isArray(i)?i:[]}function Dt(t){if("string"!=typeof t||!t)throw new Error("Invalid token provided");return c(t)}const At=(t,e)=>(n=e)=>e=>!t(e)&&n.replace("{val}",e),Mt=(...t)=>({validate:e=>(t.forEach((t=>{const n=t(e);if(n)throw new Error(n)})),!0)}),Lt=t=>e=>t.test(e),Nt=Lt(/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/),qt=Lt(/^\+[1-9]{1}[0-9]{3,14}$/),Jt=At(Nt,'"{val}" is not a valid email'),$t=At(qt,'"{val}" is not a valid phone number'),Kt=At((1,t=>t.length>=1),"Minimum length is 1");const Wt=At((t=>"string"==typeof t),"Input is not a string"),Bt=(...t)=>e=>(...n)=>(t.forEach(((t,e)=>Mt(...t).validate(n[e]))),e(...n)),Ht=t=>[Wt(`"${t}" must be a string`),Kt(`"${t}" must not be empty`)],Ft=t=>[Wt(`"${t}" must be a string`),Jt()],zt=t=>[Wt(`"${t}" must be a string`),$t()],Gt=Bt(Ht("accessKey")),Zt=t=>({exchange:Gt((e=>Ct(t.get(et,{token:e}))))});var Vt,Qt,Xt,Yt,te;!function(t){t.sms="sms",t.whatsapp="whatsapp"}(Vt||(Vt={})),function(t){t.email="email",t.sms="sms",t.whatsapp="whatsapp"}(Qt||(Qt={})),function(t){t.waiting="waiting",t.running="running",t.completed="completed",t.failed="failed"}(Xt||(Xt={})),function(t){t.signUp="signup",t.signIn="signin",t.verify="verify"}(Yt||(Yt={})),function(t){t.signUp="signup",t.signIn="signin",t.verify="verify",t.updatePhone="updatePhone"}(te||(te={}));const ee=Ht("identifier"),ne=Bt(ee,Ht("code")),re=Bt(ee),oe=Bt(ee,zt("phone")),ie=Bt(ee,Ft("email")),se=t=>({verify:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:ne(((e,r)=>Ct(t.post(Rt(nt,n),{code:r,externalId:e}))))})),{}),signIn:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:re((e=>Ct(t.post(Rt(rt,n),{externalId:e}))))})),{}),signUp:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:re(((e,r)=>Ct(t.post(Rt(ot,n),{externalId:e,user:r}))))})),{}),signUpOrIn:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:re((e=>Ct(t.post(Rt(st,n),{externalId:e}))))})),{}),update:{email:ie(((e,n,r)=>Ct(t.post(it.email,{externalId:e,email:n},{token:r})))),phone:Object.keys(Vt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:oe(((e,r,o)=>Ct(t.post(Rt(it.phone,n),{externalId:e,phone:r},{token:o}))))})),{})}}),ae=Ht("identifier"),ce=Ht("uri"),ue=Bt(Ht("token")),le=Bt(ae,ce),de=Bt(Ht("pendingRef")),he=Bt(ae,zt("phone"),ce),fe=Bt(ae,Ft("email"),ce),pe=t=>({verify:ue((e=>Ct(t.post(at,{token:e})))),signIn:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:le(((e,r)=>Ct(t.post(Rt(ct,n),{externalId:e,URI:r,crossDevice:!0}))))})),{}),signUpOrIn:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:le(((e,r)=>Ct(t.post(Rt(ht,n),{externalId:e,URI:r,crossDevice:!0}))))})),{}),signUp:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:le(((e,r,o)=>Ct(t.post(Rt(ut,n),{externalId:e,URI:r,user:o,crossDevice:!0}))))})),{}),waitForSession:de(((e,n)=>new Promise((r=>{const{pollingIntervalMs:o,timeoutMs:i}=(({pollingIntervalMs:t=1e3,timeoutMs:e=6e5}={})=>({pollingIntervalMs:Math.max(t||1e3,1e3),timeoutMs:Math.min(e||6e5,6e5)}))(n);let s;const a=setInterval((async()=>{const n=await t.post(lt,{pendingRef:e});n.ok&&(clearInterval(a),s&&clearTimeout(s),r(Ct(Promise.resolve(n))))}),o);s=setTimeout((()=>{r({error:{message:`Session polling timeout exceeded: ${i}ms`,code:"0"},ok:!1}),clearInterval(a)}),i)})))),update:{email:fe(((e,n,r,o)=>Ct(t.post(dt.email,{externalId:e,email:n,URI:r,crossDevice:!0},{token:o})))),phone:Object.keys(Vt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:he(((e,r,o,i)=>Ct(t.post(Rt(dt.phone,n),{externalId:e,phone:r,URI:o,crossDevice:!0},{token:i}))))})),{})}}),ge=t=>({verify:ue((e=>Ct(t.post(at,{token:e})))),signIn:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:le(((e,r)=>Ct(t.post(Rt(ct,n),{externalId:e,URI:r}))))})),{}),signUp:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:le(((e,r,o)=>Ct(t.post(Rt(ut,n),{externalId:e,URI:r,user:o}))))})),{}),signUpOrIn:Object.keys(Qt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:le(((e,r)=>Ct(t.post(Rt(ht,n),{externalId:e,URI:r}))))})),{}),update:{email:fe(((e,n,r,o)=>Ct(t.post(dt.email,{externalId:e,email:n,URI:r},{token:o})))),phone:Object.keys(Vt).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:he(((e,r,o,i)=>Ct(t.post(Rt(dt.phone,n),{externalId:e,phone:r,URI:o},{token:i}))))})),{})},crossDevice:pe(t)}),ve=Bt(Ht("code")),be=t=>({exchange:ve((e=>Ct(t.get("/v1/auth/exchange",{queryParams:{code:e}}))))});var we;!function(t){t.facebook="facebook",t.github="github",t.google="google",t.microsoft="microsoft",t.gitlab="gitlab",t.apple="apple"}(we||(we={}));const ye=t=>Object.assign({start:Object.keys(we).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:async(e,{redirect:r=!1}={})=>{const o=await t.get(ft,{queryParams:Object.assign({provider:n},e&&{redirectURL:e})});if(!r||!o.ok)return Ct(Promise.resolve(o));const{url:i}=await o.json();window.location.href=i}})),{})},be(t)),me=Bt(Ht("flowId")),Ie=Bt(Ht("executionId"),Ht("stepId"),Ht("interactionId")),Oe=t=>({start:me((e=>Ct(t.post(It,{flowId:e})))),next:Ie(((e,n,r,o)=>Ct(t.post(Ot,{executionId:e,stepId:n,interactionId:r,input:o}))))}),je=Bt(Ht("tenant")),ke=t=>Object.assign({start:je((async(e,n,{redirect:r=!1}={})=>{const o=await t.get(pt,{queryParams:{tenant:e,redirectURL:n}});if(!r||!o.ok)return Ct(Promise.resolve(o));const{url:i}=await o.json();window.location.href=i}))},be(t)),xe=Ht("identifier"),Se=Bt(xe,Ht("code")),_e=Bt(xe),Ee=Bt(xe),Ue=t=>({signUp:_e(((e,n)=>Ct(t.post(vt,{externalId:e,user:n})))),verify:Se(((e,n)=>Ct(t.post(gt,{externalId:e,code:n})))),update:Ee(((e,n)=>Ct(t.post(bt,{externalId:e},{token:n}))))}),Pe=Ht("identifier"),Re=Ht("origin"),Ce=Bt(Pe,Re,Ht("name")),Te=Bt(Pe,Re),De=Bt(Pe,Re,Ht("token")),Ae=Bt(Ht("transactionId"),Ht("response")),Me=t=>({signUp:{start:Ce(((e,n,r)=>Ct(t.post(wt.start,{user:{externalId:e,name:r},origin:n})))),finish:Ae(((e,n)=>Ct(t.post(wt.finish,{transactionId:e,response:n}))))},signIn:{start:Te(((e,n)=>Ct(t.post(yt.start,{externalId:e,origin:n})))),finish:Ae(((e,n)=>Ct(t.post(yt.finish,{transactionId:e,response:n}))))},update:{start:De(((e,n,r)=>Ct(t.post(mt.start,{externalId:e,origin:n},{token:r})))),finish:Ae(((e,n)=>Ct(t.post(mt.finish,{transactionId:e,response:n}))))}}),Le=Bt(Ht("token"));var Ne;const qe=Bt([("projectId",Ne=Ht("projectId"),At(((t,e)=>t=>Mt(...e).validate(tt(t,"projectId")))(0,Ne))())])((({projectId:t,logger:e,baseUrl:n,hooks:r,cookiePolicy:o})=>{return i=_t({baseUrl:n||"https://api.descope.com",projectId:t,logger:e,hooks:r,cookiePolicy:o}),{accessKey:Zt(i),otp:se(i),magicLink:ge(i),oauth:ye(i),saml:ke(i),totp:Ue(i),webauthn:Me(i),flow:Oe(i),refresh:t=>Ct(i.get("/v1/auth/refresh",{token:t})),logout:t=>Ct(i.get("/v1/auth/logoutall",{token:t})),me:t=>Ct(i.get("/v1/auth/me",{token:t})),isJwtExpired:Le(Et),getJwtPermissions:Le(Ut),getJwtRoles:Le(Pt),httpClient:i};var i}));function Je(t,e,n){return void 0===n&&(n=0),e(n).catch((function(r){if(n>=t.maxRetries||!t.shouldRetry(r))throw r;var o,i,s,a,c=(o=t.baseDelay,i=t.maxDelay,s=t.baseDelay*Math.pow(2,n),Math.max(o,Math.min(i,s)));return(a=c,new Promise((function(t){return setTimeout(t,a)}))).then((function(){return Je(t,e,n+1)}))}))}qe.DeliveryMethods=Qt;var $e="Failed to load the JS script of the agent";function Ke(n){var r,o=n.scriptUrlPattern,i=n.token,s=n.apiKey,a=void 0===s?i:s,c=e(n,["scriptUrlPattern","token","apiKey"]),u=(r=n,"scriptUrlPattern",Object.prototype.hasOwnProperty.call(r,"scriptUrlPattern")?o:void 0),l=[];return Promise.resolve().then((function(){if(!a||"string"!=typeof a)throw new Error("API key required");return Je({maxRetries:5,baseDelay:100,maxDelay:3e3,shouldRetry:function(t){return!(t instanceof Error&&"Blocked by CSP"===t.message)}},(function(){var t,e=new Date,n=function(){return l.push({startedAt:e,finishedAt:new Date})},r=function(t,e,n,r){var o,i=document,s="securitypolicyviolation",a=function(e){var n=new URL(t,location.href),r=e.blockedURI;r!==n.href&&r!==n.protocol.slice(0,-1)&&r!==n.origin||(o=e,c())};i.addEventListener(s,a);var c=function(){return i.removeEventListener(s,a)};return Promise.resolve().then(e).then((function(t){return c(),t}),(function(t){return new Promise((function(t){return setTimeout(t)})).then((function(){if(c(),o)return function(){throw new Error("Blocked by CSP")}();throw t}))}))}(t=function(t,e){void 0===e&&(e="https://fpnpmcdn.net/v<version>/<apiKey>/loader_v<loaderVersion>.js");var n=encodeURIComponent;return e.replace(/<[^<>]+>/g,(function(e){return"<version>"===e?"3":"<apiKey>"===e?n(t):"<loaderVersion>"===e?n("3.7.1"):e}))}(a,u),(function(){return function(t){return new Promise((function(e,n){var r=document.createElement("script"),o=function(){var t;return null===(t=r.parentNode)||void 0===t?void 0:t.removeChild(r)},i=document.head||document.getElementsByTagName("head")[0];r.onload=function(){o(),e()},r.onerror=function(){o(),n(new Error($e))},r.async=!0,r.src=t,i.appendChild(r)}))}(t)}));return r.then(n,n),r}))})).then((function(){var e=window,n="__fpjs_p_l_b",r=e[n];if(function(t,e){var n,r=null===(n=Object.getOwnPropertyDescriptor)||void 0===n?void 0:n.call(Object,t,e);(null==r?void 0:r.configurable)?delete t[e]:r&&!r.writable||(t[e]=void 0)}(e,n),"function"!=typeof(null==r?void 0:r.load))throw new Error($e);return r.load(t(t({},c),{ldi:{attempts:l}}))}))}var We={exports:{}},Be={exports:{}};Be.exports=function(){function t(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)t[r]=n[r]}return t}function e(n,r){function o(e,o,i){if("undefined"!=typeof document){"number"==typeof(i=t({},r,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),e=encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var a in i)i[a]&&(s+="; "+a,!0!==i[a]&&(s+="="+i[a].split(";")[0]));return document.cookie=e+"="+n.write(o,e)+s}}function i(t){if("undefined"!=typeof document&&(!arguments.length||t)){for(var e=document.cookie?document.cookie.split("; "):[],r={},o=0;o<e.length;o++){var i=e[o].split("="),s=i.slice(1).join("=");try{var a=decodeURIComponent(i[0]);if(r[a]=n.read(s,a),t===a)break}catch(t){}}return t?r[t]:r}}return Object.create({set:o,get:i,remove:function(e,n){o(e,"",t({},n,{expires:-1}))},withAttributes:function(n){return e(this.converter,t({},this.attributes,n))},withConverter:function(n){return e(t({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(r)},converter:{value:Object.freeze(n)}})}return e({read:function(t){return'"'===t[0]&&(t=t.slice(1,-1)),t.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(t){return encodeURIComponent(t).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})}(),function(t){t.exports=Be.exports}(We);var He=l(We.exports);const Fe=t=>{const e=Ke({apiKey:t||"A9aCLRHzKCv3uL69oqDr"});return{get:async()=>{try{let t=sessionStorage.getItem("vsid");t||(t=(t=>new Proxy(new URLSearchParams(window.location.search),{get:(t,e)=>t.get(e.toString())})[t])("vsid")),t||(t=(Date.now().toString(36)+Math.random().toString(36).substring(2)+Math.random().toString(36).substring(2)).substring(0,27)),sessionStorage.setItem("vsid",t);const n=await e,r=await n.get({linkedId:t});sessionStorage.setItem("vrid",r.requestId)}catch(t){global.FB_DEBUG&&console.error(t)}}}};var ze,Ge,Ze,Ve,Qe;const Xe=t=>"string"==typeof t?t:Object.assign({},t);class Ye{constructor(t){ze.add(this),Ge.set(this,void 0),Ze.set(this,{}),Ve.set(this,0),o(this,Ge,t,"f")}get current(){return Xe(r(this,Ge,"f"))}update(t){let e=t;if("object"==typeof t&&"object"==typeof r(this,Ge,"f")&&(e=Object.assign(Object.assign({},r(this,Ge,"f")),t)),!((t,e)=>{if("string"==typeof t)return t===e;const n=t&&Object.getOwnPropertyNames(t)||[],r=e&&Object.getOwnPropertyNames(e)||[];if(n.length!==r.length)return!1;for(let r=0;r<n.length;r+=1){const o=n[r];if(t[o]!==e[o])return!1}return!0})(r(this,Ge,"f"),e)){const t=r(this,Ge,"f");o(this,Ge,e,"f"),Object.freeze(r(this,Ge,"f")),setTimeout((()=>{Object.values(r(this,Ze,"f")).forEach((n=>n(Xe(e),t)))}),0)}}subscribe(t){var e;o(this,Ve,r(this,Ve,"f")+1,"f"),r(this,Ze,"f")[r(this,Ve,"f")]=t,((e=r(this,Ge,"f"))&&"string"!=typeof e?0===Object.entries(e).length:!e)||t(Xe(r(this,Ge,"f")));const n=r(this,Ve,"f");return()=>r(this,ze,"m",Qe).call(this,n.toString())}unsubscribeAll(){o(this,Ze,{},"f")}}Ge=new WeakMap,Ze=new WeakMap,Ve=new WeakMap,ze=new WeakSet,Qe=function(t){r(this,Ze,"f")[t]&&delete r(this,Ze,"f")[t]};let tn=[];function en(t,e,n){const r=function(t){const e=t.split(".");try{if(3===e.length){const e=JSON.parse(window.atob(t.split(".")[1]));if(e.exp)return new Date(1e3*e.exp)}}catch(t){}return null}(e);if(r){let e;for(;e=tn.pop();)clearTimeout(e);const o=r.getTime()-2e4-(new Date).getTime(),i=setTimeout((()=>{t(n)}),o);tn.push(i)}}function nn(t,e,n){!function(t,{cookiePath:e,cookieDomain:n,cookieExpiration:r}){t&&He.set("DS",t,{path:e,domain:n,expires:r,sameSite:"None",secure:!0})}(t,n),function(t){localStorage&&t&&localStorage.setItem("DSR",t)}(e)}function rn(){return localStorage?null===localStorage||void 0===localStorage?void 0:localStorage.getItem("DSR"):""}async function on(t){const e=function(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=an(n.publicKey.challenge),n.publicKey.user.id=an(n.publicKey.user.id),null===(e=n.publicKey.excludeCredentials)||void 0===e||e.forEach((t=>{t.id=an(t.id)})),n}(t);return n=await navigator.credentials.create(e),JSON.stringify(Object.assign(Object.assign({},n),{rawId:cn(n.rawId),response:Object.assign(Object.assign({},n.response),{attestationObject:cn(n.response.attestationObject),clientDataJSON:cn(n.response.clientDataJSON)})}));var n}async function sn(t){const e=function(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=an(n.publicKey.challenge),null===(e=n.publicKey.allowCredentials)||void 0===e||e.forEach((t=>{t.id=an(t.id)})),n}(t);return n=await navigator.credentials.get(e),JSON.stringify(Object.assign(Object.assign({},n),{rawId:cn(n.rawId),response:Object.assign(Object.assign({},n.response),{authenticatorData:cn(n.response.authenticatorData),clientDataJSON:cn(n.response.clientDataJSON),signature:cn(n.response.signature),userHandle:n.response.userHandle?cn(n.response.userHandle):void 0})}));var n}function an(t){const e=t.replace(/_/g,"/").replace(/-/g,"+");return Uint8Array.from(atob(e),(t=>t.charCodeAt(0))).buffer}function cn(t){return btoa(String.fromCharCode.apply(null,new Uint8Array(t))).replace(/\//g,"_").replace(/\+/g,"-").replace(/=/g,"")}var un=t=>{var{autoRefresh:n=!0,persistTokens:r=!0}=t,o=e(t,["autoRefresh","persistTokens"]);Fe(o.fpKey).get().catch((()=>null));const i=o;let s,a;const c=new Ye(""),u=new Ye({});i.hooks={beforeRequest:t=>null==s?void 0:s(t),afterRequest:(t,e)=>null==a?void 0:a(t,e)};const l=qe(i),d=Object.assign(Object.assign({},l),{webauthn:(h=l,{async signUp(t,e){const n=await h.webauthn.signUp.start(t,window.location.origin,e),r=await on(n.data.options);return await h.webauthn.signUp.finish(n.data.transactionId,r)},async signIn(t){const e=await h.webauthn.signIn.start(t,window.location.origin),n=await sn(e.data.options);return await h.webauthn.signIn.finish(e.data.transactionId,n)},async update(t,e){const n=await h.webauthn.update.start(t,window.location.origin,e),r=await on(n.data.options);return await h.webauthn.update.finish(n.data.transactionId,r)},helpers:{create:on,get:sn}}),onSessionTokenChange:c.subscribe,onUserChange:u.subscribe});var h;return n&&(d.logout=(...t)=>{const e=rn(),n=[(null==t?void 0:t.shift())||e,...t],r=l.logout(...n);return localStorage&&localStorage.removeItem("DSR"),He.remove("DS"),r}),s=t=>{var e;return t.queryParams=(e=t.queryParams,Object.assign(Object.assign({},e),{vsid:sessionStorage.getItem("vsid")||"",vrid:sessionStorage.getItem("vrid")||""})),!t.token&&r&&(t.token=rn()),t},(n||r)&&(a=(t,o)=>{!async function(t,n,r,o){try{const i=await(null==n?void 0:n.json());if(i){const n=function(t){return(null==t?void 0:t.authInfo)||t||{}}(i),{sessionJwt:s,refreshJwt:a,user:c}=n,u=e(n,["sessionJwt","refreshJwt","user"]);o.persistTokens&&nn(s,a,u),r.sessionToken.update(s),r.user.update(c),s&&a&&o.autoRefresh&&en(t,s,a)}}catch(t){console.error("Could not set tokens from body",t)}}(d.refresh,o,{sessionToken:c,user:u},{autoRefresh:n,persistTokens:r})}),n&&d.refresh(),d};const ln=(null===localStorage||void 0===localStorage?void 0:localStorage.getItem("base.content.url"))||"https://static.prod.descope.com/pages",dn="descope-login-flow",hn="code",fn="redirect",pn="poll",gn="webauthnCreate",vn="webauthnGet";function bn(t){return new URLSearchParams(window.location.search).get(t)}function wn(){return bn(dn)}function yn(t){if(window.history.replaceState&&bn(t)){const e=new URL(window.location.href),n=new URLSearchParams(e.search);n.delete(t),e.search=n.toString(),window.history.replaceState({},"",e.toString())}}var mn;function In(t){return n(this,void 0,void 0,(function*(){const e=yield fetch(t,{cache:"default"});if(!e.ok)throw new Error(t);return e.text()}))}!function(t){t.backward="backward",t.forward="forward"}(mn||(mn={}));function On(t,e,n){const r=new URL(ln);return r.pathname=((...t)=>t.join("/").replace(/\/+/g,"/"))(r.pathname,t,`${e}.${n}`),r.toString()}function jn(t,e){if(!Number.isNaN(t)&&!Number.isNaN(e))return t>e?mn.forward:t<e?mn.backward:void 0}const kn=()=>{const[t="",e=""]=(wn()||"").split("_");return{executionId:t,stepId:e}},xn=(t,e)=>{!function(t){if(window.history.pushState&&t!==wn()){const e=new URL(window.location.href),n=new URLSearchParams(e.search);n.set(dn,t),e.search=n.toString(),window.history.pushState({},"",e.toString())}}([t,e].join("_"))};function Sn(){yn(dn)}const _n=(t,e,n="")=>{t.querySelectorAll(`[data-type="${e}"]`).forEach((t=>{t.textContent=n,t.classList[n?"remove":"add"]("hide")}))},En=t=>t.replace(/-./g,(t=>t[1].toUpperCase()));var Un,Pn,Rn,Cn,Tn,Dn,An,Mn,Ln,Nn,qn,Jn,$n,Kn,Wn,Bn,Hn,Fn,zn,Gn,Zn,Vn,Qn,Xn,Yn,tr,er;class nr{constructor(t={}){Un.set(this,void 0),Pn.set(this,{}),Rn.set(this,0),o(this,Un,t,"f")}get current(){return Object.assign({},r(this,Un,"f"))}update(t){const e="function"==typeof t?t(r(this,Un,"f")):t,n=Object.assign(Object.assign({},r(this,Un,"f")),e);if(!function(t,e){const n=Object.getOwnPropertyNames(t),r=Object.getOwnPropertyNames(e);if(n.length!==r.length)return!1;for(let r=0;r<n.length;r+=1){const o=n[r];if(t[o]!==e[o])return!1}return!0}(r(this,Un,"f"),n)){const t=r(this,Un,"f");o(this,Un,n,"f"),Object.freeze(r(this,Un,"f")),setTimeout((()=>{Object.values(r(this,Pn,"f")).forEach((e=>e(n,t,((t,e)=>n=>t[n]!==e[n])(n,t))))}),0)}}subscribe(t){return o(this,Rn,r(this,Rn,"f")+1,"f"),r(this,Pn,"f")[r(this,Rn,"f")]=t,r(this,Rn,"f").toString()}unsubscribe(t){const e=!!r(this,Pn,"f")[t];return e&&delete r(this,Pn,"f")[t],e}unsubscribeAll(){return o(this,Pn,{},"f"),!0}}function rr(t){return n(this,void 0,void 0,(function*(){const e=function(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=ir(n.publicKey.challenge),n.publicKey.user.id=ir(n.publicKey.user.id),null===(e=n.publicKey.excludeCredentials)||void 0===e||e.forEach((t=>{t.id=ir(t.id)})),n}(t),n=yield navigator.credentials.create(e);return r=n,JSON.stringify({id:r.id,rawId:sr(r.rawId),type:r.type,response:{attestationObject:sr(r.response.attestationObject),clientDataJSON:sr(r.response.clientDataJSON)}});var r}))}function or(t){return n(this,void 0,void 0,(function*(){const e=function(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=ir(n.publicKey.challenge),null===(e=n.publicKey.allowCredentials)||void 0===e||e.forEach((t=>{t.id=ir(t.id)})),n}(t),n=yield navigator.credentials.get(e);return r=n,JSON.stringify({id:r.id,rawId:sr(r.rawId),type:r.type,response:{authenticatorData:sr(r.response.authenticatorData),clientDataJSON:sr(r.response.clientDataJSON),signature:sr(r.response.signature),userHandle:sr(r.response.userHandle)}});var r}))}function ir(t){const e=t.replace(/-/g,"+").replace(/_/g,"/");return Uint8Array.from(atob(e),(t=>t.charCodeAt(0))).buffer}function sr(t){return btoa(String.fromCharCode.apply(null,new Uint8Array(t))).replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,"")}Un=new WeakMap,Pn=new WeakMap,Rn=new WeakMap,function(t){t.waiting="waiting",t.completed="completed",t.failed="failed",t.running="running"}(Cn||(Cn={}));const ar=document.createElement("template");ar.innerHTML="\n\t<style>\n\t\t:host {\n\t\t\tdisplay: inline-block;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\t\t\n\t\tform {\n\t\t\theight: 100%;\n\t\t\ttransition: opacity 300ms ease-in-out;\n\t\t}\n\n\t\t.fade-out {\n\t\t\topacity: 0.1;\n\t\t}\n\n\t</style>\n\t<form></form>\n\t";class cr extends HTMLElement{constructor(){super(),Tn.add(this),Dn.set(this,!1),An.set(this,new nr),Mn.set(this,new nr),Ln.set(this,new nr({isLoading:!1})),Nn.set(this,void 0),qn.set(this,void 0),Jn.set(this,void 0),$n.set(this,{popstate:r(this,Tn,"m",Hn).bind(this)}),Kn.set(this,void 0),Vn.set(this,(t=>{var e;if(r(this,Tn,"m",zn).call(this,t))return;const{executionId:n,stepId:o,status:i,action:s,screen:a,redirect:c,authInfo:u,error:l,webauthn:d}=t.data;r(this,Tn,"m",Fn).call(this,i,l,u)||r(this,An,"f").update({stepId:o,executionId:n,action:s,redirectUrl:null==c?void 0:c.url,screenId:null==a?void 0:a.id,screenErrorText:null===(e=null==a?void 0:a.state)||void 0===e?void 0:e.errorText,webauthnTransactionId:null==d?void 0:d.transactionId,webauthnOptions:null==d?void 0:d.options})})),r(this,Tn,"m",Wn).call(this),r(this,An,"f").subscribe(r(this,Tn,"m",Zn).bind(this)),r(this,Mn,"f").subscribe(r(this,Tn,"m",Xn).bind(this))}static get observedAttributes(){return["project-id","flow-id","base-url"]}get"project-id"(){return this.getAttribute("project-id")}get"flow-id"(){return this.getAttribute("flow-id")}get"base-url"(){return this.getAttribute("base-url")||void 0}connectedCallback(){if(this.shadowRoot.isConnected){o(this,Dn,!0,"f"),r(this,Tn,"m",Bn).call(this),r(this,Tn,"m",er).call(this);const{executionId:t,stepId:e}=kn(),n=bn("t")||void 0;n&&yn("t");const i=bn(hn)||void 0;i&&yn(hn),r(this,An,"f").update({projectId:this["project-id"],flowId:this["flow-id"],baseUrl:this["base-url"],stepId:e,executionId:t,token:n,code:i}),window.addEventListener("popstate",r(this,$n,"f").popstate),r(this,Nn,"f").onkeydown=t=>{if("Enter"===t.key){t.preventDefault();const e=r(this,Nn,"f").querySelectorAll("button");1===e.length&&e[0].click()}}}}disconnectedCallback(){r(this,An,"f").unsubscribeAll(),r(this,Mn,"f").unsubscribeAll(),window.removeEventListener("popstate",r(this,$n,"f").popstate)}attributeChangedCallback(t,e,n){if(this.shadowRoot.isConnected&&r(this,Dn,"f")&&e!==n&&cr.observedAttributes.includes(t)){r(this,Tn,"m",Bn).call(this);const o=null===e;r(this,An,"f").update((({stepId:e,executionId:r})=>{let i=e,s=r;return o||(s=null,i=null,Sn()),{[En(t)]:n,stepId:i,executionId:s}}))}}}Dn=new WeakMap,An=new WeakMap,Mn=new WeakMap,Ln=new WeakMap,Nn=new WeakMap,qn=new WeakMap,Jn=new WeakMap,$n=new WeakMap,Kn=new WeakMap,Vn=new WeakMap,Tn=new WeakSet,Wn=function(){this.attachShadow({mode:"open"}),this.shadowRoot.appendChild(ar.content.cloneNode(!0)),o(this,Nn,this.shadowRoot.querySelector("form"),"f"),o(this,qn,this.shadowRoot.querySelector("style"),"f")},Bn=function(){const t=["base-url"];cr.observedAttributes.forEach((e=>{if(!t.includes(e)&&!this[e])throw Error(`${e} cannot be empty`)}))},Hn=function(){const{stepId:t,executionId:e}=kn();r(this,An,"f").update({stepId:t,executionId:e})},Fn=function(t,e,n){switch(t){case Cn.failed:return Sn(),r(this,Tn,"m",tr).call(this,"error",e),!0;case Cn.completed:return Sn(),r(this,Tn,"m",tr).call(this,"success",n),!0;default:return!1}},zn=function(t){return(null==t?void 0:t.ok)||r(this,Tn,"m",tr).call(this,"error",null==t?void 0:t.error),!(null==t?void 0:t.ok)},Gn=function(t,e){o(this,Kn,un({projectId:t,baseUrl:e}),"f");const i=r(this,Kn,"f").flow.next;r(this,Kn,"f").flow.next=(...t)=>n(this,void 0,void 0,(function*(){r(this,Ln,"f").update({isLoading:!0});try{return yield i(...t)}finally{r(this,Ln,"f").update({isLoading:!1})}}))},Zn=function(t,e,i){return n(this,void 0,void 0,(function*(){const{projectId:s,flowId:a,baseUrl:c,stepId:u,executionId:l,action:d,screenId:h,screenErrorText:f,redirectUrl:p,token:g,code:v,webauthnTransactionId:b,webauthnOptions:w}=t,y=i("projectId")||i("baseUrl");if(r(this,Jn,"f")&&(clearInterval(r(this,Jn,"f")),o(this,Jn,null,"f")),y){if(!s)return;r(this,Tn,"m",Gn).call(this,s,c)}if(!l){if(!a)return;const t=yield r(this,Kn,"f").flow.start(a);return void r(this,Vn,"f").call(this,t)}if(i("token")&&g||i("code")&&v){const t=yield r(this,Kn,"f").flow.next(l,u,"submit",{token:g,code:v});return xn(t.data.executionId,t.data.stepId),r(this,Vn,"f").call(this,t),void r(this,An,"f").update({token:void 0,code:void 0})}if(d===fn)return p?void window.location.assign(p):void console.error("Did not get redirect url");if(d===gn||d===vn){if(!b||!w)return void console.error("Did not get webauthn transaction id or options");const t=d===gn?yield rr(w):yield or(w),e=yield r(this,Kn,"f").flow.next(l,u,"submit",{transactionId:b,response:t});return void r(this,Vn,"f").call(this,e)}if(d===pn&&o(this,Jn,setInterval((()=>n(this,void 0,void 0,(function*(){const t=yield r(this,Kn,"f").flow.next(l,u,"submit",{});r(this,Vn,"f").call(this,t)}))),2e3),"f"),!h)return void console.error("Refreshing the page during a flow is not supported yet");const m={direction:jn(+u,+e.stepId),screenErrorText:f,htmlUrl:On(s,h,"html")};(y||i("executionId")||i("stepId"))&&(m.next=(...t)=>r(this,Kn,"f").flow.next(l,u,...t)),r(this,Mn,"f").update(m)}))},Qn=function(t){r(this,Nn,"f").onsubmit=e=>n(this,void 0,void 0,(function*(){var n,o,i;const s=null===(n=e.submitter)||void 0===n?void 0:n.getAttribute("id"),a=r(this,Ln,"f").subscribe((({isLoading:t})=>{var n,o,i,s;t?null===(o=null===(n=e.submitter)||void 0===n?void 0:n.classList)||void 0===o||o.add("loading"):(r(this,Ln,"f").unsubscribe(a),null===(s=null===(i=e.submitter)||void 0===i?void 0:i.classList)||void 0===s||s.remove("loading"))}));e.preventDefault();const c=Object.fromEntries(new FormData(e.target).entries()),u=(l=e.submitter,Array.from((null==l?void 0:l.attributes)||[]).reduce(((t,e)=>{var n;const r=null===(n=new RegExp("^data-descope-(\\S+)$").exec(e.name))||void 0===n?void 0:n[1];return r?Object.assign(t,{[r]:e.value}):t}),{}));var l;const d=yield t(s,Object.assign(Object.assign(Object.assign({},u),c),{origin:window.location.origin}));xn(null===(o=d.data)||void 0===o?void 0:o.executionId,null===(i=d.data)||void 0===i?void 0:i.stepId),r(this,Vn,"f").call(this,d)}))},Xn=function(t,e,o){return n(this,void 0,void 0,(function*(){const e="error-message",{htmlUrl:n,validations:i={},direction:s,next:a,screenErrorText:c}=t;if(!o("htmlUrl"))return o("next")&&r(this,Tn,"m",Qn).call(this,a),void(o("screenErrorText")&&_n(this.shadowRoot,e,c));const u=document.createElement("template");u.innerHTML=yield In(n);const l=u.content.cloneNode(!0),d=(t=>{var e;const n=Array.from(t.querySelectorAll("script[data-id]")).map((e=>{var n;const r=e.getAttribute("data-id"),o=null===(n=t.getElementById(r))||void 0===n?void 0:n.innerHTML,i=Function(o).bind(e.previousSibling);return e.remove(),i}));return null===(e=t.querySelector("scripts"))||void 0===e||e.remove(),n})(l),h=()=>{!function(t,e){Object.entries(e).forEach((([e,n])=>{const r=t.getElementById(e);if(!r)throw new Error(`Cannot find element with id: ${e}`);Object.entries(n).forEach((([t,e])=>{r.setAttribute(t,e.toString()),r.addEventListener("blur",(()=>r.classList.add("touched")),{once:!0})}))}))}(l,i),_n(l,e,c);try{d.forEach((t=>t()))}catch(t){console.error(t)}r(this,Nn,"f").replaceChildren(l),r(this,Tn,"m",Qn).call(this,a),r(this,Tn,"m",tr).call(this,"page-updated",{})};s?r(this,Tn,"m",Yn).call(this,h,s):h()}))},Yn=function(t,e){r(this,Nn,"f").addEventListener("transitionend",(()=>{r(this,Nn,"f").classList.remove("fade-out"),t()}),{once:!0});const n=e===mn.forward?"slide-forward":"slide-backward";Array.from(r(this,Nn,"f").getElementsByClassName("input-container")).forEach(((t,e)=>{t.style["transition-delay"]=40*e+"ms",t.classList.add(n)})),r(this,Nn,"f").classList.add("fade-out")},tr=function(t,e){this.dispatchEvent(new CustomEvent(t,{detail:e}))},er=function(){return n(this,void 0,void 0,(function*(){const t=document.createElement("style"),e=On(this["project-id"],"theme","css");t.innerText=yield In(e),this.shadowRoot.appendChild(t)}))},customElements.define("descope-wc",cr)}();