@descope/web-component 1.0.0 → 2.0.0
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 +21 -0
- package/README.md +30 -3
- package/dist/esm/debugger-wc-5459eaa1.js +1 -0
- package/dist/esm/index-2d352dd5.js +2 -0
- package/dist/esm/index.js +1 -0
- package/dist/index.d.ts +113 -0
- package/dist/index.js +2 -0
- package/package.json +87 -69
- package/dist/descope-wc.d.ts +0 -13
- package/dist/descope-wc.js +0 -1
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
|
-
|
|
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
|
-
-
|
|
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
|
-
|
|
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-2d352dd5.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{l(o.next(t))}catch(t){i(t)}}function a(t){try{l(o.throw(t))}catch(t){i(t)}}function l(t){var e;t.done?r(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 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",l="t",c="code",u="err",d="dls_last_auth",h="data-type",p="redirect",f="poll",g="webauthnCreate",v="webauthnGet",b="v2-alpha",m="submit",y="polling";var w;function k(t){return new URLSearchParams(window.location.search).get(t)}function I(t){if(window.history.replaceState&&k(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 n[e||"text"]()}))}!function(t){t.backward="backward",t.forward="forward"}(w||(w={}));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 E(t,e){if(!Number.isNaN(t)&&!Number.isNaN(e))return t>e?w.forward:t<e?w.backward:void 0}const _=()=>{const[t="",e=""]=(k(a)||"").split("_");return{executionId:t,stepId:e}};function x(){I(a)}const A=t=>t.replace(/-./g,(t=>t[1].toUpperCase())),C=()=>{const{executionId:t,stepId:e}=_();(t||e)&&x();const n=k(l)||void 0;n&&I(l);const o=k(c)||void 0;o&&I(c);const r=k(u)||void 0;return r&&I(u),{executionId:t,stepId:e,token:n,code:o,exchangeError:r}},U=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 R,P,T,q;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 M{constructor(t={},{updateOnlyOnChange:e=!0}={}){R.set(this,void 0),P.set(this,{}),T.set(this,0),q.set(this,!1),this.update=t=>{const e="function"==typeof t?t(o(this,R,"f")):t,n=Object.assign(Object.assign({},o(this,R,"f")),e);if(!o(this,q,"f")||!D(o(this,R,"f"),n)){const t=o(this,R,"f");r(this,R,n,"f"),Object.freeze(o(this,R,"f")),setTimeout((()=>{Object.values(o(this,P,"f")).forEach((e=>e(n,t,((t,e)=>n=>t[n]!==e[n])(n,t))))}),0)}},r(this,R,t,"f"),r(this,q,e,"f")}get current(){return Object.assign({},o(this,R,"f"))}subscribe(t){return r(this,T,o(this,T,"f")+1,"f"),o(this,P,"f")[o(this,T,"f")]=t,o(this,T,"f").toString()}unsubscribe(t){const e=!!o(this,P,"f")[t];return e&&delete o(this,P,"f")[t],e}unsubscribeAll(){return r(this,P,{},"f"),!0}}R=new WeakMap,P=new WeakMap,T=new WeakMap,q=new WeakMap;const L=(t,e)=>{var n;((t,e,n="")=>{t.querySelectorAll(`[${h}="${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}"]`)).forEach((t=>{t.value=n}))}))})(t,null==e?void 0:e.inputs),((t,e)=>{t.querySelectorAll(`[${h}="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)},$=U((()=>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 N(t){this.message=t}N.prototype=new Error,N.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 N("'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 J(t){this.message=t}function F(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 W="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},H="Expected a function",B="__lodash_hash_undefined__",V=1/0,z="[object Function]",G="[object GeneratorFunction]",Z="[object Symbol]",Q=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Y=/^\w*$/,X=/^\./,tt=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,et=/\\(\\)?/g,nt=/^\[object .+?Constructor\]$/,ot="object"==typeof W&&W&&W.Object===Object&&W,rt="object"==typeof self&&self&&self.Object===Object&&self,it=ot||rt||Function("return this")();var st,at=Array.prototype,lt=Function.prototype,ct=Object.prototype,ut=it["__core-js_shared__"],dt=(st=/[^.]+$/.exec(ut&&ut.keys&&ut.keys.IE_PROTO||""))?"Symbol(src)_1."+st:"",ht=lt.toString,pt=ct.hasOwnProperty,ft=ct.toString,gt=RegExp("^"+ht.call(pt).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),vt=it.Symbol,bt=at.splice,mt=At(it,"Map"),yt=At(Object,"create"),wt=vt?vt.prototype:void 0,kt=wt?wt.toString:void 0;function It(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 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,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 Et(t,e){var n;e=function(t,e){if(Pt(t))return!1;var n=typeof t;if("number"==n||"symbol"==n||"boolean"==n||null==t||qt(t))return!0;return Y.test(t)||!Q.test(t)||null!=e&&t in Object(e)}(e,t)?[e]:Pt(n=e)?n:Ct(n);for(var o=0,r=e.length;null!=t&&o<r;)t=t[Ut(e[o++])];return o&&o==r?t:void 0}function _t(t){if(!Tt(t)||(e=t,dt&&dt in e))return!1;var e,n=function(t){var e=Tt(t)?ft.call(t):"";return e==z||e==G}(t)||function(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}(t)?gt:nt;return n.test(function(t){if(null!=t){try{return ht.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}function xt(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}It.prototype.clear=function(){this.__data__=yt?yt(null):{}},It.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},It.prototype.get=function(t){var e=this.__data__;if(yt){var n=e[t];return n===B?void 0:n}return pt.call(e,t)?e[t]:void 0},It.prototype.has=function(t){var e=this.__data__;return yt?void 0!==e[t]:pt.call(e,t)},It.prototype.set=function(t,e){return this.__data__[t]=yt&&void 0===e?B:e,this},Ot.prototype.clear=function(){this.__data__=[]},Ot.prototype.delete=function(t){var e=this.__data__,n=St(e,t);return!(n<0)&&(n==e.length-1?e.pop():bt.call(e,n,1),!0)},Ot.prototype.get=function(t){var e=this.__data__,n=St(e,t);return n<0?void 0:e[n][1]},Ot.prototype.has=function(t){return St(this.__data__,t)>-1},Ot.prototype.set=function(t,e){var n=this.__data__,o=St(n,t);return o<0?n.push([t,e]):n[o][1]=e,this},jt.prototype.clear=function(){this.__data__={hash:new It,map:new(mt||Ot),string:new It}},jt.prototype.delete=function(t){return xt(this,t).delete(t)},jt.prototype.get=function(t){return xt(this,t).get(t)},jt.prototype.has=function(t){return xt(this,t).has(t)},jt.prototype.set=function(t,e){return xt(this,t).set(t,e),this};var Ct=Rt((function(t){var e;t=null==(e=t)?"":function(t){if("string"==typeof t)return t;if(qt(t))return kt?kt.call(t):"";var e=t+"";return"0"==e&&1/t==-V?"-0":e}(e);var n=[];return X.test(t)&&n.push(""),t.replace(tt,(function(t,e,o,r){n.push(o?r.replace(et,"$1"):e||t)})),n}));function Ut(t){if("string"==typeof t||qt(t))return t;var e=t+"";return"0"==e&&1/t==-V?"-0":e}function Rt(t,e){if("function"!=typeof t||e&&"function"!=typeof e)throw new TypeError(H);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(Rt.Cache||jt),n}Rt.Cache=jt;var Pt=Array.isArray;function Tt(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)&&ft.call(t)==Z}var Dt=function(t,e,n){var o=null==t?void 0:Et(t,e);return void 0===o?n:o},Mt="/v1/auth/accesskey/exchange",Lt="/v1/auth/otp/verify",$t="/v1/auth/otp/signin",Nt="/v1/auth/otp/signup",Kt={email:"/v1/auth/otp/update/email",phone:"/v1/auth/otp/update/phone"},Jt="/v1/auth/otp/signup-in",Ft="/v1/auth/magiclink/verify",Wt="/v1/auth/magiclink/signin",Ht="/v1/auth/magiclink/signup",Bt={email:"/v1/auth/magiclink/update/email",phone:"/v1/auth/magiclink/update/phone"},Vt="/v1/auth/magiclink/signup-in",zt="/v1/auth/enchantedlink/verify",Gt="/v1/auth/enchantedlink/signin",Zt="/v1/auth/enchantedlink/signup",Qt="/v1/auth/enchantedlink/pending-session",Yt={email:"/v1/auth/enchantedlink/update/email"},Xt="/v1/auth/enchantedlink/signup-in",te="/v1/auth/oauth/authorize",ee="/v1/auth/oauth/exchange",ne="/v1/auth/saml/authorize",oe="/v1/auth/saml/exchange",re="/v1/auth/totp/verify",ie="/v1/auth/totp/signup",se="/v1/auth/totp/update",ae={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"},ce={start:"/v1/auth/webauthn/signup-in/start"},ue={start:"v1/auth/webauthn/update/start",finish:"/v1/auth/webauthn/update/finish"},de="/v1/auth/refresh",he="/v1/auth/logout",pe="/v1/auth/logoutall",fe="/v1/auth/me",ge="/v1/flow/start",ve="/v1/flow/next";const be=()=>{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 ye=(...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}),{})),we=t=>void 0===t?void 0:JSON.stringify(t),ke=(t,e="")=>{let n=t;return e&&(n=n+":"+e),{Authorization:`Bearer ${n}`}},Ie=({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=>be().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)),be().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==r?void 0:r.beforeRequest)?r.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:ye(ke(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:we(c),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}={})=>l({path:t,headers:e,queryParams:n,body:void 0,method:me.get,token:o}),post:(t,e,{headers:n,queryParams:o,token:r}={})=>l({path:t,headers:n,queryParams:o,body:e,method:me.post,token:r}),put:(t,e,{headers:n,queryParams:o,token:r}={})=>l({path:t,headers:n,queryParams:o,body:e,method:me.put,token:r}),delete:(t,e,{headers:n,queryParams:o,token:r}={})=>l({path:t,headers:n,queryParams:o,body:e,method:me.delete,token:r}),hooks:r}};var Oe={TOO_MANY_REQUESTS:429};function je(t,e,n){var o;let r=Se(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 Se(t){if("string"!=typeof t||!t)throw new Error("Invalid token provided");return F(t)}function Ee(t){const{exp:e}=Se(t);return(new Date).getTime()/1e3>e}function _e(t,e){return je(t,e,"permissions")}function xe(t,e){return je(t,e,"roles")}const Ae=(...t)=>t.join("/").replace(/\/{2,}/g,"/");async function Ce(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===Oe.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 Ue=(t,e)=>(n=e)=>e=>!t(e)&&n.replace("{val}",e),Re=(...t)=>({validate:e=>(t.forEach((t=>{const n=t(e);if(n)throw new Error(n)})),!0)}),Pe=t=>e=>t.test(e),Te=Pe(/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/),qe=Pe(/^\+[1-9]{1}[0-9]{3,14}$/),De=Ue(Te,'"{val}" is not a valid email'),Me=Ue(qe,'"{val}" is not a valid phone number'),Le=Ue((1,t=>t.length>=1),"Minimum length is 1");const $e=Ue((t=>"string"==typeof t),"Input is not a string"),Ne=(...t)=>e=>(...n)=>(t.forEach(((t,e)=>Re(...t).validate(n[e]))),e(...n)),Ke=t=>[$e(`"${t}" must be a string`),Le(`"${t}" must not be empty`)],Je=t=>[$e(`"${t}" must be a string`),De()],Fe=t=>[$e(`"${t}" must be a string`),Me()],We=Ne(Ke("accessKey")),He=t=>({exchange:We((e=>Ce(t.post(Mt,{},{token:e}))))});var Be,Ve,ze,Ge;!function(t){t.sms="sms",t.whatsapp="whatsapp"}(Be||(Be={})),function(t){t.email="email",t.sms="sms",t.whatsapp="whatsapp"}(Ve||(Ve={})),function(t){t.waiting="waiting",t.running="running",t.completed="completed",t.failed="failed"}(ze||(ze={})),function(t){t.signUp="signup",t.signIn="signin",t.verify="verify"}(Ge||(Ge={}));const Ze=Ke("loginId"),Qe=Ne(Ke("token")),Ye=Ne(Ze),Xe=Ne(Ke("pendingRef")),tn=Ne(Ze,Je("email")),en=t=>({verify:Qe((e=>Ce(t.post(zt,{token:e})))),signIn:Ye(((e,n,o,r)=>Ce(t.post(Ae(Gt,Ve.email),{loginId:e,URI:n,loginOptions:o},{token:r})))),signUpOrIn:Ye(((e,n)=>Ce(t.post(Ae(Xt,Ve.email),{loginId:e,URI:n})))),signUp:Ye(((e,n,o)=>Ce(t.post(Ae(Zt,Ve.email),{loginId:e,URI:n,user:o})))),waitForSession:Xe(((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(Qt,{pendingRef:e});n.ok&&(clearInterval(a),s&&clearTimeout(s),o(Ce(Promise.resolve(n))))}),r);s=setTimeout((()=>{o({error:{errorDescription:`Session polling timeout exceeded: ${i}ms`,errorCode:"0"},ok:!1}),clearInterval(a)}),i)})))),update:{email:tn(((e,n,o,r)=>Ce(t.post(Yt.email,{loginId:e,email:n,URI:o},{token:r}))))}}),nn=Ne(Ke("flowId")),on=Ne(Ke("executionId"),Ke("stepId"),Ke("interactionId")),rn=t=>({start:nn(((e,n,o,r,i)=>Ce(t.post(ge,{flowId:e,options:n,conditionInteractionId:o,interactionId:r,input:i})))),next:on(((e,n,o,r)=>Ce(t.post(ve,{executionId:e,stepId:n,interactionId:o,input:r}))))}),sn=Ke("loginId"),an=Ne(Ke("token")),ln=Ne(sn),cn=Ne(sn,Fe("phone")),un=Ne(sn,Je("email")),dn=t=>({verify:an((e=>Ce(t.post(Ft,{token:e})))),signIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:ln(((e,o,r,i)=>Ce(t.post(Ae(Wt,n),{loginId:e,URI:o,loginOptions:r},{token:i}))))})),{}),signUp:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:ln(((e,o,r)=>Ce(t.post(Ae(Ht,n),{loginId:e,URI:o,user:r}))))})),{}),signUpOrIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:ln(((e,o)=>Ce(t.post(Ae(Vt,n),{loginId:e,URI:o}))))})),{}),update:{email:un(((e,n,o,r)=>Ce(t.post(Bt.email,{loginId:e,email:n,URI:o},{token:r})))),phone:Object.keys(Be).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:cn(((e,o,r,i)=>Ce(t.post(Ae(Bt.phone,n),{loginId:e,phone:o,URI:r},{token:i}))))})),{})}});var hn;!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"}(hn||(hn={}));const pn=Ne(Ke("code")),fn=t=>({start:Object.keys(hn).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:async(e,{redirect:o=!1}={},r,i)=>{const s=await t.post(te,r||{},{queryParams:Object.assign({provider:n},e&&{redirectURL:e}),token:i});if(!o||!s.ok)return Ce(Promise.resolve(s));const{url:a}=await s.json();window.location.href=a}})),{}),exchange:pn((e=>Ce(t.post(ee,{code:e}))))});var gn;!function(t){t.signUp="signup",t.signIn="signin",t.verify="verify",t.updatePhone="updatePhone"}(gn||(gn={}));const vn=Ke("loginId"),bn=Ne(vn,Ke("code")),mn=Ne(vn),yn=Ne(vn,Fe("phone")),wn=Ne(vn,Je("email")),kn=t=>({verify:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:bn(((e,o)=>Ce(t.post(Ae(Lt,n),{code:o,loginId:e}))))})),{}),signIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:mn(((e,o,r)=>Ce(t.post(Ae($t,n),{loginId:e,loginOptions:o},{token:r}))))})),{}),signUp:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:mn(((e,o)=>Ce(t.post(Ae(Nt,n),{loginId:e,user:o}))))})),{}),signUpOrIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:mn((e=>Ce(t.post(Ae(Jt,n),{loginId:e}))))})),{}),update:{email:wn(((e,n,o)=>Ce(t.post(Kt.email,{loginId:e,email:n},{token:o})))),phone:Object.keys(Be).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:yn(((e,o,r)=>Ce(t.post(Ae(Kt.phone,n),{loginId:e,phone:o},{token:r}))))})),{})}}),In=Ne(Ke("tenant")),On=Ne(Ke("code")),jn=t=>({start:In((async(e,n,{redirect:o=!1}={},r,i)=>{const s=await t.post(ne,r||{},{queryParams:{tenant:e,redirectURL:n},token:i});if(!o||!s.ok)return Ce(Promise.resolve(s));const{url:a}=await s.json();window.location.href=a})),exchange:On((e=>Ce(t.post(oe,{code:e}))))}),Sn=Ke("loginId"),En=Ne(Sn,Ke("code")),_n=Ne(Sn),xn=Ne(Sn),An=t=>({signUp:_n(((e,n)=>Ce(t.post(ie,{loginId:e,user:n})))),verify:En(((e,n,o,r)=>Ce(t.post(re,{loginId:e,code:n,loginOptions:o},{token:r})))),update:xn(((e,n)=>Ce(t.post(se,{loginId:e},{token:n}))))}),Cn=[$e('"loginId" must be a string')],Un=Ke("loginId"),Rn=Ke("origin"),Pn=Ne(Un,Rn,Ke("name")),Tn=Ne(Un,Rn),qn=Ne(Cn,Rn),Dn=Ne(Un,Rn,Ke("token")),Mn=Ne(Ke("transactionId"),Ke("response")),Ln=t=>({signUp:{start:Pn(((e,n,o)=>Ce(t.post(ae.start,{user:{loginId:e,name:o},origin:n})))),finish:Mn(((e,n)=>Ce(t.post(ae.finish,{transactionId:e,response:n}))))},signIn:{start:qn(((e,n,o,r)=>Ce(t.post(le.start,{loginId:e,origin:n,loginOptions:o},{token:r})))),finish:Mn(((e,n)=>Ce(t.post(le.finish,{transactionId:e,response:n}))))},signUpOrIn:{start:Tn(((e,n)=>Ce(t.post(ce.start,{loginId:e,origin:n}))))},update:{start:Dn(((e,n,o)=>Ce(t.post(ue.start,{loginId:e,origin:n},{token:o})))),finish:Mn(((e,n)=>Ce(t.post(ue.finish,{transactionId:e,response:n}))))}}),$n=Ne(Ke("token"));var Nn,Kn=Ne([("projectId",Nn=Ke("projectId"),Ue(((t,e)=>n=>Re(...e).validate(Dt(n,t)))("projectId",Nn))())])((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=Ie({baseUrl:n||"https://api.descope.com",projectId:t,logger:e,hooks:o,cookiePolicy:r,baseConfig:{baseHeaders:i},fetch:s}),{accessKey:He(a),otp:kn(a),magicLink:dn(a),enchantedLink:en(a),oauth:fn(a),saml:jn(a),totp:An(a),webauthn:Ln(a),flow:rn(a),refresh:t=>Ce(a.post(de,{},{token:t})),logout:t=>Ce(a.post(he,{},{token:t})),logoutAll:t=>Ce(a.post(pe,{},{token:t})),me:t=>Ce(a.get(fe,{token:t})),isJwtExpired:$n(Ee),getJwtPermissions:$n(_e),getJwtRoles:$n(xe),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 Jn=(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 Fn=Object.assign(Kn,{DeliveryMethods:Ve});var Wn="Blocked by CSP",Hn="API key required",Bn="3.8.2",Vn="9319";function zn(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===Wn||e===Vn}(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 Gn="https://fpnpmcdn.net/v<version>/<apiKey>/loader_v<loaderVersion>.js",Zn="Failed to load the JS script of the agent";function Qn(n){var o;n.scriptUrlPattern;var r=n.token,i=n.apiKey,s=void 0===i?r:i,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:Gn;return Promise.resolve().then((function(){if(!s||"string"!=typeof s)throw new Error(Hn);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(Bn):t}))}(String(t),e)}))}(l,s);return zn(t,Yn).catch(to)})).then((function(e){var n=e[0],o=e[1];return n.load(t(t({},a),{ldi:o}))}))}function Yn(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,l())};i.addEventListener(s,a);var l=function(){return i.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(),r)return function(){throw new Error(Wn)}();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(Zn))},o.async=!0,o.src=t,i.appendChild(o)}))}(t)})).then(Xn)}function Xn(){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(Vn);return n}function to(t){throw t instanceof Error&&t.message===Vn?new Error(Zn):t}
|
|
2
|
+
/*! js-cookie v3.0.1 | MIT */function eo(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 no=function t(e,n){function o(t,o,r){if("undefined"!=typeof document){"number"==typeof(r=eo({},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,"",eo({},e,{expires:-1}))},withAttributes:function(e){return t(this.converter,eo({},this.attributes,e))},withConverter:function(e){return t(eo({},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 oo=(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},ro=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||{}},io=async t=>{const e=await ro(t);return(null==e?void 0:e.user)||((null==e?void 0:e.hasOwnProperty("userId"))?e:void 0)},so="undefined"!=typeof localStorage,ao=(t,e)=>so&&(null===localStorage||void 0===localStorage?void 0:localStorage.setItem(t,e)),lo=t=>so&&(null===localStorage||void 0===localStorage?void 0:localStorage.getItem(t)),co=t=>so&&(null===localStorage||void 0===localStorage?void 0:localStorage.removeItem(t)),uo="undefined"!=typeof window,ho=uo&&(null===localStorage||void 0===localStorage?void 0:localStorage.getItem("fingerprint.endpoint.url"))||"https://fp.descope.com",po=(t="",e="")=>({vsid:t,vrid:e}),fo=(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},go=t=>(t.body&&(t.body.fpData=fo(!0)||po()),t),vo=()=>lo("dls_last_user_login_id"),bo=()=>lo("dls_last_user_display_name"),mo=t=>async(...e)=>{var n;e[1]=e[1]||{};const[,o={}]=e,r=vo(),i=bo();return r&&(null!==(n=o.lastAuth)&&void 0!==n||(o.lastAuth={}),o.lastAuth.loginId=r,o.lastAuth.name=i),await t(...e)},yo=t=>async(...e)=>{const n=await t(...e);return co("dls_last_user_login_id"),co("dls_last_user_display_name"),n};function wo(){const t=[];return{pub:e=>{t.forEach((t=>t(e)))},sub:e=>{const n=t.push(e)-1;return()=>t.splice(n,1)}}}const ko=(t={},n)=>{var{refreshJwt:o,sessionJwt:r}=t,i=e(t,["refreshJwt","sessionJwt"]);void 0===n&&(n=!1),o&&ao("DSR",o),r&&(n?function(t,e,{cookiePath:n,cookieDomain:o,cookieExpiration:r}){if(e){const i=new Date(1e3*r);no.set(t,e,{path:n,domain:o,expires:i,sameSite:"Strict",secure:!0})}}("DS",r,i):ao("DS",r))};function Io(){return lo("DSR")||""}function Oo(){return no.get("DS")||lo("DS")||""}function jo(){co("DSR"),co("DS"),no.remove("DS")}const So=t=>Object.assign(t,{token:t.token||Io()}),Eo=t=>async(...e)=>{const n=await t(...e);return jo(),n};async function _o(t){const e=function(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=Po(n.publicKey.challenge),n.publicKey.user.id=Po(n.publicKey.user.id),null===(e=n.publicKey.excludeCredentials)||void 0===e||e.forEach((t=>{t.id=Po(t.id)})),n}(t);return n=await navigator.credentials.create(e),JSON.stringify({id:n.id,rawId:To(n.rawId),type:n.type,response:{attestationObject:To(n.response.attestationObject),clientDataJSON:To(n.response.clientDataJSON)}});var n}async function xo(t){const e=Uo(t);return Ro(await navigator.credentials.get(e))}async function Ao(t,e){const n=Uo(t);return n.signal=e.signal,n.mediation="conditional",Ro(await navigator.credentials.get(n))}async function Co(t=!1){if(!uo)return Promise.resolve(!1);const e=!!(PublicKeyCredential&&navigator.credentials&&navigator.credentials.create&&navigator.credentials.get);return e&&t&&PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable?PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable():e}function Uo(t){var e;const n=JSON.parse(t);return n.publicKey.challenge=Po(n.publicKey.challenge),null===(e=n.publicKey.allowCredentials)||void 0===e||e.forEach((t=>{t.id=Po(t.id)})),n}function Ro(t){return JSON.stringify({id:t.id,rawId:To(t.rawId),type:t.type,response:{authenticatorData:To(t.response.authenticatorData),clientDataJSON:To(t.response.clientDataJSON),signature:To(t.response.signature),userHandle:t.response.userHandle?To(t.response.userHandle):void 0}})}function Po(t){const e=t.replace(/_/g,"/").replace(/-/g,"+");return Uint8Array.from(atob(e),(t=>t.charCodeAt(0))).buffer}function To(t){return btoa(String.fromCharCode.apply(null,new Uint8Array(t))).replace(/\//g,"_").replace(/\+/g,"-").replace(/=/g,"")}var qo,Do=(qo=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 xo(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 xo(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:xo,isSupported:Co,conditional:Ao}}),(...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}),Mo=t=>Object.assign(Object.assign({},t.flow),{start:async(...e)=>{const n=await Co(),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?(uo?r&&(async t=>{try{if(fo())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:ho}),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))})(po(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(oo(i,{beforeRequest:go}))):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(oo(o,{afterRequest:async(t,e)=>{const{refreshJwt:n,sessionJwt:o}=await ro(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 Jn(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=wo(),o=wo(),r=t(oo(e,{afterRequest:async(t,e)=>{if(401===(null==e?void 0:e.status))n.pub(null),o.pub(null);else{const t=await io(e);t&&o.pub(t);const{sessionJwt:r}=await ro(e);r&&n.pub(r)}}})),i=Jn(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(oo(e,{afterRequest:async(t,e)=>{var n;const o=await io(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=>{ao("dls_last_user_login_id",t)})(r),(t=>{ao("dls_last_user_display_name",t)})(i))}}));let o=Jn(n,["flow.start"],mo);return o=Jn(o,["logout","logoutAll"],yo),Object.assign(o,{getLastUserLoginId:vo,getLastUserDisplayName:bo})}),(t=>n=>{var{persistTokens:o,sessionTokenViaCookie:r}=n,i=e(n,["persistTokens","sessionTokenViaCookie"]);if(!o||!uo)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(oo(i,{beforeRequest:So,afterRequest:async(t,e)=>{401===(null==e?void 0:e.status)?jo():ko(await ro(e),r)}})),a=Jn(s,["logout","logoutAll"],Eo);return Object.assign(a,{getRefreshToken:Io,getSessionToken:Oo})}))(((...t)=>{const e=Fn(...t);return Object.assign(Object.assign({},e),{flow:Mo(e),webauthn:Do(e)})})),$o=document.createElement("template");var No,Ko,Jo,Fo,Wo,Ho,Bo,Vo,zo,Go,Zo,Qo,Yo,Xo,tr,er,nr,or,rr,ir,sr,ar,lr,cr,ur,dr,hr,pr,fr,gr,vr,br,mr,yr,wr,kr,Ir,Or;$o.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 jr extends HTMLElement{constructor(t){super(),No.add(this),Ko.set(this,!1),Jo.set(this,new M),Fo.set(this,new M),this.nextRequestStatus=new M({isLoading:!1}),Wo.set(this,void 0),Ho.set(this,{popstate:o(this,No,"m",Qo).bind(this)}),Bo.set(this,void 0),tr.set(this,U((()=>n(this,void 0,void 0,(function*(){const t=S(this.projectId,"config.json");try{return yield O(t,"json")}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,No,"m",ar).call(this,t,e)},info:(t,e="")=>{console.log(t,e)}},r(this,Bo,t,"f"),o(this,No,"m",Vo).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}getFlowConfig(){var t;return n(this,void 0,void 0,(function*(){const e=yield o(this,tr,"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,No,"m",zo).call(this))return void o(this,No,"m",Go).call(this);o(this,No,"m",Zo).call(this),o(this,No,"m",nr).call(this),o(this,No,"m",er).call(this),o(this,No,"m",lr).call(this);const{executionId:t,stepId:e,token:n,code:i,exchangeError:s}=C();window.addEventListener("popstate",o(this,Ho,"f").popstate),o(this,Jo,"f").subscribe(o(this,No,"m",Xo).bind(this)),o(this,Fo,"f").subscribe(o(this,No,"m",sr).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:i,exchangeError:s,telemetryKey:this.telemetryKey}),o(this,Fo,"f").update({isDebug:this.debug}),r(this,Ko,!0,"f")}}))}disconnectedCallback(){o(this,Jo,"f").unsubscribeAll(),o(this,Fo,"f").unsubscribeAll(),o(this,No,"m",ir).call(this),window.removeEventListener("popstate",o(this,Ho,"f").popstate)}attributeChangedCallback(t,e,n){if(this.shadowRoot.isConnected&&o(this,Ko,"f")&&e!==n&&jr.observedAttributes.includes(t)){o(this,No,"m",Zo).call(this);const r=null===e;o(this,Jo,"f").update((({stepId:e,executionId:o})=>{let i=e,s=o;return r||(s=null,i=null,x()),{[A(t)]:n,stepId:i,executionId:s}})),o(this,Fo,"f").update({isDebug:this.debug})}}}Ko=new WeakMap,Jo=new WeakMap,Fo=new WeakMap,Wo=new WeakMap,Ho=new WeakMap,Bo=new WeakMap,tr=new WeakMap,No=new WeakSet,Vo=function(){this.attachShadow({mode:"open"}),this.shadowRoot.appendChild($o.content.cloneNode(!0)),this.rootElement=this.shadowRoot.querySelector("#wc-root")},zo=function(){const t=/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor);return!this.shadowRoot.host.closest("form")&&t},Go=function(){const t=this.shadowRoot.host,e=document.createElement("form");t.parentElement.appendChild(e),e.appendChild(t)},Zo=function(){const t=["base-url","tenant","theme","debug","telemetryKey","redirect-url","auto-focus"];if(jr.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}=_();o(this,Jo,"f").update({stepId:t,executionId:e})},Yo=function(t,e,o){const r=o||void 0,i=!!r;this.sdk=Lo(Object.assign(Object.assign({},jr.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})}}))}))},Xo=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,No,"m",Yo).call(this,e,n,i)}o(this,Bo,"f").call(this,t)}))},er=function(){var t,e,r,i;return n(this,void 0,void 0,(function*(){const n=yield o(this,tr,"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)))}))},nr=function(){o(this,No,"m",or).call(this),o(this,No,"m",rr).call(this)},or=function(){return n(this,void 0,void 0,(function*(){const t=document.createElement("style"),e=S(this.projectId,"theme.css");try{t.innerText=yield O(e,"text")}catch(t){this.logger.error("Cannot fetch theme file","make sure that your projectId & flowId are correct")}this.shadowRoot.appendChild(t)}))},rr=function(){this.rootElement.setAttribute("data-theme",this.theme)},ir=function(){var t;null===(t=o(this,Wo,"f"))||void 0===t||t.remove(),r(this,Wo,null,"f")},sr=function({isDebug:t}){return n(this,void 0,void 0,(function*(){t?(yield import("./debugger-wc-5459eaa1.js"),r(this,Wo,document.createElement("descope-debugger"),"f"),Object.assign(o(this,Wo,"f").style,{position:"fixed",top:"0",right:"0",height:"100vh",width:"100vw",pointerEvents:"none",zIndex:99999}),document.body.appendChild(o(this,Wo,"f"))):o(this,No,"m",ir).call(this)}))},ar=function(t,e){var n;t&&this.debug&&(null===(n=o(this,Wo,"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()}},jr.sdkConfigOverrides={baseHeaders:{"x-descope-sdk-name":"web-component","x-descope-sdk-version":"2.0.0"}};class Sr extends jr{constructor(){const t=new M;super(t.update.bind(t)),cr.add(this),this.stepState=new M({},{updateOnlyOnChange:!1}),ur.set(this,void 0),dr.set(this,null),hr.set(this,(()=>{clearInterval(o(this,ur,"f")),r(this,ur,null,"f")})),pr.set(this,(t=>{var e,n,r,s,a,l,c,u,h;if(!(null==t?void 0:t.ok)){o(this,hr,"f").call(this),o(this,cr,"m",Or).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,l=`${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)||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===(h=t.data)||void 0===h?void 0:h.error)&&this.logger.error(`[${t.data.error.code}]: ${t.data.error.description}`,t.data.error.message);const{status:g,authInfo:v,lastAuth:b}=t.data;if("completed"===g)return function(t){i&&localStorage.setItem(d,JSON.stringify(t))}(b),o(this,hr,"f").call(this),void o(this,cr,"m",Or).call(this,"success",v);const{executionId:m,stepId:y,action:w,screen:k,redirect:I,webauthn:O}=t.data;w!==f?this.flowState.update({stepId:y,executionId:m,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})})),fr.set(this,U((()=>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){jr.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:l,tenant:c,stepId:u,executionId:h,action:b,screenId:w,screenState:k,redirectTo:I,redirectUrl:O,token:j,code:_,exchangeError:x,webauthnTransactionId:A,webauthnOptions:C}=t;let U,R;o(this,ur,"f")&&o(this,hr,"f").call(this);const P=this.sdk.getLastUserLoginId();if(!h){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},O&&{redirectUrl:O}));return void o(this,pr,"f").call(this,t)}}if(i("token")&&j||i("code")&&_||i("exchangeError")&&x){const t=yield this.sdk.flow.next(h,u,m,{token:j,exchangeCode:_,exchangeError:x});return o(this,pr,"f").call(this,t),void this.flowState.update({token:void 0,code:void 0,exchangeError:void 0})}if(b===p)return I||this.logger.error("Did not get redirect url"),void window.location.assign(I);if(b===g||b===v){if(!A||!C)return void this.logger.error("Did not get webauthn transaction id or options");let t,e;null===(s=o(this,dr,"f"))||void 0===s||s.abort(),r(this,dr,null,"f");try{t=b===g?yield this.sdk.webauthn.helpers.create(C):yield this.sdk.webauthn.helpers.get(C)}catch(t){if("NotAllowedError"!==t.name)return void this.logger.error(t.message);e=!0}const n=yield this.sdk.flow.next(h,u,m,{transactionId:A,response:t,cancelWebauthn:e});o(this,pr,"f").call(this,n)}if(b===f&&r(this,ur,setInterval((()=>n(this,void 0,void 0,(function*(){const t=yield this.sdk.flow.next(h,u,y,{});o(this,pr,"f").call(this,t)}))),2e3),"f"),!w&&!U)return void this.logger.info("Refreshing the page during a flow is not supported yet");const T={direction:E(+u,+e.stepId),screenState:Object.assign(Object.assign({},k),{lastAuth:{loginId:P,name:this.sdk.getLastUserDisplayName()||P}}),htmlUrl:S(a,`${U||w}.html`)},q=function(t){const e={};if(t)try{Object.assign(e,JSON.parse(localStorage.getItem(d)))}catch(t){}return e}(P);U?T.next=(...t)=>this.sdk.flow.start(l,{tenant:c,lastAuth:q},R,...t):(i("projectId")||i("baseUrl")||i("executionId")||i("stepId"))&&(T.next=(...t)=>this.sdk.flow.next(h,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:l}=t,c=document.createElement("template");c.innerHTML=yield O(i,"text");const u=c.content.cloneNode(!0),d=(t=>{var e;const n=Array.from(t.querySelectorAll("script[data-id]")).map((e=>{var n;const o=e.getAttribute("data-id"),r=null===(n=t.getElementById(o))||void 0===n?void 0:n.innerHTML,i=Function(r).bind(e.previousSibling);return e.remove(),i}));return null===(e=t.querySelector("scripts"))||void 0===e||e.remove(),n})(u);this.sdk.webauthn.helpers.isSupported()?yield o(this,cr,"m",vr).call(this,u,a):u.querySelectorAll(`button[${h}="biometrics"]`).forEach((t=>t.setAttribute("disabled","true"))),L(u,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})`))})(u.querySelector("div"),null===(r=null==l?void 0:l.totp)||void 0===r?void 0:r.image);const p=()=>n(this,void 0,void 0,(function*(){try{d.forEach((t=>{t()}))}catch(t){this.logger.error(t.message)}this.rootElement.replaceChildren(u);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,cr,"m",kr).call(this,a),o(this,cr,"m",Or).call(this,"page-updated",{});if(this.rootElement.querySelector(`[${h}="polling"]`)){const t=yield a(y,{});o(this,pr,"f").call(this,t)}}));s?o(this,cr,"m",Ir).call(this,p,s):p()}))}}ur=new WeakMap,dr=new WeakMap,hr=new WeakMap,pr=new WeakMap,fr=new WeakMap,cr=new WeakSet,gr=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}))}},vr=function(t,e){var i;return n(this,void 0,void 0,(function*(){null===(i=o(this,dr,"f"))||void 0===i||i.abort();const s=t.querySelector('input[autocomplete="webauthn"]');if(s&&(yield $())){const{options:t,transactionId:i}=(yield o(this,fr,"f").call(this))||{};t&&i&&(o(this,cr,"m",gr).call(this,s),r(this,dr,new AbortController,"f"),this.sdk.webauthn.helpers.conditional(t,o(this,dr,"f")).then((t=>n(this,void 0,void 0,(function*(){const n=yield e(s.id,{transactionId:i,response:t});o(this,pr,"f").call(this,n)})))).catch((t=>{"AbortError"!==t.name&&this.logger.error("Conditional login failed",t.message)})))}}))},br=function(){return Array.from(this.shadowRoot.querySelectorAll(".descope-input")).every((t=>(t.reportValidity(),t.checkValidity())))},mr=function(){return Array.from(this.shadowRoot.querySelectorAll("*[name]")).reduce(((t,e)=>e.name?Object.assign(t,{[e.name]:e.value}):t),{})},yr=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"))}))},wr=function(t,e){return n(this,void 0,void 0,(function*(){if(t.formNoValidate||o(this,cr,"m",br).call(this)){const r=null==t?void 0:t.getAttribute("id");o(this,cr,"m",yr).call(this,t);const i=o(this,cr,"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}),l=yield e(r,a);o(this,pr,"f").call(this,l)}var n}))},kr=function(t){this.rootElement.querySelectorAll("button").forEach((e=>{e.onclick=()=>{o(this,cr,"m",wr).call(this,e,t)}}))},Ir=function(t,e){this.rootElement.addEventListener("transitionend",(()=>{this.rootElement.classList.remove("fade-out"),t()}),{once:!0});const n=e===w.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")},Or=function(t,e){this.dispatchEvent(new CustomEvent(t,{detail:e}))},customElements.define("descope-wc",Sr);export{Sr as D,M as S,o as _,r as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{D as default}from"./index-2d352dd5.js";
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
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
|
+
getFlowConfig(): Promise<any>;
|
|
92
|
+
logger: {
|
|
93
|
+
error: (message: string, description?: string) => void;
|
|
94
|
+
info: (message: string, description?: string) => void;
|
|
95
|
+
};
|
|
96
|
+
connectedCallback(): Promise<void>;
|
|
97
|
+
disconnectedCallback(): void;
|
|
98
|
+
attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
declare class DescopeWc extends BaseDescopeWc {
|
|
102
|
+
#private;
|
|
103
|
+
static set sdkConfigOverrides(config: Partial<SdkConfig>);
|
|
104
|
+
flowState: State<FlowState>;
|
|
105
|
+
stepState: State<StepState>;
|
|
106
|
+
constructor();
|
|
107
|
+
connectedCallback(): Promise<void>;
|
|
108
|
+
disconnectedCallback(): void;
|
|
109
|
+
onFlowChange(currentState: FlowState, prevState: FlowState, isChanged: IsChanged<FlowState>): Promise<void>;
|
|
110
|
+
onStepChange(currentState: StepState, prevState: StepState): Promise<void>;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
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="dls_last_auth",h="data-type",p="redirect",f="poll",g="webauthnCreate",v="webauthnGet",m="v2-alpha",b="submit",w="polling";var y;function k(t){return new URLSearchParams(window.location.search).get(t)}function I(t){if(window.history.replaceState&&k(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 n[e||"text"]()}))}!function(t){t.backward="backward",t.forward="forward"}(y||(y={}));const x=(...t)=>t.join("/").replace(/\/+/g,"/");function j(t,e){const n=new URL(s);return n.pathname=x(n.pathname,t,m,e),n.toString()}function S(t,e){if(!Number.isNaN(t)&&!Number.isNaN(e))return t>e?y.forward:t<e?y.backward:void 0}const C=()=>{const[t="",e=""]=(k(a)||"").split("_");return{executionId:t,stepId:e}};function E(){I(a)}const _=t=>t.replace(/-./g,(t=>t[1].toUpperCase())),A=()=>{const{executionId:t,stepId:e}=C();(t||e)&&E();const n=k(l)||void 0;n&&I(l);const o=k(c)||void 0;o&&I(c);const i=k(u)||void 0;return i&&I(u),{executionId:t,stepId:e,token:n,code:o,exchangeError:i}},U=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 R,P,T,L;function M(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(!M(r,s))return!1}else if(r!==s)return!1}return!0}class q{constructor(t={},{updateOnlyOnChange:e=!0}={}){R.set(this,void 0),P.set(this,{}),T.set(this,0),L.set(this,!1),this.update=t=>{const e="function"==typeof t?t(o(this,R,"f")):t,n=Object.assign(Object.assign({},o(this,R,"f")),e);if(!o(this,L,"f")||!M(o(this,R,"f"),n)){const t=o(this,R,"f");i(this,R,n,"f"),Object.freeze(o(this,R,"f")),setTimeout((()=>{Object.values(o(this,P,"f")).forEach((e=>e(n,t,((t,e)=>n=>t[n]!==e[n])(n,t))))}),0)}},i(this,R,t,"f"),i(this,L,e,"f")}get current(){return Object.assign({},o(this,R,"f"))}subscribe(t){return i(this,T,o(this,T,"f")+1,"f"),o(this,P,"f")[o(this,T,"f")]=t,o(this,T,"f").toString()}unsubscribe(t){const e=!!o(this,P,"f")[t];return e&&delete o(this,P,"f")[t],e}unsubscribeAll(){return i(this,P,{},"f"),!0}}R=new WeakMap,P=new WeakMap,T=new WeakMap,L=new WeakMap;const D=(t,e)=>{var n;((t,e,n="")=>{t.querySelectorAll(`[${h}="${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}"]`)).forEach((t=>{t.value=n}))}))})(t,null==e?void 0:e.inputs),((t,e)=>{t.querySelectorAll(`[${h}="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)},$=U((()=>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}})))),N=(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 W(t){this.message=t}W.prototype=new Error,W.prototype.name="InvalidCharacterError";var F="undefined"!=typeof window&&window.atob&&window.atob.bind(window)||function(t){var e=String(t).replace(/=+$/,"");if(e.length%4==1)throw new W("'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 K(t){this.message=t}function J(t,e){if("string"!=typeof t)throw new K("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(F(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 F(e)}}(t.split(".")[n]))}catch(t){throw new K("Invalid token specified: "+t.message)}}K.prototype=new Error,K.prototype.name="InvalidTokenError";var H="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},z="Expected a function",B="__lodash_hash_undefined__",V=1/0,Z="[object Function]",G="[object GeneratorFunction]",X="[object Symbol]",Y=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Q=/^\w*$/,tt=/^\./,et=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,nt=/\\(\\)?/g,ot=/^\[object .+?Constructor\]$/,it="object"==typeof H&&H&&H.Object===Object&&H,rt="object"==typeof self&&self&&self.Object===Object&&self,st=it||rt||Function("return this")();var at,lt=Array.prototype,ct=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=ct.toString,ft=ut.hasOwnProperty,gt=ut.toString,vt=RegExp("^"+pt.call(ft).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),mt=st.Symbol,bt=lt.splice,wt=At(st,"Map"),yt=At(Object,"create"),kt=mt?mt.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 xt(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,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 Ct(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 Q.test(t)||!Y.test(t)||null!=e&&t in Object(e)}(e,t)?[e]:Tt(n=e)?n:Ut(n);for(var o=0,i=e.length;null!=t&&o<i;)t=t[Rt(e[o++])];return o&&o==i?t:void 0}function Et(t){if(!Lt(t)||(e=t,ht&&ht in e))return!1;var e,n=function(t){var e=Lt(t)?gt.call(t):"";return e==Z||e==G}(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 _t(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 At(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return Et(n)?n:void 0}Ot.prototype.clear=function(){this.__data__=yt?yt(null):{}},Ot.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},Ot.prototype.get=function(t){var e=this.__data__;if(yt){var n=e[t];return n===B?void 0:n}return ft.call(e,t)?e[t]:void 0},Ot.prototype.has=function(t){var e=this.__data__;return yt?void 0!==e[t]:ft.call(e,t)},Ot.prototype.set=function(t,e){return this.__data__[t]=yt&&void 0===e?B:e,this},xt.prototype.clear=function(){this.__data__=[]},xt.prototype.delete=function(t){var e=this.__data__,n=St(e,t);return!(n<0)&&(n==e.length-1?e.pop():bt.call(e,n,1),!0)},xt.prototype.get=function(t){var e=this.__data__,n=St(e,t);return n<0?void 0:e[n][1]},xt.prototype.has=function(t){return St(this.__data__,t)>-1},xt.prototype.set=function(t,e){var n=this.__data__,o=St(n,t);return o<0?n.push([t,e]):n[o][1]=e,this},jt.prototype.clear=function(){this.__data__={hash:new Ot,map:new(wt||xt),string:new Ot}},jt.prototype.delete=function(t){return _t(this,t).delete(t)},jt.prototype.get=function(t){return _t(this,t).get(t)},jt.prototype.has=function(t){return _t(this,t).has(t)},jt.prototype.set=function(t,e){return _t(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==-V?"-0":e}(e);var n=[];return tt.test(t)&&n.push(""),t.replace(et,(function(t,e,o,i){n.push(o?i.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==-V?"-0":e}function Pt(t,e){if("function"!=typeof t||e&&"function"!=typeof e)throw new TypeError(z);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(Pt.Cache||jt),n}Pt.Cache=jt;var Tt=Array.isArray;function Lt(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)&>.call(t)==X}var qt=function(t,e,n){var o=null==t?void 0:Ct(t,e);return void 0===o?n:o},Dt="/v1/auth/accesskey/exchange",$t="/v1/auth/otp/verify",Nt="/v1/auth/otp/signin",Wt="/v1/auth/otp/signup",Ft={email:"/v1/auth/otp/update/email",phone:"/v1/auth/otp/update/phone"},Kt="/v1/auth/otp/signup-in",Jt="/v1/auth/magiclink/verify",Ht="/v1/auth/magiclink/signin",zt="/v1/auth/magiclink/signup",Bt={email:"/v1/auth/magiclink/update/email",phone:"/v1/auth/magiclink/update/phone"},Vt="/v1/auth/magiclink/signup-in",Zt="/v1/auth/enchantedlink/verify",Gt="/v1/auth/enchantedlink/signin",Xt="/v1/auth/enchantedlink/signup",Yt="/v1/auth/enchantedlink/pending-session",Qt={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",ie="/v1/auth/saml/exchange",re="/v1/auth/totp/verify",se="/v1/auth/totp/signup",ae="/v1/auth/totp/update",le={start:"/v1/auth/webauthn/signup/start",finish:"/v1/auth/webauthn/signup/finish"},ce={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",me="/v1/flow/next";const be=()=>{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 we;!function(t){t.get="GET",t.delete="DELETE",t.post="POST",t.put="PUT"}(we||(we={}));const ye=(...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: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=>be().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)),be().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:ye(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(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:we.get,token:o}),post:(t,e,{headers:n,queryParams:o,token:i}={})=>l({path:t,headers:n,queryParams:o,body:e,method:we.post,token:i}),put:(t,e,{headers:n,queryParams:o,token:i}={})=>l({path:t,headers:n,queryParams:o,body:e,method:we.put,token:i}),delete:(t,e,{headers:n,queryParams:o,token:i}={})=>l({path:t,headers:n,queryParams:o,body:e,method:we.delete,token:i}),hooks:i}};var xe={TOO_MANY_REQUESTS:429};function je(t,e,n){var o;let i=Se(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 Se(t){if("string"!=typeof t||!t)throw new Error("Invalid token provided");return J(t)}function Ce(t){const{exp:e}=Se(t);return(new Date).getTime()/1e3>e}function Ee(t,e){return je(t,e,"permissions")}function _e(t,e){return je(t,e,"roles")}const Ae=(...t)=>t.join("/").replace(/\/{2,}/g,"/");async function Ue(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===xe.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 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),Le=Te(/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/),Me=Te(/^\+[1-9]{1}[0-9]{3,14}$/),qe=Re(Le,'"{val}" is not a valid email'),De=Re(Me,'"{val}" is not a valid phone number'),$e=Re((1,t=>t.length>=1),"Minimum length is 1");const Ne=Re((t=>"string"==typeof t),"Input is not a string"),We=(...t)=>e=>(...n)=>(t.forEach(((t,e)=>Pe(...t).validate(n[e]))),e(...n)),Fe=t=>[Ne(`"${t}" must be a string`),$e(`"${t}" must not be empty`)],Ke=t=>[Ne(`"${t}" must be a string`),qe()],Je=t=>[Ne(`"${t}" must be a string`),De()],He=We(Fe("accessKey")),ze=t=>({exchange:He((e=>Ue(t.post(Dt,{},{token:e}))))});var Be,Ve,Ze,Ge;!function(t){t.sms="sms",t.whatsapp="whatsapp"}(Be||(Be={})),function(t){t.email="email",t.sms="sms",t.whatsapp="whatsapp"}(Ve||(Ve={})),function(t){t.waiting="waiting",t.running="running",t.completed="completed",t.failed="failed"}(Ze||(Ze={})),function(t){t.signUp="signup",t.signIn="signin",t.verify="verify"}(Ge||(Ge={}));const Xe=Fe("loginId"),Ye=We(Fe("token")),Qe=We(Xe),tn=We(Fe("pendingRef")),en=We(Xe,Ke("email")),nn=t=>({verify:Ye((e=>Ue(t.post(Zt,{token:e})))),signIn:Qe(((e,n,o,i)=>Ue(t.post(Ae(Gt,Ve.email),{loginId:e,URI:n,loginOptions:o},{token:i})))),signUpOrIn:Qe(((e,n)=>Ue(t.post(Ae(te,Ve.email),{loginId:e,URI:n})))),signUp:Qe(((e,n,o)=>Ue(t.post(Ae(Xt,Ve.email),{loginId:e,URI:n,user:o})))),waitForSession:tn(((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(Yt,{pendingRef:e});n.ok&&(clearInterval(a),s&&clearTimeout(s),o(Ue(Promise.resolve(n))))}),i);s=setTimeout((()=>{o({error:{errorDescription:`Session polling timeout exceeded: ${r}ms`,errorCode:"0"},ok:!1}),clearInterval(a)}),r)})))),update:{email:en(((e,n,o,i)=>Ue(t.post(Qt.email,{loginId:e,email:n,URI:o},{token:i}))))}}),on=We(Fe("flowId")),rn=We(Fe("executionId"),Fe("stepId"),Fe("interactionId")),sn=t=>({start:on(((e,n,o,i,r)=>Ue(t.post(ve,{flowId:e,options:n,conditionInteractionId:o,interactionId:i,input:r})))),next:rn(((e,n,o,i)=>Ue(t.post(me,{executionId:e,stepId:n,interactionId:o,input:i}))))}),an=Fe("loginId"),ln=We(Fe("token")),cn=We(an),un=We(an,Je("phone")),dn=We(an,Ke("email")),hn=t=>({verify:ln((e=>Ue(t.post(Jt,{token:e})))),signIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:cn(((e,o,i,r)=>Ue(t.post(Ae(Ht,n),{loginId:e,URI:o,loginOptions:i},{token:r}))))})),{}),signUp:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:cn(((e,o,i)=>Ue(t.post(Ae(zt,n),{loginId:e,URI:o,user:i}))))})),{}),signUpOrIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:cn(((e,o)=>Ue(t.post(Ae(Vt,n),{loginId:e,URI:o}))))})),{}),update:{email:dn(((e,n,o,i)=>Ue(t.post(Bt.email,{loginId:e,email:n,URI:o},{token:i})))),phone:Object.keys(Be).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:un(((e,o,i,r)=>Ue(t.post(Ae(Bt.phone,n),{loginId:e,phone:o,URI:i},{token:r}))))})),{})}});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=We(Fe("code")),gn=t=>({start:Object.keys(pn).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:async(e,{redirect:o=!1}={},i,r)=>{const s=await t.post(ee,i||{},{queryParams:Object.assign({provider:n},e&&{redirectURL:e}),token:r});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 mn=Fe("loginId"),bn=We(mn,Fe("code")),wn=We(mn),yn=We(mn,Je("phone")),kn=We(mn,Ke("email")),In=t=>({verify:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:bn(((e,o)=>Ue(t.post(Ae($t,n),{code:o,loginId:e}))))})),{}),signIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:wn(((e,o,i)=>Ue(t.post(Ae(Nt,n),{loginId:e,loginOptions:o},{token:i}))))})),{}),signUp:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:wn(((e,o)=>Ue(t.post(Ae(Wt,n),{loginId:e,user:o}))))})),{}),signUpOrIn:Object.keys(Ve).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:wn((e=>Ue(t.post(Ae(Kt,n),{loginId:e}))))})),{}),update:{email:kn(((e,n,o)=>Ue(t.post(Ft.email,{loginId:e,email:n},{token:o})))),phone:Object.keys(Be).reduce(((e,n)=>Object.assign(Object.assign({},e),{[n]:yn(((e,o,i)=>Ue(t.post(Ae(Ft.phone,n),{loginId:e,phone:o},{token:i}))))})),{})}}),On=We(Fe("tenant")),xn=We(Fe("code")),jn=t=>({start:On((async(e,n,{redirect:o=!1}={},i,r)=>{const s=await t.post(oe,i||{},{queryParams:{tenant:e,redirectURL:n},token:r});if(!o||!s.ok)return Ue(Promise.resolve(s));const{url:a}=await s.json();window.location.href=a})),exchange:xn((e=>Ue(t.post(ie,{code:e}))))}),Sn=Fe("loginId"),Cn=We(Sn,Fe("code")),En=We(Sn),_n=We(Sn),An=t=>({signUp:En(((e,n)=>Ue(t.post(se,{loginId:e,user:n})))),verify:Cn(((e,n,o,i)=>Ue(t.post(re,{loginId:e,code:n,loginOptions:o},{token:i})))),update:_n(((e,n)=>Ue(t.post(ae,{loginId:e},{token:n}))))}),Un=[Ne('"loginId" must be a string')],Rn=Fe("loginId"),Pn=Fe("origin"),Tn=We(Rn,Pn,Fe("name")),Ln=We(Rn,Pn),Mn=We(Un,Pn),qn=We(Rn,Pn,Fe("token")),Dn=We(Fe("transactionId"),Fe("response")),$n=t=>({signUp:{start:Tn(((e,n,o)=>Ue(t.post(le.start,{user:{loginId:e,name:o},origin:n})))),finish:Dn(((e,n)=>Ue(t.post(le.finish,{transactionId:e,response:n}))))},signIn:{start:Mn(((e,n,o,i)=>Ue(t.post(ce.start,{loginId:e,origin:n,loginOptions:o},{token:i})))),finish:Dn(((e,n)=>Ue(t.post(ce.finish,{transactionId:e,response:n}))))},signUpOrIn:{start:Ln(((e,n)=>Ue(t.post(ue.start,{loginId:e,origin:n}))))},update:{start:qn(((e,n,o)=>Ue(t.post(de.start,{loginId:e,origin:n},{token:o})))),finish:Dn(((e,n)=>Ue(t.post(de.finish,{transactionId:e,response:n}))))}}),Nn=We(Fe("token"));var Wn,Fn=We([("projectId",Wn=Fe("projectId"),Re(((t,e)=>n=>Pe(...e).validate(qt(n,t)))("projectId",Wn))())])((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:ze(a),otp:In(a),magicLink:hn(a),enchantedLink:nn(a),oauth:gn(a),saml:jn(a),totp:An(a),webauthn:$n(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(Ce),getJwtPermissions:Nn(Ee),getJwtRoles:Nn(_e),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 Kn=(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 Jn=Object.assign(Fn,{DeliveryMethods:Ve});var Hn="Blocked by CSP",zn="API key required",Bn="3.8.2",Vn="9319";function Zn(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===Hn||e===Vn}(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 Gn="https://fpnpmcdn.net/v<version>/<apiKey>/loader_v<loaderVersion>.js",Xn="Failed to load the JS script of the agent";function Yn(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:Gn;return Promise.resolve().then((function(){if(!s||"string"!=typeof s)throw new Error(zn);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(Bn):t}))}(String(t),e)}))}(l,s);return Zn(t,Qn).catch(eo)})).then((function(e){var n=e[0],o=e[1];return n.load(t(t({},a),{ldi:o}))}))}function Qn(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(Hn)}();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(Xn))},o.async=!0,o.src=t,r.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(Vn);return n}function eo(t){throw t instanceof Error&&t.message===Vn?new Error(Xn):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,i){if("undefined"!=typeof document){"number"==typeof(i=no({},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,"",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 io=(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},ro=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 ro(t);return(null==e?void 0:e.user)||((null==e?void 0:e.hasOwnProperty("userId"))?e:void 0)},ao="undefined"!=typeof localStorage,lo=(t,e)=>ao&&(null===localStorage||void 0===localStorage?void 0:localStorage.setItem(t,e)),co=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),mo=()=>co("dls_last_user_login_id"),bo=()=>co("dls_last_user_display_name"),wo=t=>async(...e)=>{var n;e[1]=e[1]||{};const[,o={}]=e,i=mo(),r=bo();return i&&(null!==(n=o.lastAuth)&&void 0!==n||(o.lastAuth={}),o.lastAuth.loginId=i,o.lastAuth.name=r),await t(...e)},yo=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:i}=t,r=e(t,["refreshJwt","sessionJwt"]);void 0===n&&(n=!1),o&&lo("DSR",o),i&&(n?function(t,e,{cookiePath:n,cookieDomain:o,cookieExpiration:i}){if(e){const r=new Date(1e3*i);oo.set(t,e,{path:n,domain:o,expires:r,sameSite:"Strict",secure:!0})}}("DS",i,r):lo("DS",i))};function Oo(){return co("DSR")||""}function xo(){return oo.get("DS")||co("DS")||""}function jo(){uo("DSR"),uo("DS"),oo.remove("DS")}const So=t=>Object.assign(t,{token:t.token||Oo()}),Co=t=>async(...e)=>{const n=await t(...e);return jo(),n};async function Eo(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:Lo(n.rawId),type:n.type,response:{attestationObject:Lo(n.response.attestationObject),clientDataJSON:Lo(n.response.clientDataJSON)}});var n}async function _o(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:Lo(t.rawId),type:t.type,response:{authenticatorData:Lo(t.response.authenticatorData),clientDataJSON:Lo(t.response.clientDataJSON),signature:Lo(t.response.signature),userHandle:t.response.userHandle?Lo(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 Lo(t){return btoa(String.fromCharCode.apply(null,new Uint8Array(t))).replace(/\//g,"_").replace(/\+/g,"-").replace(/=/g,"")}var Mo,qo=(Mo=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 Eo(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 _o(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 Eo(o.data.options);return await t.webauthn.signUp.finish(o.data.transactionId,e)}{const e=await _o(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 Eo(o.data.options);return await t.webauthn.update.finish(o.data.transactionId,i)},helpers:{create:Eo,get:_o,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}),Do=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 $o=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?(ho?i&&(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:i}=await o.get({linkedId:e});(t=>{const e={value:t,expiry:(new Date).getTime()+864e5};localStorage.setItem("fp",JSON.stringify(e))})(fo(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(io(r,{beforeRequest:vo}))):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(io(o,{afterRequest:async(t,e)=>{const{refreshJwt:n,sessionJwt:o}=await ro(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 Kn(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=ko(),o=ko(),i=t(io(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:i}=await ro(e);i&&n.pub(i)}}})),r=Kn(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(io(e,{afterRequest:async(t,e)=>{var n;const o=await so(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=>{lo("dls_last_user_login_id",t)})(i),(t=>{lo("dls_last_user_display_name",t)})(r))}}));let o=Kn(n,["flow.start"],wo);return o=Kn(o,["logout","logoutAll"],yo),Object.assign(o,{getLastUserLoginId:mo,getLastUserDisplayName:bo})}),(t=>n=>{var{persistTokens:o,sessionTokenViaCookie:i}=n,r=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(r);const s=t(io(r,{beforeRequest:So,afterRequest:async(t,e)=>{401===(null==e?void 0:e.status)?jo():Io(await ro(e),i)}})),a=Kn(s,["logout","logoutAll"],Co);return Object.assign(a,{getRefreshToken:Oo,getSessionToken:xo})}))(((...t)=>{const e=Jn(...t);return Object.assign(Object.assign({},e),{flow:Do(e),webauthn:qo(e)})})),No=document.createElement("template");var Wo,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,Oi,xi,ji,Si,Ci,Ei,_i,Ai,Ui,Ri,Pi,Ti;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 Li extends HTMLElement{constructor(t){super(),Wo.add(this),Fo.set(this,!1),Ko.set(this,new q),Jo.set(this,new q),this.nextRequestStatus=new q({isLoading:!1}),Ho.set(this,void 0),zo.set(this,{popstate:o(this,Wo,"m",Yo).bind(this)}),Bo.set(this,void 0),ei.set(this,U((()=>n(this,void 0,void 0,(function*(){const t=j(this.projectId,"config.json");try{return yield O(t,"json")}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,Wo,"m",li).call(this,t,e)},info:(t,e="")=>{console.log(t,e)}},i(this,Bo,t,"f"),o(this,Wo,"m",Vo).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}getFlowConfig(){var t;return n(this,void 0,void 0,(function*(){const e=yield o(this,ei,"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,Wo,"m",Zo).call(this))return void o(this,Wo,"m",Go).call(this);o(this,Wo,"m",Xo).call(this),o(this,Wo,"m",oi).call(this),o(this,Wo,"m",ni).call(this),o(this,Wo,"m",ci).call(this);const{executionId:t,stepId:e,token:n,code:r,exchangeError:s}=A();window.addEventListener("popstate",o(this,zo,"f").popstate),o(this,Ko,"f").subscribe(o(this,Wo,"m",ti).bind(this)),o(this,Jo,"f").subscribe(o(this,Wo,"m",ai).bind(this)),o(this,Ko,"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,Jo,"f").update({isDebug:this.debug}),i(this,Fo,!0,"f")}}))}disconnectedCallback(){o(this,Ko,"f").unsubscribeAll(),o(this,Jo,"f").unsubscribeAll(),o(this,Wo,"m",si).call(this),window.removeEventListener("popstate",o(this,zo,"f").popstate)}attributeChangedCallback(t,e,n){if(this.shadowRoot.isConnected&&o(this,Fo,"f")&&e!==n&&Li.observedAttributes.includes(t)){o(this,Wo,"m",Xo).call(this);const i=null===e;o(this,Ko,"f").update((({stepId:e,executionId:o})=>{let r=e,s=o;return i||(s=null,r=null,E()),{[_(t)]:n,stepId:r,executionId:s}})),o(this,Jo,"f").update({isDebug:this.debug})}}}Fo=new WeakMap,Ko=new WeakMap,Jo=new WeakMap,Ho=new WeakMap,zo=new WeakMap,Bo=new WeakMap,ei=new WeakMap,Wo=new WeakSet,Vo=function(){this.attachShadow({mode:"open"}),this.shadowRoot.appendChild(No.content.cloneNode(!0)),this.rootElement=this.shadowRoot.querySelector("#wc-root")},Zo=function(){const t=/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor);return!this.shadowRoot.host.closest("form")&&t},Go=function(){const t=this.shadowRoot.host,e=document.createElement("form");t.parentElement.appendChild(e),e.appendChild(t)},Xo=function(){const t=["base-url","tenant","theme","debug","telemetryKey","redirect-url","auto-focus"];if(Li.observedAttributes.forEach((e=>{if(!t.includes(e)&&!this[_(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}=C();o(this,Ko,"f").update({stepId:t,executionId:e})},Qo=function(t,e,o){const i=o||void 0,r=!!i;this.sdk=$o(Object.assign(Object.assign({},Li.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})}}))}))},ti=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,Wo,"m",Qo).call(this,e,n,r)}o(this,Bo,"f").call(this,t)}))},ni=function(){var t,e,i,r;return n(this,void 0,void 0,(function*(){const n=yield o(this,ei,"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)))}))},oi=function(){o(this,Wo,"m",ii).call(this),o(this,Wo,"m",ri).call(this)},ii=function(){return n(this,void 0,void 0,(function*(){const t=document.createElement("style"),e=j(this.projectId,"theme.css");try{t.innerText=yield O(e,"text")}catch(t){this.logger.error("Cannot fetch theme file","make sure that your projectId & flowId are correct")}this.shadowRoot.appendChild(t)}))},ri=function(){this.rootElement.setAttribute("data-theme",this.theme)},si=function(){var t;null===(t=o(this,Ho,"f"))||void 0===t||t.remove(),i(this,Ho,null,"f")},ai=function({isDebug:t}){return n(this,void 0,void 0,(function*(){t?(yield Promise.resolve().then((function(){return $i})),i(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,Wo,"m",si).call(this)}))},li=function(t,e){var n;t&&this.debug&&(null===(n=o(this,Ho,"f"))||void 0===n||n.updateData({title:t,description:e}))},ci=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()}},Li.sdkConfigOverrides={baseHeaders:{"x-descope-sdk-name":"web-component","x-descope-sdk-version":"2.0.0"}};class Mi extends Li{constructor(){const t=new q;super(t.update.bind(t)),ui.add(this),this.stepState=new q({},{updateOnlyOnChange:!1}),di.set(this,void 0),hi.set(this,null),pi.set(this,(()=>{clearInterval(o(this,di,"f")),i(this,di,null,"f")})),fi.set(this,(t=>{var e,n,i,s,a,l,c,u,h;if(!(null==t?void 0:t.ok)){o(this,pi,"f").call(this),o(this,ui,"m",xi).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===(h=t.data)||void 0===h?void 0:h.error)&&this.logger.error(`[${t.data.error.code}]: ${t.data.error.description}`,t.data.error.message);const{status:g,authInfo:v,lastAuth:m}=t.data;if("completed"===g)return function(t){r&&localStorage.setItem(d,JSON.stringify(t))}(m),o(this,pi,"f").call(this),void o(this,ui,"m",xi).call(this,"success",v);const{executionId:b,stepId:w,action:y,screen:k,redirect:I,webauthn:O}=t.data;y!==f?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==O?void 0:O.transactionId,webauthnOptions:null==O?void 0:O.options}):this.flowState.update({action:y})})),gi.set(this,U((()=>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){Li.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:h,action:m,screenId:y,screenState:k,redirectTo:I,redirectUrl:O,token:x,code:C,exchangeError:E,webauthnTransactionId:_,webauthnOptions:A}=t;let U,R;o(this,di,"f")&&o(this,pi,"f").call(this);const P=this.sdk.getLastUserLoginId();if(!h){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},O&&{redirectUrl:O}));return void o(this,fi,"f").call(this,t)}}if(r("token")&&x||r("code")&&C||r("exchangeError")&&E){const t=yield this.sdk.flow.next(h,u,b,{token:x,exchangeCode:C,exchangeError:E});return o(this,fi,"f").call(this,t),void this.flowState.update({token:void 0,code:void 0,exchangeError:void 0})}if(m===p)return I||this.logger.error("Did not get redirect url"),void window.location.assign(I);if(m===g||m===v){if(!_||!A)return void this.logger.error("Did not get webauthn transaction id or options");let t,e;null===(s=o(this,hi,"f"))||void 0===s||s.abort(),i(this,hi,null,"f");try{t=m===g?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(h,u,b,{transactionId:_,response:t,cancelWebauthn:e});o(this,fi,"f").call(this,n)}if(m===f&&i(this,di,setInterval((()=>n(this,void 0,void 0,(function*(){const t=yield this.sdk.flow.next(h,u,w,{});o(this,fi,"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:S(+u,+e.stepId),screenState:Object.assign(Object.assign({},k),{lastAuth:{loginId:P,name:this.sdk.getLastUserDisplayName()||P}}),htmlUrl:j(a,`${U||y}.html`)},L=function(t){const e={};if(t)try{Object.assign(e,JSON.parse(localStorage.getItem(d)))}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(h,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");c.innerHTML=yield O(r,"text");const u=c.content.cloneNode(!0),d=(t=>{var e;const n=Array.from(t.querySelectorAll("script[data-id]")).map((e=>{var n;const o=e.getAttribute("data-id"),i=null===(n=t.getElementById(o))||void 0===n?void 0:n.innerHTML,r=Function(i).bind(e.previousSibling);return e.remove(),r}));return null===(e=t.querySelector("scripts"))||void 0===e||e.remove(),n})(u);this.sdk.webauthn.helpers.isSupported()?yield o(this,ui,"m",mi).call(this,u,a):u.querySelectorAll(`button[${h}="biometrics"]`).forEach((t=>t.setAttribute("disabled","true"))),D(u,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})`))})(u.querySelector("div"),null===(i=null==l?void 0:l.totp)||void 0===i?void 0:i.image);const p=()=>n(this,void 0,void 0,(function*(){try{d.forEach((t=>{t()}))}catch(t){this.logger.error(t.message)}this.rootElement.replaceChildren(u);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,ui,"m",Ii).call(this,a),o(this,ui,"m",xi).call(this,"page-updated",{});if(this.rootElement.querySelector(`[${h}="polling"]`)){const t=yield a(w,{});o(this,fi,"f").call(this,t)}}));s?o(this,ui,"m",Oi).call(this,p,s):p()}))}}di=new WeakMap,hi=new WeakMap,pi=new WeakMap,fi=new WeakMap,gi=new WeakMap,ui=new WeakSet,vi=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}))}},mi=function(t,e){var r;return n(this,void 0,void 0,(function*(){null===(r=o(this,hi,"f"))||void 0===r||r.abort();const s=t.querySelector('input[autocomplete="webauthn"]');if(s&&(yield $())){const{options:t,transactionId:r}=(yield o(this,gi,"f").call(this))||{};t&&r&&(o(this,ui,"m",vi).call(this,s),i(this,hi,new AbortController,"f"),this.sdk.webauthn.helpers.conditional(t,o(this,hi,"f")).then((t=>n(this,void 0,void 0,(function*(){const n=yield e(s.id,{transactionId:r,response:t});o(this,fi,"f").call(this,n)})))).catch((t=>{"AbortError"!==t.name&&this.logger.error("Conditional login failed",t.message)})))}}))},bi=function(){return Array.from(this.shadowRoot.querySelectorAll(".descope-input")).every((t=>(t.reportValidity(),t.checkValidity())))},wi=function(){return Array.from(this.shadowRoot.querySelectorAll("*[name]")).reduce(((t,e)=>e.name?Object.assign(t,{[e.name]:e.value}):t),{})},yi=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"))}))},ki=function(t,e){return n(this,void 0,void 0,(function*(){if(t.formNoValidate||o(this,ui,"m",bi).call(this)){const i=null==t?void 0:t.getAttribute("id");o(this,ui,"m",yi).call(this,t);const r=o(this,ui,"m",wi).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,fi,"f").call(this,l)}var n}))},Ii=function(t){this.rootElement.querySelectorAll("button").forEach((e=>{e.onclick=()=>{o(this,ui,"m",ki).call(this,e,t)}}))},Oi=function(t,e){this.rootElement.addEventListener("transitionend",(()=>{this.rootElement.classList.remove("fade-out"),t()}),{once:!0});const n=e===y.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")},xi=function(t,e){this.dispatchEvent(new CustomEvent(t,{detail:e}))},customElements.define("descope-wc",Mi);const qi=document.createElement("template");qi.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(),ji.add(this),Si.set(this,new q({messages:[]})),Ci.set(this,void 0),Ei.set(this,void 0),_i.set(this,void 0),Ai.set(this,{resize:o(this,ji,"m",Ti).bind(this)}),this.attachShadow({mode:"open"}),this.shadowRoot.appendChild(qi.content.cloneNode(!0)),i(this,Ci,this.shadowRoot.querySelector(".debugger"),"f"),i(this,Ei,o(this,Ci,"f").querySelector(".content"),"f"),i(this,_i,o(this,Ci,"f").querySelector(".header"),"f")}updateData(t){o(this,Si,"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]=N(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,Ci,"f"),o(this,_i,"f"),{top:"all",bottom:100,left:100,right:100}),window.addEventListener("resize",o(this,Ai,"f").resize),(t=o(this,Ci,"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,Ci,"f").onresize=o(this,ji,"m",Pi).bind(this),o(this,Si,"f").subscribe(o(this,ji,"m",Ui).bind(this))}disconnectedCallback(){o(this,Si,"f").unsubscribeAll(),window.removeEventListener("resize",o(this,Ai,"f").resize)}}Si=new WeakMap,Ci=new WeakMap,Ei=new WeakMap,_i=new WeakMap,Ai=new WeakMap,ji=new WeakSet,Ui=function(t){o(this,ji,"m",Ri).call(this,t),o(this,ji,"m",Pi).call(this)},Ri=function(t){o(this,Ei,"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("")},Pi=function(){o(this,Ei,"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)}))},Ti=function(){const[t,e]=N(o(this,Ci,"f"),Number.parseInt(o(this,Ci,"f").style.left,10),Number.parseInt(o(this,Ci,"f").style.top,10),{top:"all",bottom:100,left:100,right:100});o(this,Ci,"f").style.top=`${e}px`,o(this,Ci,"f").style.left=`${t}px`},customElements.define("descope-debugger",Di);var $i=Object.freeze({__proto__:null,default:Di})}();
|
package/package.json
CHANGED
|
@@ -1,71 +1,89 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
2
|
+
"name": "@descope/web-component",
|
|
3
|
+
"version": "2.0.0",
|
|
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.33.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
|
}
|
package/dist/descope-wc.d.ts
DELETED
|
@@ -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 };
|
package/dist/descope-wc.js
DELETED
|
@@ -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)}();
|