authhero 8.25.0 → 8.25.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/assets/u/css/tailwind.css +1 -1
  2. package/dist/authhero.cjs +139 -139
  3. package/dist/authhero.css +1 -1
  4. package/dist/authhero.d.ts +251 -233
  5. package/dist/authhero.mjs +11214 -13235
  6. package/dist/tailwind.css +1 -1
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  9. package/dist/types/components/AuthCard.d.ts +17 -0
  10. package/dist/types/components/PasswordField.d.ts +18 -0
  11. package/dist/types/components/auth-form-styles.d.ts +39 -0
  12. package/dist/types/components/auth-forms.render.test.d.ts +1 -0
  13. package/dist/types/components/ui/input.d.ts +1 -0
  14. package/dist/types/index.d.ts +230 -230
  15. package/dist/types/routes/auth-api/index.d.ts +42 -42
  16. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  17. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  18. package/dist/types/routes/auth-api/revoke.d.ts +8 -8
  19. package/dist/types/routes/auth-api/token.d.ts +22 -22
  20. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  21. package/dist/types/routes/management-api/actions.d.ts +1 -1
  22. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  23. package/dist/types/routes/management-api/branding.d.ts +1 -1
  24. package/dist/types/routes/management-api/clients.d.ts +10 -10
  25. package/dist/types/routes/management-api/connections.d.ts +6 -6
  26. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  27. package/dist/types/routes/management-api/forms.d.ts +126 -126
  28. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  29. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  30. package/dist/types/routes/management-api/index.d.ts +183 -183
  31. package/dist/types/routes/management-api/logs.d.ts +4 -4
  32. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  33. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/roles.d.ts +1 -1
  36. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  37. package/dist/types/routes/management-api/tenants.d.ts +8 -8
  38. package/dist/types/routes/management-api/users.d.ts +2 -2
  39. package/dist/types/routes/proxy-control-plane/index.d.ts +7 -1
  40. package/dist/types/routes/proxy-control-plane/verify.d.ts +13 -1
  41. package/dist/types/routes/universal-login/common.d.ts +4 -4
  42. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  43. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  45. package/dist/types/styles/tailwind.d.ts +1 -1
  46. package/dist/types/types/AuthHeroConfig.d.ts +6 -1
  47. package/dist/types/types/IdToken.d.ts +4 -4
  48. package/package.json +3 -3
@@ -1682,8 +1682,13 @@ interface AuthHeroConfig {
1682
1682
  * subdomains, whose per-tenant control-plane credential `jwksFetch`
1683
1683
  * resolves locally (see #1139). Consulted before any JWKS fetch; return
1684
1684
  * `true` only for issuer hosts you serve.
1685
+ *
1686
+ * The second argument is the token's (unverified) `tenant_id` claim. Bind
1687
+ * it to `iss` so a caller holding one tenant's subdomain key cannot act on
1688
+ * another by naming it in the claim (#1143), e.g.
1689
+ * `(iss, tid) => !!tid && iss === \`https://${tid}.${issuerHost}/\``.
1685
1690
  */
1686
- isTrustedIssuer?: (iss: string) => boolean;
1691
+ isTrustedIssuer?: (iss: string, tenantId: string | undefined) => boolean;
1687
1692
  /**
1688
1693
  * Optional receiver for `POST /sync` events emitted by tenant shards via
1689
1694
  * the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
@@ -2426,6 +2431,7 @@ interface InputProps {
2426
2431
  disabled?: boolean;
2427
2432
  error?: boolean;
2428
2433
  style?: Record<string, string | number>;
2434
+ "data-password-input"?: string;
2429
2435
  }
2430
2436
  declare const Input: FC<InputProps>;
2431
2437
 
@@ -2436,7 +2442,7 @@ interface LabelProps {
2436
2442
  }
2437
2443
  declare const Label: FC<PropsWithChildren<LabelProps>>;
2438
2444
 
2439
- declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }\n\n/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}body:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0\\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity,1))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity,1))}.border-gray-400{--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity,1))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity,1))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity,1))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity,1))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:normal-case::-moz-placeholder{text-transform:none}.placeholder\\:normal-case::placeholder{text-transform:none}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:z-10:focus{z-index:10}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}.dark\\:border-gray-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.dark\\:border-gray-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity,1))}.dark\\:border-gray-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity,1))}.dark\\:bg-black:is(.dark *){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.dark\\:bg-gray-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity,1))}.dark\\:bg-gray-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:bg-gray-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:text-\\[\\#201a41\\]:is(.dark *){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity,1))}.dark\\:text-gray-300:is(.dark *){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.dark\\:text-gray-400:is(.dark *){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\\:ring-offset-gray-900:is(.dark *){--tw-ring-offset-color:#08080e}.dark\\:placeholder\\:text-gray-400:is(.dark *)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:placeholder\\:text-gray-400:is(.dark *)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:hover\\:bg-black\\/90:hover:is(.dark *){background-color:rgba(0,0,0,.9)}.dark\\:hover\\:bg-gray-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:hover\\:bg-gray-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
2445
+ declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }\n\n/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}body:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0\\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity,1))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity,1))}.border-gray-400{--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity,1))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity,1))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity,1))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity,1))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:normal-case::-moz-placeholder{text-transform:none}.placeholder\\:normal-case::placeholder{text-transform:none}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:z-10:focus{z-index:10}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}.dark\\:border-gray-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.dark\\:border-gray-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity,1))}.dark\\:border-gray-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity,1))}.dark\\:bg-black:is(.dark *){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.dark\\:bg-gray-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity,1))}.dark\\:bg-gray-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:bg-gray-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:text-\\[\\#201a41\\]:is(.dark *){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity,1))}.dark\\:text-gray-300:is(.dark *){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.dark\\:text-gray-400:is(.dark *){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\\:ring-offset-gray-900:is(.dark *){--tw-ring-offset-color:#08080e}.dark\\:placeholder\\:text-gray-400:is(.dark *)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:placeholder\\:text-gray-400:is(.dark *)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:hover\\:bg-black\\/90:hover:is(.dark *){background-color:rgba(0,0,0,.9)}.dark\\:hover\\:bg-gray-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:hover\\:bg-gray-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
2440
2446
 
2441
2447
  declare function injectTailwindCSS(): void;
2442
2448
 
@@ -3559,8 +3565,20 @@ interface VerifyControlPlaneTokenOptions {
3559
3565
  * hosts you actually serve. The signature must still verify against the
3560
3566
  * resolved key, so this does not broaden trust beyond "a caller holding that
3561
3567
  * tenant's registered private key."
3568
+ *
3569
+ * `tenantId` is the token's (as-yet UNVERIFIED) `tenant_id` claim. With
3570
+ * per-tenant signing keys the key owner is encoded in `iss` while the
3571
+ * `tenant_id` claim is set freely by the caller, so a predicate that only
3572
+ * looks at `iss` cannot stop tenant A (holding A's key) from acting on
3573
+ * tenant B by claiming `tenant_id: "B"`. Bind the two here — e.g.
3574
+ * `(iss, tid) => !!tid && iss === \`https://${tid}.${host}/\``. This is
3575
+ * sound despite `tenant_id` being unverified at predicate time: it is the
3576
+ * SAME token whose signature is checked moments later, so verification
3577
+ * confirms the exact `tenant_id` the predicate bound to `iss`. A forged
3578
+ * `tenant_id` either fails the predicate (mismatch with `iss`) or fails
3579
+ * signature verification (the caller lacks that subdomain's key).
3562
3580
  */
3563
- isTrustedIssuer?: (iss: string) => boolean;
3581
+ isTrustedIssuer?: (iss: string, tenantId: string | undefined) => boolean;
3564
3582
  }
3565
3583
  /**
3566
3584
  * Verify a bearer token for the proxy control plane. Returns `{ ok: true }`
@@ -4026,8 +4044,8 @@ declare function init(config: AuthHeroConfig): {
4026
4044
  $get: {
4027
4045
  input: {
4028
4046
  query: {
4029
- include_password_hashes?: "false" | "true" | undefined;
4030
- gzip?: "false" | "true" | undefined;
4047
+ include_password_hashes?: "true" | "false" | undefined;
4048
+ gzip?: "true" | "false" | undefined;
4031
4049
  };
4032
4050
  } & {
4033
4051
  header: {
@@ -4040,8 +4058,8 @@ declare function init(config: AuthHeroConfig): {
4040
4058
  } | {
4041
4059
  input: {
4042
4060
  query: {
4043
- include_password_hashes?: "false" | "true" | undefined;
4044
- gzip?: "false" | "true" | undefined;
4061
+ include_password_hashes?: "true" | "false" | undefined;
4062
+ gzip?: "true" | "false" | undefined;
4045
4063
  };
4046
4064
  } & {
4047
4065
  header: {
@@ -4060,7 +4078,7 @@ declare function init(config: AuthHeroConfig): {
4060
4078
  $post: {
4061
4079
  input: {
4062
4080
  query: {
4063
- include_password_hashes?: "false" | "true" | undefined;
4081
+ include_password_hashes?: "true" | "false" | undefined;
4064
4082
  };
4065
4083
  } & {
4066
4084
  header: {
@@ -4114,7 +4132,7 @@ declare function init(config: AuthHeroConfig): {
4114
4132
  };
4115
4133
  } & {
4116
4134
  json: {
4117
- type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
4135
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
4118
4136
  phone_number?: string | undefined;
4119
4137
  totp_secret?: string | undefined;
4120
4138
  credential_id?: string | undefined;
@@ -4254,7 +4272,7 @@ declare function init(config: AuthHeroConfig): {
4254
4272
  };
4255
4273
  };
4256
4274
  output: {
4257
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4275
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4258
4276
  enabled: boolean;
4259
4277
  trial_expired?: boolean | undefined;
4260
4278
  }[];
@@ -4409,7 +4427,7 @@ declare function init(config: AuthHeroConfig): {
4409
4427
  $get: {
4410
4428
  input: {
4411
4429
  param: {
4412
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4430
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4413
4431
  };
4414
4432
  } & {
4415
4433
  header: {
@@ -4417,7 +4435,7 @@ declare function init(config: AuthHeroConfig): {
4417
4435
  };
4418
4436
  };
4419
4437
  output: {
4420
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4438
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4421
4439
  enabled: boolean;
4422
4440
  trial_expired?: boolean | undefined;
4423
4441
  };
@@ -4430,7 +4448,7 @@ declare function init(config: AuthHeroConfig): {
4430
4448
  $put: {
4431
4449
  input: {
4432
4450
  param: {
4433
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4451
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4434
4452
  };
4435
4453
  } & {
4436
4454
  header: {
@@ -4442,7 +4460,7 @@ declare function init(config: AuthHeroConfig): {
4442
4460
  };
4443
4461
  };
4444
4462
  output: {
4445
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4463
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4446
4464
  enabled: boolean;
4447
4465
  trial_expired?: boolean | undefined;
4448
4466
  };
@@ -5213,20 +5231,20 @@ declare function init(config: AuthHeroConfig): {
5213
5231
  };
5214
5232
  } & {
5215
5233
  json: {
5234
+ client_id: string;
5216
5235
  invitee: {
5217
5236
  email?: string | undefined;
5218
5237
  };
5219
5238
  inviter: {
5220
5239
  name?: string | undefined;
5221
5240
  };
5222
- client_id: string;
5223
5241
  id?: string | undefined;
5242
+ app_metadata?: Record<string, any> | undefined;
5243
+ user_metadata?: Record<string, any> | undefined;
5244
+ connection_id?: string | undefined;
5224
5245
  roles?: string[] | undefined;
5225
5246
  send_invitation_email?: boolean | undefined;
5226
5247
  ttl_sec?: number | undefined;
5227
- connection_id?: string | undefined;
5228
- app_metadata?: Record<string, any> | undefined;
5229
- user_metadata?: Record<string, any> | undefined;
5230
5248
  };
5231
5249
  };
5232
5250
  output: {
@@ -5981,8 +5999,8 @@ declare function init(config: AuthHeroConfig): {
5981
5999
  };
5982
6000
  } & {
5983
6001
  query: {
5984
- page?: string | undefined;
5985
6002
  from?: string | undefined;
6003
+ page?: string | undefined;
5986
6004
  include_totals?: string | undefined;
5987
6005
  per_page?: string | undefined;
5988
6006
  take?: string | undefined;
@@ -6706,7 +6724,7 @@ declare function init(config: AuthHeroConfig): {
6706
6724
  hint?: string | undefined;
6707
6725
  messages?: {
6708
6726
  text: string;
6709
- type: "success" | "error" | "info" | "warning";
6727
+ type: "error" | "success" | "info" | "warning";
6710
6728
  id?: number | undefined;
6711
6729
  }[] | undefined;
6712
6730
  required?: boolean | undefined;
@@ -6724,7 +6742,7 @@ declare function init(config: AuthHeroConfig): {
6724
6742
  hint?: string | undefined;
6725
6743
  messages?: {
6726
6744
  text: string;
6727
- type: "success" | "error" | "info" | "warning";
6745
+ type: "error" | "success" | "info" | "warning";
6728
6746
  id?: number | undefined;
6729
6747
  }[] | undefined;
6730
6748
  required?: boolean | undefined;
@@ -6748,7 +6766,7 @@ declare function init(config: AuthHeroConfig): {
6748
6766
  hint?: string | undefined;
6749
6767
  messages?: {
6750
6768
  text: string;
6751
- type: "success" | "error" | "info" | "warning";
6769
+ type: "error" | "success" | "info" | "warning";
6752
6770
  id?: number | undefined;
6753
6771
  }[] | undefined;
6754
6772
  required?: boolean | undefined;
@@ -6772,7 +6790,7 @@ declare function init(config: AuthHeroConfig): {
6772
6790
  hint?: string | undefined;
6773
6791
  messages?: {
6774
6792
  text: string;
6775
- type: "success" | "error" | "info" | "warning";
6793
+ type: "error" | "success" | "info" | "warning";
6776
6794
  id?: number | undefined;
6777
6795
  }[] | undefined;
6778
6796
  required?: boolean | undefined;
@@ -6796,7 +6814,7 @@ declare function init(config: AuthHeroConfig): {
6796
6814
  hint?: string | undefined;
6797
6815
  messages?: {
6798
6816
  text: string;
6799
- type: "success" | "error" | "info" | "warning";
6817
+ type: "error" | "success" | "info" | "warning";
6800
6818
  id?: number | undefined;
6801
6819
  }[] | undefined;
6802
6820
  required?: boolean | undefined;
@@ -6825,7 +6843,7 @@ declare function init(config: AuthHeroConfig): {
6825
6843
  hint?: string | undefined;
6826
6844
  messages?: {
6827
6845
  text: string;
6828
- type: "success" | "error" | "info" | "warning";
6846
+ type: "error" | "success" | "info" | "warning";
6829
6847
  id?: number | undefined;
6830
6848
  }[] | undefined;
6831
6849
  required?: boolean | undefined;
@@ -6840,7 +6858,7 @@ declare function init(config: AuthHeroConfig): {
6840
6858
  hint?: string | undefined;
6841
6859
  messages?: {
6842
6860
  text: string;
6843
- type: "success" | "error" | "info" | "warning";
6861
+ type: "error" | "success" | "info" | "warning";
6844
6862
  id?: number | undefined;
6845
6863
  }[] | undefined;
6846
6864
  required?: boolean | undefined;
@@ -6861,7 +6879,7 @@ declare function init(config: AuthHeroConfig): {
6861
6879
  hint?: string | undefined;
6862
6880
  messages?: {
6863
6881
  text: string;
6864
- type: "success" | "error" | "info" | "warning";
6882
+ type: "error" | "success" | "info" | "warning";
6865
6883
  id?: number | undefined;
6866
6884
  }[] | undefined;
6867
6885
  required?: boolean | undefined;
@@ -6886,7 +6904,7 @@ declare function init(config: AuthHeroConfig): {
6886
6904
  hint?: string | undefined;
6887
6905
  messages?: {
6888
6906
  text: string;
6889
- type: "success" | "error" | "info" | "warning";
6907
+ type: "error" | "success" | "info" | "warning";
6890
6908
  id?: number | undefined;
6891
6909
  }[] | undefined;
6892
6910
  required?: boolean | undefined;
@@ -6905,7 +6923,7 @@ declare function init(config: AuthHeroConfig): {
6905
6923
  hint?: string | undefined;
6906
6924
  messages?: {
6907
6925
  text: string;
6908
- type: "success" | "error" | "info" | "warning";
6926
+ type: "error" | "success" | "info" | "warning";
6909
6927
  id?: number | undefined;
6910
6928
  }[] | undefined;
6911
6929
  required?: boolean | undefined;
@@ -6925,7 +6943,7 @@ declare function init(config: AuthHeroConfig): {
6925
6943
  hint?: string | undefined;
6926
6944
  messages?: {
6927
6945
  text: string;
6928
- type: "success" | "error" | "info" | "warning";
6946
+ type: "error" | "success" | "info" | "warning";
6929
6947
  id?: number | undefined;
6930
6948
  }[] | undefined;
6931
6949
  required?: boolean | undefined;
@@ -6944,7 +6962,7 @@ declare function init(config: AuthHeroConfig): {
6944
6962
  hint?: string | undefined;
6945
6963
  messages?: {
6946
6964
  text: string;
6947
- type: "success" | "error" | "info" | "warning";
6965
+ type: "error" | "success" | "info" | "warning";
6948
6966
  id?: number | undefined;
6949
6967
  }[] | undefined;
6950
6968
  required?: boolean | undefined;
@@ -6966,7 +6984,7 @@ declare function init(config: AuthHeroConfig): {
6966
6984
  hint?: string | undefined;
6967
6985
  messages?: {
6968
6986
  text: string;
6969
- type: "success" | "error" | "info" | "warning";
6987
+ type: "error" | "success" | "info" | "warning";
6970
6988
  id?: number | undefined;
6971
6989
  }[] | undefined;
6972
6990
  required?: boolean | undefined;
@@ -6988,7 +7006,7 @@ declare function init(config: AuthHeroConfig): {
6988
7006
  hint?: string | undefined;
6989
7007
  messages?: {
6990
7008
  text: string;
6991
- type: "success" | "error" | "info" | "warning";
7009
+ type: "error" | "success" | "info" | "warning";
6992
7010
  id?: number | undefined;
6993
7011
  }[] | undefined;
6994
7012
  required?: boolean | undefined;
@@ -7007,7 +7025,7 @@ declare function init(config: AuthHeroConfig): {
7007
7025
  hint?: string | undefined;
7008
7026
  messages?: {
7009
7027
  text: string;
7010
- type: "success" | "error" | "info" | "warning";
7028
+ type: "error" | "success" | "info" | "warning";
7011
7029
  id?: number | undefined;
7012
7030
  }[] | undefined;
7013
7031
  required?: boolean | undefined;
@@ -7032,7 +7050,7 @@ declare function init(config: AuthHeroConfig): {
7032
7050
  hint?: string | undefined;
7033
7051
  messages?: {
7034
7052
  text: string;
7035
- type: "success" | "error" | "info" | "warning";
7053
+ type: "error" | "success" | "info" | "warning";
7036
7054
  id?: number | undefined;
7037
7055
  }[] | undefined;
7038
7056
  required?: boolean | undefined;
@@ -7053,7 +7071,7 @@ declare function init(config: AuthHeroConfig): {
7053
7071
  hint?: string | undefined;
7054
7072
  messages?: {
7055
7073
  text: string;
7056
- type: "success" | "error" | "info" | "warning";
7074
+ type: "error" | "success" | "info" | "warning";
7057
7075
  id?: number | undefined;
7058
7076
  }[] | undefined;
7059
7077
  required?: boolean | undefined;
@@ -7074,7 +7092,7 @@ declare function init(config: AuthHeroConfig): {
7074
7092
  hint?: string | undefined;
7075
7093
  messages?: {
7076
7094
  text: string;
7077
- type: "success" | "error" | "info" | "warning";
7095
+ type: "error" | "success" | "info" | "warning";
7078
7096
  id?: number | undefined;
7079
7097
  }[] | undefined;
7080
7098
  required?: boolean | undefined;
@@ -7307,7 +7325,7 @@ declare function init(config: AuthHeroConfig): {
7307
7325
  hint?: string | undefined;
7308
7326
  messages?: {
7309
7327
  text: string;
7310
- type: "success" | "error" | "info" | "warning";
7328
+ type: "error" | "success" | "info" | "warning";
7311
7329
  id?: number | undefined;
7312
7330
  }[] | undefined;
7313
7331
  required?: boolean | undefined;
@@ -7325,7 +7343,7 @@ declare function init(config: AuthHeroConfig): {
7325
7343
  hint?: string | undefined;
7326
7344
  messages?: {
7327
7345
  text: string;
7328
- type: "success" | "error" | "info" | "warning";
7346
+ type: "error" | "success" | "info" | "warning";
7329
7347
  id?: number | undefined;
7330
7348
  }[] | undefined;
7331
7349
  required?: boolean | undefined;
@@ -7349,7 +7367,7 @@ declare function init(config: AuthHeroConfig): {
7349
7367
  hint?: string | undefined;
7350
7368
  messages?: {
7351
7369
  text: string;
7352
- type: "success" | "error" | "info" | "warning";
7370
+ type: "error" | "success" | "info" | "warning";
7353
7371
  id?: number | undefined;
7354
7372
  }[] | undefined;
7355
7373
  required?: boolean | undefined;
@@ -7373,7 +7391,7 @@ declare function init(config: AuthHeroConfig): {
7373
7391
  hint?: string | undefined;
7374
7392
  messages?: {
7375
7393
  text: string;
7376
- type: "success" | "error" | "info" | "warning";
7394
+ type: "error" | "success" | "info" | "warning";
7377
7395
  id?: number | undefined;
7378
7396
  }[] | undefined;
7379
7397
  required?: boolean | undefined;
@@ -7397,7 +7415,7 @@ declare function init(config: AuthHeroConfig): {
7397
7415
  hint?: string | undefined;
7398
7416
  messages?: {
7399
7417
  text: string;
7400
- type: "success" | "error" | "info" | "warning";
7418
+ type: "error" | "success" | "info" | "warning";
7401
7419
  id?: number | undefined;
7402
7420
  }[] | undefined;
7403
7421
  required?: boolean | undefined;
@@ -7426,7 +7444,7 @@ declare function init(config: AuthHeroConfig): {
7426
7444
  hint?: string | undefined;
7427
7445
  messages?: {
7428
7446
  text: string;
7429
- type: "success" | "error" | "info" | "warning";
7447
+ type: "error" | "success" | "info" | "warning";
7430
7448
  id?: number | undefined;
7431
7449
  }[] | undefined;
7432
7450
  required?: boolean | undefined;
@@ -7441,7 +7459,7 @@ declare function init(config: AuthHeroConfig): {
7441
7459
  hint?: string | undefined;
7442
7460
  messages?: {
7443
7461
  text: string;
7444
- type: "success" | "error" | "info" | "warning";
7462
+ type: "error" | "success" | "info" | "warning";
7445
7463
  id?: number | undefined;
7446
7464
  }[] | undefined;
7447
7465
  required?: boolean | undefined;
@@ -7462,7 +7480,7 @@ declare function init(config: AuthHeroConfig): {
7462
7480
  hint?: string | undefined;
7463
7481
  messages?: {
7464
7482
  text: string;
7465
- type: "success" | "error" | "info" | "warning";
7483
+ type: "error" | "success" | "info" | "warning";
7466
7484
  id?: number | undefined;
7467
7485
  }[] | undefined;
7468
7486
  required?: boolean | undefined;
@@ -7487,7 +7505,7 @@ declare function init(config: AuthHeroConfig): {
7487
7505
  hint?: string | undefined;
7488
7506
  messages?: {
7489
7507
  text: string;
7490
- type: "success" | "error" | "info" | "warning";
7508
+ type: "error" | "success" | "info" | "warning";
7491
7509
  id?: number | undefined;
7492
7510
  }[] | undefined;
7493
7511
  required?: boolean | undefined;
@@ -7506,7 +7524,7 @@ declare function init(config: AuthHeroConfig): {
7506
7524
  hint?: string | undefined;
7507
7525
  messages?: {
7508
7526
  text: string;
7509
- type: "success" | "error" | "info" | "warning";
7527
+ type: "error" | "success" | "info" | "warning";
7510
7528
  id?: number | undefined;
7511
7529
  }[] | undefined;
7512
7530
  required?: boolean | undefined;
@@ -7526,7 +7544,7 @@ declare function init(config: AuthHeroConfig): {
7526
7544
  hint?: string | undefined;
7527
7545
  messages?: {
7528
7546
  text: string;
7529
- type: "success" | "error" | "info" | "warning";
7547
+ type: "error" | "success" | "info" | "warning";
7530
7548
  id?: number | undefined;
7531
7549
  }[] | undefined;
7532
7550
  required?: boolean | undefined;
@@ -7545,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
7545
7563
  hint?: string | undefined;
7546
7564
  messages?: {
7547
7565
  text: string;
7548
- type: "success" | "error" | "info" | "warning";
7566
+ type: "error" | "success" | "info" | "warning";
7549
7567
  id?: number | undefined;
7550
7568
  }[] | undefined;
7551
7569
  required?: boolean | undefined;
@@ -7567,7 +7585,7 @@ declare function init(config: AuthHeroConfig): {
7567
7585
  hint?: string | undefined;
7568
7586
  messages?: {
7569
7587
  text: string;
7570
- type: "success" | "error" | "info" | "warning";
7588
+ type: "error" | "success" | "info" | "warning";
7571
7589
  id?: number | undefined;
7572
7590
  }[] | undefined;
7573
7591
  required?: boolean | undefined;
@@ -7589,7 +7607,7 @@ declare function init(config: AuthHeroConfig): {
7589
7607
  hint?: string | undefined;
7590
7608
  messages?: {
7591
7609
  text: string;
7592
- type: "success" | "error" | "info" | "warning";
7610
+ type: "error" | "success" | "info" | "warning";
7593
7611
  id?: number | undefined;
7594
7612
  }[] | undefined;
7595
7613
  required?: boolean | undefined;
@@ -7608,7 +7626,7 @@ declare function init(config: AuthHeroConfig): {
7608
7626
  hint?: string | undefined;
7609
7627
  messages?: {
7610
7628
  text: string;
7611
- type: "success" | "error" | "info" | "warning";
7629
+ type: "error" | "success" | "info" | "warning";
7612
7630
  id?: number | undefined;
7613
7631
  }[] | undefined;
7614
7632
  required?: boolean | undefined;
@@ -7633,7 +7651,7 @@ declare function init(config: AuthHeroConfig): {
7633
7651
  hint?: string | undefined;
7634
7652
  messages?: {
7635
7653
  text: string;
7636
- type: "success" | "error" | "info" | "warning";
7654
+ type: "error" | "success" | "info" | "warning";
7637
7655
  id?: number | undefined;
7638
7656
  }[] | undefined;
7639
7657
  required?: boolean | undefined;
@@ -7654,7 +7672,7 @@ declare function init(config: AuthHeroConfig): {
7654
7672
  hint?: string | undefined;
7655
7673
  messages?: {
7656
7674
  text: string;
7657
- type: "success" | "error" | "info" | "warning";
7675
+ type: "error" | "success" | "info" | "warning";
7658
7676
  id?: number | undefined;
7659
7677
  }[] | undefined;
7660
7678
  required?: boolean | undefined;
@@ -7675,7 +7693,7 @@ declare function init(config: AuthHeroConfig): {
7675
7693
  hint?: string | undefined;
7676
7694
  messages?: {
7677
7695
  text: string;
7678
- type: "success" | "error" | "info" | "warning";
7696
+ type: "error" | "success" | "info" | "warning";
7679
7697
  id?: number | undefined;
7680
7698
  }[] | undefined;
7681
7699
  required?: boolean | undefined;
@@ -7924,7 +7942,7 @@ declare function init(config: AuthHeroConfig): {
7924
7942
  hint?: string | undefined;
7925
7943
  messages?: {
7926
7944
  text: string;
7927
- type: "success" | "error" | "info" | "warning";
7945
+ type: "error" | "success" | "info" | "warning";
7928
7946
  id?: number | undefined;
7929
7947
  }[] | undefined;
7930
7948
  required?: boolean | undefined;
@@ -7942,7 +7960,7 @@ declare function init(config: AuthHeroConfig): {
7942
7960
  hint?: string | undefined;
7943
7961
  messages?: {
7944
7962
  text: string;
7945
- type: "success" | "error" | "info" | "warning";
7963
+ type: "error" | "success" | "info" | "warning";
7946
7964
  id?: number | undefined;
7947
7965
  }[] | undefined;
7948
7966
  required?: boolean | undefined;
@@ -7966,7 +7984,7 @@ declare function init(config: AuthHeroConfig): {
7966
7984
  hint?: string | undefined;
7967
7985
  messages?: {
7968
7986
  text: string;
7969
- type: "success" | "error" | "info" | "warning";
7987
+ type: "error" | "success" | "info" | "warning";
7970
7988
  id?: number | undefined;
7971
7989
  }[] | undefined;
7972
7990
  required?: boolean | undefined;
@@ -7990,7 +8008,7 @@ declare function init(config: AuthHeroConfig): {
7990
8008
  hint?: string | undefined;
7991
8009
  messages?: {
7992
8010
  text: string;
7993
- type: "success" | "error" | "info" | "warning";
8011
+ type: "error" | "success" | "info" | "warning";
7994
8012
  id?: number | undefined;
7995
8013
  }[] | undefined;
7996
8014
  required?: boolean | undefined;
@@ -8014,7 +8032,7 @@ declare function init(config: AuthHeroConfig): {
8014
8032
  hint?: string | undefined;
8015
8033
  messages?: {
8016
8034
  text: string;
8017
- type: "success" | "error" | "info" | "warning";
8035
+ type: "error" | "success" | "info" | "warning";
8018
8036
  id?: number | undefined;
8019
8037
  }[] | undefined;
8020
8038
  required?: boolean | undefined;
@@ -8043,7 +8061,7 @@ declare function init(config: AuthHeroConfig): {
8043
8061
  hint?: string | undefined;
8044
8062
  messages?: {
8045
8063
  text: string;
8046
- type: "success" | "error" | "info" | "warning";
8064
+ type: "error" | "success" | "info" | "warning";
8047
8065
  id?: number | undefined;
8048
8066
  }[] | undefined;
8049
8067
  required?: boolean | undefined;
@@ -8058,7 +8076,7 @@ declare function init(config: AuthHeroConfig): {
8058
8076
  hint?: string | undefined;
8059
8077
  messages?: {
8060
8078
  text: string;
8061
- type: "success" | "error" | "info" | "warning";
8079
+ type: "error" | "success" | "info" | "warning";
8062
8080
  id?: number | undefined;
8063
8081
  }[] | undefined;
8064
8082
  required?: boolean | undefined;
@@ -8079,7 +8097,7 @@ declare function init(config: AuthHeroConfig): {
8079
8097
  hint?: string | undefined;
8080
8098
  messages?: {
8081
8099
  text: string;
8082
- type: "success" | "error" | "info" | "warning";
8100
+ type: "error" | "success" | "info" | "warning";
8083
8101
  id?: number | undefined;
8084
8102
  }[] | undefined;
8085
8103
  required?: boolean | undefined;
@@ -8104,7 +8122,7 @@ declare function init(config: AuthHeroConfig): {
8104
8122
  hint?: string | undefined;
8105
8123
  messages?: {
8106
8124
  text: string;
8107
- type: "success" | "error" | "info" | "warning";
8125
+ type: "error" | "success" | "info" | "warning";
8108
8126
  id?: number | undefined;
8109
8127
  }[] | undefined;
8110
8128
  required?: boolean | undefined;
@@ -8123,7 +8141,7 @@ declare function init(config: AuthHeroConfig): {
8123
8141
  hint?: string | undefined;
8124
8142
  messages?: {
8125
8143
  text: string;
8126
- type: "success" | "error" | "info" | "warning";
8144
+ type: "error" | "success" | "info" | "warning";
8127
8145
  id?: number | undefined;
8128
8146
  }[] | undefined;
8129
8147
  required?: boolean | undefined;
@@ -8143,7 +8161,7 @@ declare function init(config: AuthHeroConfig): {
8143
8161
  hint?: string | undefined;
8144
8162
  messages?: {
8145
8163
  text: string;
8146
- type: "success" | "error" | "info" | "warning";
8164
+ type: "error" | "success" | "info" | "warning";
8147
8165
  id?: number | undefined;
8148
8166
  }[] | undefined;
8149
8167
  required?: boolean | undefined;
@@ -8162,7 +8180,7 @@ declare function init(config: AuthHeroConfig): {
8162
8180
  hint?: string | undefined;
8163
8181
  messages?: {
8164
8182
  text: string;
8165
- type: "success" | "error" | "info" | "warning";
8183
+ type: "error" | "success" | "info" | "warning";
8166
8184
  id?: number | undefined;
8167
8185
  }[] | undefined;
8168
8186
  required?: boolean | undefined;
@@ -8184,7 +8202,7 @@ declare function init(config: AuthHeroConfig): {
8184
8202
  hint?: string | undefined;
8185
8203
  messages?: {
8186
8204
  text: string;
8187
- type: "success" | "error" | "info" | "warning";
8205
+ type: "error" | "success" | "info" | "warning";
8188
8206
  id?: number | undefined;
8189
8207
  }[] | undefined;
8190
8208
  required?: boolean | undefined;
@@ -8206,7 +8224,7 @@ declare function init(config: AuthHeroConfig): {
8206
8224
  hint?: string | undefined;
8207
8225
  messages?: {
8208
8226
  text: string;
8209
- type: "success" | "error" | "info" | "warning";
8227
+ type: "error" | "success" | "info" | "warning";
8210
8228
  id?: number | undefined;
8211
8229
  }[] | undefined;
8212
8230
  required?: boolean | undefined;
@@ -8225,7 +8243,7 @@ declare function init(config: AuthHeroConfig): {
8225
8243
  hint?: string | undefined;
8226
8244
  messages?: {
8227
8245
  text: string;
8228
- type: "success" | "error" | "info" | "warning";
8246
+ type: "error" | "success" | "info" | "warning";
8229
8247
  id?: number | undefined;
8230
8248
  }[] | undefined;
8231
8249
  required?: boolean | undefined;
@@ -8250,7 +8268,7 @@ declare function init(config: AuthHeroConfig): {
8250
8268
  hint?: string | undefined;
8251
8269
  messages?: {
8252
8270
  text: string;
8253
- type: "success" | "error" | "info" | "warning";
8271
+ type: "error" | "success" | "info" | "warning";
8254
8272
  id?: number | undefined;
8255
8273
  }[] | undefined;
8256
8274
  required?: boolean | undefined;
@@ -8271,7 +8289,7 @@ declare function init(config: AuthHeroConfig): {
8271
8289
  hint?: string | undefined;
8272
8290
  messages?: {
8273
8291
  text: string;
8274
- type: "success" | "error" | "info" | "warning";
8292
+ type: "error" | "success" | "info" | "warning";
8275
8293
  id?: number | undefined;
8276
8294
  }[] | undefined;
8277
8295
  required?: boolean | undefined;
@@ -8292,7 +8310,7 @@ declare function init(config: AuthHeroConfig): {
8292
8310
  hint?: string | undefined;
8293
8311
  messages?: {
8294
8312
  text: string;
8295
- type: "success" | "error" | "info" | "warning";
8313
+ type: "error" | "success" | "info" | "warning";
8296
8314
  id?: number | undefined;
8297
8315
  }[] | undefined;
8298
8316
  required?: boolean | undefined;
@@ -8546,7 +8564,7 @@ declare function init(config: AuthHeroConfig): {
8546
8564
  hint?: string | undefined;
8547
8565
  messages?: {
8548
8566
  text: string;
8549
- type: "success" | "error" | "info" | "warning";
8567
+ type: "error" | "success" | "info" | "warning";
8550
8568
  id?: number | undefined;
8551
8569
  }[] | undefined;
8552
8570
  required?: boolean | undefined;
@@ -8564,7 +8582,7 @@ declare function init(config: AuthHeroConfig): {
8564
8582
  hint?: string | undefined;
8565
8583
  messages?: {
8566
8584
  text: string;
8567
- type: "success" | "error" | "info" | "warning";
8585
+ type: "error" | "success" | "info" | "warning";
8568
8586
  id?: number | undefined;
8569
8587
  }[] | undefined;
8570
8588
  required?: boolean | undefined;
@@ -8588,7 +8606,7 @@ declare function init(config: AuthHeroConfig): {
8588
8606
  hint?: string | undefined;
8589
8607
  messages?: {
8590
8608
  text: string;
8591
- type: "success" | "error" | "info" | "warning";
8609
+ type: "error" | "success" | "info" | "warning";
8592
8610
  id?: number | undefined;
8593
8611
  }[] | undefined;
8594
8612
  required?: boolean | undefined;
@@ -8612,7 +8630,7 @@ declare function init(config: AuthHeroConfig): {
8612
8630
  hint?: string | undefined;
8613
8631
  messages?: {
8614
8632
  text: string;
8615
- type: "success" | "error" | "info" | "warning";
8633
+ type: "error" | "success" | "info" | "warning";
8616
8634
  id?: number | undefined;
8617
8635
  }[] | undefined;
8618
8636
  required?: boolean | undefined;
@@ -8636,7 +8654,7 @@ declare function init(config: AuthHeroConfig): {
8636
8654
  hint?: string | undefined;
8637
8655
  messages?: {
8638
8656
  text: string;
8639
- type: "success" | "error" | "info" | "warning";
8657
+ type: "error" | "success" | "info" | "warning";
8640
8658
  id?: number | undefined;
8641
8659
  }[] | undefined;
8642
8660
  required?: boolean | undefined;
@@ -8661,7 +8679,7 @@ declare function init(config: AuthHeroConfig): {
8661
8679
  hint?: string | undefined;
8662
8680
  messages?: {
8663
8681
  text: string;
8664
- type: "success" | "error" | "info" | "warning";
8682
+ type: "error" | "success" | "info" | "warning";
8665
8683
  id?: number | undefined;
8666
8684
  }[] | undefined;
8667
8685
  required?: boolean | undefined;
@@ -8676,7 +8694,7 @@ declare function init(config: AuthHeroConfig): {
8676
8694
  hint?: string | undefined;
8677
8695
  messages?: {
8678
8696
  text: string;
8679
- type: "success" | "error" | "info" | "warning";
8697
+ type: "error" | "success" | "info" | "warning";
8680
8698
  id?: number | undefined;
8681
8699
  }[] | undefined;
8682
8700
  required?: boolean | undefined;
@@ -8697,7 +8715,7 @@ declare function init(config: AuthHeroConfig): {
8697
8715
  hint?: string | undefined;
8698
8716
  messages?: {
8699
8717
  text: string;
8700
- type: "success" | "error" | "info" | "warning";
8718
+ type: "error" | "success" | "info" | "warning";
8701
8719
  id?: number | undefined;
8702
8720
  }[] | undefined;
8703
8721
  required?: boolean | undefined;
@@ -8722,7 +8740,7 @@ declare function init(config: AuthHeroConfig): {
8722
8740
  hint?: string | undefined;
8723
8741
  messages?: {
8724
8742
  text: string;
8725
- type: "success" | "error" | "info" | "warning";
8743
+ type: "error" | "success" | "info" | "warning";
8726
8744
  id?: number | undefined;
8727
8745
  }[] | undefined;
8728
8746
  required?: boolean | undefined;
@@ -8741,7 +8759,7 @@ declare function init(config: AuthHeroConfig): {
8741
8759
  hint?: string | undefined;
8742
8760
  messages?: {
8743
8761
  text: string;
8744
- type: "success" | "error" | "info" | "warning";
8762
+ type: "error" | "success" | "info" | "warning";
8745
8763
  id?: number | undefined;
8746
8764
  }[] | undefined;
8747
8765
  required?: boolean | undefined;
@@ -8761,7 +8779,7 @@ declare function init(config: AuthHeroConfig): {
8761
8779
  hint?: string | undefined;
8762
8780
  messages?: {
8763
8781
  text: string;
8764
- type: "success" | "error" | "info" | "warning";
8782
+ type: "error" | "success" | "info" | "warning";
8765
8783
  id?: number | undefined;
8766
8784
  }[] | undefined;
8767
8785
  required?: boolean | undefined;
@@ -8780,7 +8798,7 @@ declare function init(config: AuthHeroConfig): {
8780
8798
  hint?: string | undefined;
8781
8799
  messages?: {
8782
8800
  text: string;
8783
- type: "success" | "error" | "info" | "warning";
8801
+ type: "error" | "success" | "info" | "warning";
8784
8802
  id?: number | undefined;
8785
8803
  }[] | undefined;
8786
8804
  required?: boolean | undefined;
@@ -8802,7 +8820,7 @@ declare function init(config: AuthHeroConfig): {
8802
8820
  hint?: string | undefined;
8803
8821
  messages?: {
8804
8822
  text: string;
8805
- type: "success" | "error" | "info" | "warning";
8823
+ type: "error" | "success" | "info" | "warning";
8806
8824
  id?: number | undefined;
8807
8825
  }[] | undefined;
8808
8826
  required?: boolean | undefined;
@@ -8824,7 +8842,7 @@ declare function init(config: AuthHeroConfig): {
8824
8842
  hint?: string | undefined;
8825
8843
  messages?: {
8826
8844
  text: string;
8827
- type: "success" | "error" | "info" | "warning";
8845
+ type: "error" | "success" | "info" | "warning";
8828
8846
  id?: number | undefined;
8829
8847
  }[] | undefined;
8830
8848
  required?: boolean | undefined;
@@ -8843,7 +8861,7 @@ declare function init(config: AuthHeroConfig): {
8843
8861
  hint?: string | undefined;
8844
8862
  messages?: {
8845
8863
  text: string;
8846
- type: "success" | "error" | "info" | "warning";
8864
+ type: "error" | "success" | "info" | "warning";
8847
8865
  id?: number | undefined;
8848
8866
  }[] | undefined;
8849
8867
  required?: boolean | undefined;
@@ -8868,7 +8886,7 @@ declare function init(config: AuthHeroConfig): {
8868
8886
  hint?: string | undefined;
8869
8887
  messages?: {
8870
8888
  text: string;
8871
- type: "success" | "error" | "info" | "warning";
8889
+ type: "error" | "success" | "info" | "warning";
8872
8890
  id?: number | undefined;
8873
8891
  }[] | undefined;
8874
8892
  required?: boolean | undefined;
@@ -8889,7 +8907,7 @@ declare function init(config: AuthHeroConfig): {
8889
8907
  hint?: string | undefined;
8890
8908
  messages?: {
8891
8909
  text: string;
8892
- type: "success" | "error" | "info" | "warning";
8910
+ type: "error" | "success" | "info" | "warning";
8893
8911
  id?: number | undefined;
8894
8912
  }[] | undefined;
8895
8913
  required?: boolean | undefined;
@@ -8910,7 +8928,7 @@ declare function init(config: AuthHeroConfig): {
8910
8928
  hint?: string | undefined;
8911
8929
  messages?: {
8912
8930
  text: string;
8913
- type: "success" | "error" | "info" | "warning";
8931
+ type: "error" | "success" | "info" | "warning";
8914
8932
  id?: number | undefined;
8915
8933
  }[] | undefined;
8916
8934
  required?: boolean | undefined;
@@ -9141,7 +9159,7 @@ declare function init(config: AuthHeroConfig): {
9141
9159
  hint?: string | undefined;
9142
9160
  messages?: {
9143
9161
  text: string;
9144
- type: "success" | "error" | "info" | "warning";
9162
+ type: "error" | "success" | "info" | "warning";
9145
9163
  id?: number | undefined;
9146
9164
  }[] | undefined;
9147
9165
  required?: boolean | undefined;
@@ -9159,7 +9177,7 @@ declare function init(config: AuthHeroConfig): {
9159
9177
  hint?: string | undefined;
9160
9178
  messages?: {
9161
9179
  text: string;
9162
- type: "success" | "error" | "info" | "warning";
9180
+ type: "error" | "success" | "info" | "warning";
9163
9181
  id?: number | undefined;
9164
9182
  }[] | undefined;
9165
9183
  required?: boolean | undefined;
@@ -9183,7 +9201,7 @@ declare function init(config: AuthHeroConfig): {
9183
9201
  hint?: string | undefined;
9184
9202
  messages?: {
9185
9203
  text: string;
9186
- type: "success" | "error" | "info" | "warning";
9204
+ type: "error" | "success" | "info" | "warning";
9187
9205
  id?: number | undefined;
9188
9206
  }[] | undefined;
9189
9207
  required?: boolean | undefined;
@@ -9207,7 +9225,7 @@ declare function init(config: AuthHeroConfig): {
9207
9225
  hint?: string | undefined;
9208
9226
  messages?: {
9209
9227
  text: string;
9210
- type: "success" | "error" | "info" | "warning";
9228
+ type: "error" | "success" | "info" | "warning";
9211
9229
  id?: number | undefined;
9212
9230
  }[] | undefined;
9213
9231
  required?: boolean | undefined;
@@ -9231,7 +9249,7 @@ declare function init(config: AuthHeroConfig): {
9231
9249
  hint?: string | undefined;
9232
9250
  messages?: {
9233
9251
  text: string;
9234
- type: "success" | "error" | "info" | "warning";
9252
+ type: "error" | "success" | "info" | "warning";
9235
9253
  id?: number | undefined;
9236
9254
  }[] | undefined;
9237
9255
  required?: boolean | undefined;
@@ -9260,7 +9278,7 @@ declare function init(config: AuthHeroConfig): {
9260
9278
  hint?: string | undefined;
9261
9279
  messages?: {
9262
9280
  text: string;
9263
- type: "success" | "error" | "info" | "warning";
9281
+ type: "error" | "success" | "info" | "warning";
9264
9282
  id?: number | undefined;
9265
9283
  }[] | undefined;
9266
9284
  required?: boolean | undefined;
@@ -9275,7 +9293,7 @@ declare function init(config: AuthHeroConfig): {
9275
9293
  hint?: string | undefined;
9276
9294
  messages?: {
9277
9295
  text: string;
9278
- type: "success" | "error" | "info" | "warning";
9296
+ type: "error" | "success" | "info" | "warning";
9279
9297
  id?: number | undefined;
9280
9298
  }[] | undefined;
9281
9299
  required?: boolean | undefined;
@@ -9296,7 +9314,7 @@ declare function init(config: AuthHeroConfig): {
9296
9314
  hint?: string | undefined;
9297
9315
  messages?: {
9298
9316
  text: string;
9299
- type: "success" | "error" | "info" | "warning";
9317
+ type: "error" | "success" | "info" | "warning";
9300
9318
  id?: number | undefined;
9301
9319
  }[] | undefined;
9302
9320
  required?: boolean | undefined;
@@ -9321,7 +9339,7 @@ declare function init(config: AuthHeroConfig): {
9321
9339
  hint?: string | undefined;
9322
9340
  messages?: {
9323
9341
  text: string;
9324
- type: "success" | "error" | "info" | "warning";
9342
+ type: "error" | "success" | "info" | "warning";
9325
9343
  id?: number | undefined;
9326
9344
  }[] | undefined;
9327
9345
  required?: boolean | undefined;
@@ -9340,7 +9358,7 @@ declare function init(config: AuthHeroConfig): {
9340
9358
  hint?: string | undefined;
9341
9359
  messages?: {
9342
9360
  text: string;
9343
- type: "success" | "error" | "info" | "warning";
9361
+ type: "error" | "success" | "info" | "warning";
9344
9362
  id?: number | undefined;
9345
9363
  }[] | undefined;
9346
9364
  required?: boolean | undefined;
@@ -9360,7 +9378,7 @@ declare function init(config: AuthHeroConfig): {
9360
9378
  hint?: string | undefined;
9361
9379
  messages?: {
9362
9380
  text: string;
9363
- type: "success" | "error" | "info" | "warning";
9381
+ type: "error" | "success" | "info" | "warning";
9364
9382
  id?: number | undefined;
9365
9383
  }[] | undefined;
9366
9384
  required?: boolean | undefined;
@@ -9379,7 +9397,7 @@ declare function init(config: AuthHeroConfig): {
9379
9397
  hint?: string | undefined;
9380
9398
  messages?: {
9381
9399
  text: string;
9382
- type: "success" | "error" | "info" | "warning";
9400
+ type: "error" | "success" | "info" | "warning";
9383
9401
  id?: number | undefined;
9384
9402
  }[] | undefined;
9385
9403
  required?: boolean | undefined;
@@ -9401,7 +9419,7 @@ declare function init(config: AuthHeroConfig): {
9401
9419
  hint?: string | undefined;
9402
9420
  messages?: {
9403
9421
  text: string;
9404
- type: "success" | "error" | "info" | "warning";
9422
+ type: "error" | "success" | "info" | "warning";
9405
9423
  id?: number | undefined;
9406
9424
  }[] | undefined;
9407
9425
  required?: boolean | undefined;
@@ -9423,7 +9441,7 @@ declare function init(config: AuthHeroConfig): {
9423
9441
  hint?: string | undefined;
9424
9442
  messages?: {
9425
9443
  text: string;
9426
- type: "success" | "error" | "info" | "warning";
9444
+ type: "error" | "success" | "info" | "warning";
9427
9445
  id?: number | undefined;
9428
9446
  }[] | undefined;
9429
9447
  required?: boolean | undefined;
@@ -9442,7 +9460,7 @@ declare function init(config: AuthHeroConfig): {
9442
9460
  hint?: string | undefined;
9443
9461
  messages?: {
9444
9462
  text: string;
9445
- type: "success" | "error" | "info" | "warning";
9463
+ type: "error" | "success" | "info" | "warning";
9446
9464
  id?: number | undefined;
9447
9465
  }[] | undefined;
9448
9466
  required?: boolean | undefined;
@@ -9467,7 +9485,7 @@ declare function init(config: AuthHeroConfig): {
9467
9485
  hint?: string | undefined;
9468
9486
  messages?: {
9469
9487
  text: string;
9470
- type: "success" | "error" | "info" | "warning";
9488
+ type: "error" | "success" | "info" | "warning";
9471
9489
  id?: number | undefined;
9472
9490
  }[] | undefined;
9473
9491
  required?: boolean | undefined;
@@ -9488,7 +9506,7 @@ declare function init(config: AuthHeroConfig): {
9488
9506
  hint?: string | undefined;
9489
9507
  messages?: {
9490
9508
  text: string;
9491
- type: "success" | "error" | "info" | "warning";
9509
+ type: "error" | "success" | "info" | "warning";
9492
9510
  id?: number | undefined;
9493
9511
  }[] | undefined;
9494
9512
  required?: boolean | undefined;
@@ -9509,7 +9527,7 @@ declare function init(config: AuthHeroConfig): {
9509
9527
  hint?: string | undefined;
9510
9528
  messages?: {
9511
9529
  text: string;
9512
- type: "success" | "error" | "info" | "warning";
9530
+ type: "error" | "success" | "info" | "warning";
9513
9531
  id?: number | undefined;
9514
9532
  }[] | undefined;
9515
9533
  required?: boolean | undefined;
@@ -9742,7 +9760,7 @@ declare function init(config: AuthHeroConfig): {
9742
9760
  hint?: string | undefined;
9743
9761
  messages?: {
9744
9762
  text: string;
9745
- type: "success" | "error" | "info" | "warning";
9763
+ type: "error" | "success" | "info" | "warning";
9746
9764
  id?: number | undefined;
9747
9765
  }[] | undefined;
9748
9766
  required?: boolean | undefined;
@@ -9760,7 +9778,7 @@ declare function init(config: AuthHeroConfig): {
9760
9778
  hint?: string | undefined;
9761
9779
  messages?: {
9762
9780
  text: string;
9763
- type: "success" | "error" | "info" | "warning";
9781
+ type: "error" | "success" | "info" | "warning";
9764
9782
  id?: number | undefined;
9765
9783
  }[] | undefined;
9766
9784
  required?: boolean | undefined;
@@ -9784,7 +9802,7 @@ declare function init(config: AuthHeroConfig): {
9784
9802
  hint?: string | undefined;
9785
9803
  messages?: {
9786
9804
  text: string;
9787
- type: "success" | "error" | "info" | "warning";
9805
+ type: "error" | "success" | "info" | "warning";
9788
9806
  id?: number | undefined;
9789
9807
  }[] | undefined;
9790
9808
  required?: boolean | undefined;
@@ -9808,7 +9826,7 @@ declare function init(config: AuthHeroConfig): {
9808
9826
  hint?: string | undefined;
9809
9827
  messages?: {
9810
9828
  text: string;
9811
- type: "success" | "error" | "info" | "warning";
9829
+ type: "error" | "success" | "info" | "warning";
9812
9830
  id?: number | undefined;
9813
9831
  }[] | undefined;
9814
9832
  required?: boolean | undefined;
@@ -9832,7 +9850,7 @@ declare function init(config: AuthHeroConfig): {
9832
9850
  hint?: string | undefined;
9833
9851
  messages?: {
9834
9852
  text: string;
9835
- type: "success" | "error" | "info" | "warning";
9853
+ type: "error" | "success" | "info" | "warning";
9836
9854
  id?: number | undefined;
9837
9855
  }[] | undefined;
9838
9856
  required?: boolean | undefined;
@@ -9857,7 +9875,7 @@ declare function init(config: AuthHeroConfig): {
9857
9875
  hint?: string | undefined;
9858
9876
  messages?: {
9859
9877
  text: string;
9860
- type: "success" | "error" | "info" | "warning";
9878
+ type: "error" | "success" | "info" | "warning";
9861
9879
  id?: number | undefined;
9862
9880
  }[] | undefined;
9863
9881
  required?: boolean | undefined;
@@ -9872,7 +9890,7 @@ declare function init(config: AuthHeroConfig): {
9872
9890
  hint?: string | undefined;
9873
9891
  messages?: {
9874
9892
  text: string;
9875
- type: "success" | "error" | "info" | "warning";
9893
+ type: "error" | "success" | "info" | "warning";
9876
9894
  id?: number | undefined;
9877
9895
  }[] | undefined;
9878
9896
  required?: boolean | undefined;
@@ -9893,7 +9911,7 @@ declare function init(config: AuthHeroConfig): {
9893
9911
  hint?: string | undefined;
9894
9912
  messages?: {
9895
9913
  text: string;
9896
- type: "success" | "error" | "info" | "warning";
9914
+ type: "error" | "success" | "info" | "warning";
9897
9915
  id?: number | undefined;
9898
9916
  }[] | undefined;
9899
9917
  required?: boolean | undefined;
@@ -9918,7 +9936,7 @@ declare function init(config: AuthHeroConfig): {
9918
9936
  hint?: string | undefined;
9919
9937
  messages?: {
9920
9938
  text: string;
9921
- type: "success" | "error" | "info" | "warning";
9939
+ type: "error" | "success" | "info" | "warning";
9922
9940
  id?: number | undefined;
9923
9941
  }[] | undefined;
9924
9942
  required?: boolean | undefined;
@@ -9937,7 +9955,7 @@ declare function init(config: AuthHeroConfig): {
9937
9955
  hint?: string | undefined;
9938
9956
  messages?: {
9939
9957
  text: string;
9940
- type: "success" | "error" | "info" | "warning";
9958
+ type: "error" | "success" | "info" | "warning";
9941
9959
  id?: number | undefined;
9942
9960
  }[] | undefined;
9943
9961
  required?: boolean | undefined;
@@ -9957,7 +9975,7 @@ declare function init(config: AuthHeroConfig): {
9957
9975
  hint?: string | undefined;
9958
9976
  messages?: {
9959
9977
  text: string;
9960
- type: "success" | "error" | "info" | "warning";
9978
+ type: "error" | "success" | "info" | "warning";
9961
9979
  id?: number | undefined;
9962
9980
  }[] | undefined;
9963
9981
  required?: boolean | undefined;
@@ -9976,7 +9994,7 @@ declare function init(config: AuthHeroConfig): {
9976
9994
  hint?: string | undefined;
9977
9995
  messages?: {
9978
9996
  text: string;
9979
- type: "success" | "error" | "info" | "warning";
9997
+ type: "error" | "success" | "info" | "warning";
9980
9998
  id?: number | undefined;
9981
9999
  }[] | undefined;
9982
10000
  required?: boolean | undefined;
@@ -9998,7 +10016,7 @@ declare function init(config: AuthHeroConfig): {
9998
10016
  hint?: string | undefined;
9999
10017
  messages?: {
10000
10018
  text: string;
10001
- type: "success" | "error" | "info" | "warning";
10019
+ type: "error" | "success" | "info" | "warning";
10002
10020
  id?: number | undefined;
10003
10021
  }[] | undefined;
10004
10022
  required?: boolean | undefined;
@@ -10020,7 +10038,7 @@ declare function init(config: AuthHeroConfig): {
10020
10038
  hint?: string | undefined;
10021
10039
  messages?: {
10022
10040
  text: string;
10023
- type: "success" | "error" | "info" | "warning";
10041
+ type: "error" | "success" | "info" | "warning";
10024
10042
  id?: number | undefined;
10025
10043
  }[] | undefined;
10026
10044
  required?: boolean | undefined;
@@ -10039,7 +10057,7 @@ declare function init(config: AuthHeroConfig): {
10039
10057
  hint?: string | undefined;
10040
10058
  messages?: {
10041
10059
  text: string;
10042
- type: "success" | "error" | "info" | "warning";
10060
+ type: "error" | "success" | "info" | "warning";
10043
10061
  id?: number | undefined;
10044
10062
  }[] | undefined;
10045
10063
  required?: boolean | undefined;
@@ -10064,7 +10082,7 @@ declare function init(config: AuthHeroConfig): {
10064
10082
  hint?: string | undefined;
10065
10083
  messages?: {
10066
10084
  text: string;
10067
- type: "success" | "error" | "info" | "warning";
10085
+ type: "error" | "success" | "info" | "warning";
10068
10086
  id?: number | undefined;
10069
10087
  }[] | undefined;
10070
10088
  required?: boolean | undefined;
@@ -10085,7 +10103,7 @@ declare function init(config: AuthHeroConfig): {
10085
10103
  hint?: string | undefined;
10086
10104
  messages?: {
10087
10105
  text: string;
10088
- type: "success" | "error" | "info" | "warning";
10106
+ type: "error" | "success" | "info" | "warning";
10089
10107
  id?: number | undefined;
10090
10108
  }[] | undefined;
10091
10109
  required?: boolean | undefined;
@@ -10106,7 +10124,7 @@ declare function init(config: AuthHeroConfig): {
10106
10124
  hint?: string | undefined;
10107
10125
  messages?: {
10108
10126
  text: string;
10109
- type: "success" | "error" | "info" | "warning";
10127
+ type: "error" | "success" | "info" | "warning";
10110
10128
  id?: number | undefined;
10111
10129
  }[] | undefined;
10112
10130
  required?: boolean | undefined;
@@ -10337,7 +10355,7 @@ declare function init(config: AuthHeroConfig): {
10337
10355
  hint?: string | undefined;
10338
10356
  messages?: {
10339
10357
  text: string;
10340
- type: "success" | "error" | "info" | "warning";
10358
+ type: "error" | "success" | "info" | "warning";
10341
10359
  id?: number | undefined;
10342
10360
  }[] | undefined;
10343
10361
  required?: boolean | undefined;
@@ -10355,7 +10373,7 @@ declare function init(config: AuthHeroConfig): {
10355
10373
  hint?: string | undefined;
10356
10374
  messages?: {
10357
10375
  text: string;
10358
- type: "success" | "error" | "info" | "warning";
10376
+ type: "error" | "success" | "info" | "warning";
10359
10377
  id?: number | undefined;
10360
10378
  }[] | undefined;
10361
10379
  required?: boolean | undefined;
@@ -10379,7 +10397,7 @@ declare function init(config: AuthHeroConfig): {
10379
10397
  hint?: string | undefined;
10380
10398
  messages?: {
10381
10399
  text: string;
10382
- type: "success" | "error" | "info" | "warning";
10400
+ type: "error" | "success" | "info" | "warning";
10383
10401
  id?: number | undefined;
10384
10402
  }[] | undefined;
10385
10403
  required?: boolean | undefined;
@@ -10403,7 +10421,7 @@ declare function init(config: AuthHeroConfig): {
10403
10421
  hint?: string | undefined;
10404
10422
  messages?: {
10405
10423
  text: string;
10406
- type: "success" | "error" | "info" | "warning";
10424
+ type: "error" | "success" | "info" | "warning";
10407
10425
  id?: number | undefined;
10408
10426
  }[] | undefined;
10409
10427
  required?: boolean | undefined;
@@ -10427,7 +10445,7 @@ declare function init(config: AuthHeroConfig): {
10427
10445
  hint?: string | undefined;
10428
10446
  messages?: {
10429
10447
  text: string;
10430
- type: "success" | "error" | "info" | "warning";
10448
+ type: "error" | "success" | "info" | "warning";
10431
10449
  id?: number | undefined;
10432
10450
  }[] | undefined;
10433
10451
  required?: boolean | undefined;
@@ -10456,7 +10474,7 @@ declare function init(config: AuthHeroConfig): {
10456
10474
  hint?: string | undefined;
10457
10475
  messages?: {
10458
10476
  text: string;
10459
- type: "success" | "error" | "info" | "warning";
10477
+ type: "error" | "success" | "info" | "warning";
10460
10478
  id?: number | undefined;
10461
10479
  }[] | undefined;
10462
10480
  required?: boolean | undefined;
@@ -10471,7 +10489,7 @@ declare function init(config: AuthHeroConfig): {
10471
10489
  hint?: string | undefined;
10472
10490
  messages?: {
10473
10491
  text: string;
10474
- type: "success" | "error" | "info" | "warning";
10492
+ type: "error" | "success" | "info" | "warning";
10475
10493
  id?: number | undefined;
10476
10494
  }[] | undefined;
10477
10495
  required?: boolean | undefined;
@@ -10492,7 +10510,7 @@ declare function init(config: AuthHeroConfig): {
10492
10510
  hint?: string | undefined;
10493
10511
  messages?: {
10494
10512
  text: string;
10495
- type: "success" | "error" | "info" | "warning";
10513
+ type: "error" | "success" | "info" | "warning";
10496
10514
  id?: number | undefined;
10497
10515
  }[] | undefined;
10498
10516
  required?: boolean | undefined;
@@ -10517,7 +10535,7 @@ declare function init(config: AuthHeroConfig): {
10517
10535
  hint?: string | undefined;
10518
10536
  messages?: {
10519
10537
  text: string;
10520
- type: "success" | "error" | "info" | "warning";
10538
+ type: "error" | "success" | "info" | "warning";
10521
10539
  id?: number | undefined;
10522
10540
  }[] | undefined;
10523
10541
  required?: boolean | undefined;
@@ -10536,7 +10554,7 @@ declare function init(config: AuthHeroConfig): {
10536
10554
  hint?: string | undefined;
10537
10555
  messages?: {
10538
10556
  text: string;
10539
- type: "success" | "error" | "info" | "warning";
10557
+ type: "error" | "success" | "info" | "warning";
10540
10558
  id?: number | undefined;
10541
10559
  }[] | undefined;
10542
10560
  required?: boolean | undefined;
@@ -10556,7 +10574,7 @@ declare function init(config: AuthHeroConfig): {
10556
10574
  hint?: string | undefined;
10557
10575
  messages?: {
10558
10576
  text: string;
10559
- type: "success" | "error" | "info" | "warning";
10577
+ type: "error" | "success" | "info" | "warning";
10560
10578
  id?: number | undefined;
10561
10579
  }[] | undefined;
10562
10580
  required?: boolean | undefined;
@@ -10575,7 +10593,7 @@ declare function init(config: AuthHeroConfig): {
10575
10593
  hint?: string | undefined;
10576
10594
  messages?: {
10577
10595
  text: string;
10578
- type: "success" | "error" | "info" | "warning";
10596
+ type: "error" | "success" | "info" | "warning";
10579
10597
  id?: number | undefined;
10580
10598
  }[] | undefined;
10581
10599
  required?: boolean | undefined;
@@ -10597,7 +10615,7 @@ declare function init(config: AuthHeroConfig): {
10597
10615
  hint?: string | undefined;
10598
10616
  messages?: {
10599
10617
  text: string;
10600
- type: "success" | "error" | "info" | "warning";
10618
+ type: "error" | "success" | "info" | "warning";
10601
10619
  id?: number | undefined;
10602
10620
  }[] | undefined;
10603
10621
  required?: boolean | undefined;
@@ -10619,7 +10637,7 @@ declare function init(config: AuthHeroConfig): {
10619
10637
  hint?: string | undefined;
10620
10638
  messages?: {
10621
10639
  text: string;
10622
- type: "success" | "error" | "info" | "warning";
10640
+ type: "error" | "success" | "info" | "warning";
10623
10641
  id?: number | undefined;
10624
10642
  }[] | undefined;
10625
10643
  required?: boolean | undefined;
@@ -10638,7 +10656,7 @@ declare function init(config: AuthHeroConfig): {
10638
10656
  hint?: string | undefined;
10639
10657
  messages?: {
10640
10658
  text: string;
10641
- type: "success" | "error" | "info" | "warning";
10659
+ type: "error" | "success" | "info" | "warning";
10642
10660
  id?: number | undefined;
10643
10661
  }[] | undefined;
10644
10662
  required?: boolean | undefined;
@@ -10663,7 +10681,7 @@ declare function init(config: AuthHeroConfig): {
10663
10681
  hint?: string | undefined;
10664
10682
  messages?: {
10665
10683
  text: string;
10666
- type: "success" | "error" | "info" | "warning";
10684
+ type: "error" | "success" | "info" | "warning";
10667
10685
  id?: number | undefined;
10668
10686
  }[] | undefined;
10669
10687
  required?: boolean | undefined;
@@ -10684,7 +10702,7 @@ declare function init(config: AuthHeroConfig): {
10684
10702
  hint?: string | undefined;
10685
10703
  messages?: {
10686
10704
  text: string;
10687
- type: "success" | "error" | "info" | "warning";
10705
+ type: "error" | "success" | "info" | "warning";
10688
10706
  id?: number | undefined;
10689
10707
  }[] | undefined;
10690
10708
  required?: boolean | undefined;
@@ -10705,7 +10723,7 @@ declare function init(config: AuthHeroConfig): {
10705
10723
  hint?: string | undefined;
10706
10724
  messages?: {
10707
10725
  text: string;
10708
- type: "success" | "error" | "info" | "warning";
10726
+ type: "error" | "success" | "info" | "warning";
10709
10727
  id?: number | undefined;
10710
10728
  }[] | undefined;
10711
10729
  required?: boolean | undefined;
@@ -10935,7 +10953,7 @@ declare function init(config: AuthHeroConfig): {
10935
10953
  };
10936
10954
  };
10937
10955
  output: {
10938
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10956
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10939
10957
  language: string;
10940
10958
  }[];
10941
10959
  outputFormat: "json";
@@ -10973,7 +10991,7 @@ declare function init(config: AuthHeroConfig): {
10973
10991
  $get: {
10974
10992
  input: {
10975
10993
  param: {
10976
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10994
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10977
10995
  language: string;
10978
10996
  };
10979
10997
  } & {
@@ -10995,7 +11013,7 @@ declare function init(config: AuthHeroConfig): {
10995
11013
  $put: {
10996
11014
  input: {
10997
11015
  param: {
10998
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11016
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
10999
11017
  language: string;
11000
11018
  };
11001
11019
  } & {
@@ -11019,7 +11037,7 @@ declare function init(config: AuthHeroConfig): {
11019
11037
  $delete: {
11020
11038
  input: {
11021
11039
  param: {
11022
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11040
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11023
11041
  language: string;
11024
11042
  };
11025
11043
  } & {
@@ -11158,7 +11176,7 @@ declare function init(config: AuthHeroConfig): {
11158
11176
  } | undefined;
11159
11177
  } | undefined;
11160
11178
  passkey_options?: {
11161
- challenge_ui?: "both" | "autofill" | "button" | undefined;
11179
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
11162
11180
  local_enrollment_enabled?: boolean | undefined;
11163
11181
  progressive_enrollment_enabled?: boolean | undefined;
11164
11182
  } | undefined;
@@ -11292,7 +11310,7 @@ declare function init(config: AuthHeroConfig): {
11292
11310
  } | undefined;
11293
11311
  } | undefined;
11294
11312
  passkey_options?: {
11295
- challenge_ui?: "both" | "autofill" | "button" | undefined;
11313
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
11296
11314
  local_enrollment_enabled?: boolean | undefined;
11297
11315
  progressive_enrollment_enabled?: boolean | undefined;
11298
11316
  } | undefined;
@@ -11442,7 +11460,7 @@ declare function init(config: AuthHeroConfig): {
11442
11460
  } | undefined;
11443
11461
  } | undefined;
11444
11462
  passkey_options?: {
11445
- challenge_ui?: "both" | "autofill" | "button" | undefined;
11463
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
11446
11464
  local_enrollment_enabled?: boolean | undefined;
11447
11465
  progressive_enrollment_enabled?: boolean | undefined;
11448
11466
  } | undefined;
@@ -11621,7 +11639,7 @@ declare function init(config: AuthHeroConfig): {
11621
11639
  } | undefined;
11622
11640
  } | undefined;
11623
11641
  passkey_options?: {
11624
- challenge_ui?: "both" | "autofill" | "button" | undefined;
11642
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
11625
11643
  local_enrollment_enabled?: boolean | undefined;
11626
11644
  progressive_enrollment_enabled?: boolean | undefined;
11627
11645
  } | undefined;
@@ -11779,7 +11797,7 @@ declare function init(config: AuthHeroConfig): {
11779
11797
  } | undefined;
11780
11798
  } | undefined;
11781
11799
  passkey_options?: {
11782
- challenge_ui?: "both" | "autofill" | "button" | undefined;
11800
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
11783
11801
  local_enrollment_enabled?: boolean | undefined;
11784
11802
  progressive_enrollment_enabled?: boolean | undefined;
11785
11803
  } | undefined;
@@ -11882,7 +11900,7 @@ declare function init(config: AuthHeroConfig): {
11882
11900
  };
11883
11901
  } | {
11884
11902
  mode: "inline";
11885
- status: "success" | "error";
11903
+ status: "error" | "success";
11886
11904
  connection_id: string;
11887
11905
  connection_name: string;
11888
11906
  strategy: string;
@@ -12832,7 +12850,7 @@ declare function init(config: AuthHeroConfig): {
12832
12850
  created_at: string;
12833
12851
  updated_at: string;
12834
12852
  name: string;
12835
- provider: "auth0" | "cognito" | "okta" | "oidc";
12853
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12836
12854
  connection: string;
12837
12855
  enabled: boolean;
12838
12856
  credentials: {
@@ -12864,7 +12882,7 @@ declare function init(config: AuthHeroConfig): {
12864
12882
  created_at: string;
12865
12883
  updated_at: string;
12866
12884
  name: string;
12867
- provider: "auth0" | "cognito" | "okta" | "oidc";
12885
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12868
12886
  connection: string;
12869
12887
  enabled: boolean;
12870
12888
  credentials: {
@@ -12890,7 +12908,7 @@ declare function init(config: AuthHeroConfig): {
12890
12908
  } & {
12891
12909
  json: {
12892
12910
  name: string;
12893
- provider: "auth0" | "cognito" | "okta" | "oidc";
12911
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12894
12912
  connection: string;
12895
12913
  credentials: {
12896
12914
  domain: string;
@@ -12907,7 +12925,7 @@ declare function init(config: AuthHeroConfig): {
12907
12925
  created_at: string;
12908
12926
  updated_at: string;
12909
12927
  name: string;
12910
- provider: "auth0" | "cognito" | "okta" | "oidc";
12928
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12911
12929
  connection: string;
12912
12930
  enabled: boolean;
12913
12931
  credentials: {
@@ -12938,7 +12956,7 @@ declare function init(config: AuthHeroConfig): {
12938
12956
  json: {
12939
12957
  id?: string | undefined;
12940
12958
  name?: string | undefined;
12941
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12959
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12942
12960
  connection?: string | undefined;
12943
12961
  enabled?: boolean | undefined;
12944
12962
  credentials?: {
@@ -12954,7 +12972,7 @@ declare function init(config: AuthHeroConfig): {
12954
12972
  created_at: string;
12955
12973
  updated_at: string;
12956
12974
  name: string;
12957
- provider: "auth0" | "cognito" | "okta" | "oidc";
12975
+ provider: "auth0" | "oidc" | "okta" | "cognito";
12958
12976
  connection: string;
12959
12977
  enabled: boolean;
12960
12978
  credentials: {
@@ -13172,7 +13190,7 @@ declare function init(config: AuthHeroConfig): {
13172
13190
  };
13173
13191
  };
13174
13192
  output: {
13175
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13193
+ type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13176
13194
  date: string;
13177
13195
  isMobile: boolean;
13178
13196
  log_id: string;
@@ -13211,7 +13229,7 @@ declare function init(config: AuthHeroConfig): {
13211
13229
  limit: number;
13212
13230
  length: number;
13213
13231
  logs: {
13214
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13232
+ type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13215
13233
  date: string;
13216
13234
  isMobile: boolean;
13217
13235
  log_id: string;
@@ -13250,7 +13268,7 @@ declare function init(config: AuthHeroConfig): {
13250
13268
  next?: string | undefined;
13251
13269
  } | {
13252
13270
  logs: {
13253
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13271
+ type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13254
13272
  date: string;
13255
13273
  isMobile: boolean;
13256
13274
  log_id: string;
@@ -13304,7 +13322,7 @@ declare function init(config: AuthHeroConfig): {
13304
13322
  };
13305
13323
  };
13306
13324
  output: {
13307
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13325
+ type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13308
13326
  date: string;
13309
13327
  isMobile: boolean;
13310
13328
  log_id: string;
@@ -13715,7 +13733,7 @@ declare function init(config: AuthHeroConfig): {
13715
13733
  addons?: {
13716
13734
  [x: string]: any;
13717
13735
  } | undefined;
13718
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13736
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13719
13737
  client_metadata?: {
13720
13738
  [x: string]: string;
13721
13739
  } | undefined;
@@ -13817,7 +13835,7 @@ declare function init(config: AuthHeroConfig): {
13817
13835
  addons?: {
13818
13836
  [x: string]: any;
13819
13837
  } | undefined;
13820
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13838
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13821
13839
  client_metadata?: {
13822
13840
  [x: string]: string;
13823
13841
  } | undefined;
@@ -13919,7 +13937,7 @@ declare function init(config: AuthHeroConfig): {
13919
13937
  addons?: {
13920
13938
  [x: string]: any;
13921
13939
  } | undefined;
13922
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13940
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13923
13941
  client_metadata?: {
13924
13942
  [x: string]: string;
13925
13943
  } | undefined;
@@ -14036,7 +14054,7 @@ declare function init(config: AuthHeroConfig): {
14036
14054
  addons?: {
14037
14055
  [x: string]: any;
14038
14056
  } | undefined;
14039
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14057
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14040
14058
  client_metadata?: {
14041
14059
  [x: string]: string;
14042
14060
  } | undefined;
@@ -14154,7 +14172,7 @@ declare function init(config: AuthHeroConfig): {
14154
14172
  custom_login_page_preview?: string | undefined;
14155
14173
  form_template?: string | undefined;
14156
14174
  addons?: Record<string, any> | undefined;
14157
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14175
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14158
14176
  client_metadata?: Record<string, string> | undefined;
14159
14177
  hide_sign_up_disabled_error?: boolean | undefined;
14160
14178
  mobile?: Record<string, any> | undefined;
@@ -14240,7 +14258,7 @@ declare function init(config: AuthHeroConfig): {
14240
14258
  addons?: {
14241
14259
  [x: string]: any;
14242
14260
  } | undefined;
14243
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14261
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14244
14262
  client_metadata?: {
14245
14263
  [x: string]: string;
14246
14264
  } | undefined;
@@ -14337,7 +14355,7 @@ declare function init(config: AuthHeroConfig): {
14337
14355
  custom_login_page_preview?: string | undefined;
14338
14356
  form_template?: string | undefined;
14339
14357
  addons?: Record<string, any> | undefined;
14340
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14358
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14341
14359
  client_metadata?: Record<string, string> | undefined;
14342
14360
  hide_sign_up_disabled_error?: boolean | undefined;
14343
14361
  mobile?: Record<string, any> | undefined;
@@ -14423,7 +14441,7 @@ declare function init(config: AuthHeroConfig): {
14423
14441
  addons?: {
14424
14442
  [x: string]: any;
14425
14443
  } | undefined;
14426
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14444
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14427
14445
  client_metadata?: {
14428
14446
  [x: string]: string;
14429
14447
  } | undefined;
@@ -14592,7 +14610,7 @@ declare function init(config: AuthHeroConfig): {
14592
14610
  } | undefined;
14593
14611
  } | undefined;
14594
14612
  passkey_options?: {
14595
- challenge_ui?: "both" | "autofill" | "button" | undefined;
14613
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
14596
14614
  local_enrollment_enabled?: boolean | undefined;
14597
14615
  progressive_enrollment_enabled?: boolean | undefined;
14598
14616
  } | undefined;
@@ -14746,7 +14764,7 @@ declare function init(config: AuthHeroConfig): {
14746
14764
  } | undefined;
14747
14765
  } | undefined;
14748
14766
  passkey_options?: {
14749
- challenge_ui?: "both" | "autofill" | "button" | undefined;
14767
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
14750
14768
  local_enrollment_enabled?: boolean | undefined;
14751
14769
  progressive_enrollment_enabled?: boolean | undefined;
14752
14770
  } | undefined;
@@ -15759,7 +15777,7 @@ declare function init(config: AuthHeroConfig): {
15759
15777
  };
15760
15778
  };
15761
15779
  output: {
15762
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15780
+ type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15763
15781
  date: string;
15764
15782
  isMobile: boolean;
15765
15783
  log_id: string;
@@ -15798,7 +15816,7 @@ declare function init(config: AuthHeroConfig): {
15798
15816
  limit: number;
15799
15817
  length: number;
15800
15818
  logs: {
15801
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15819
+ type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15802
15820
  date: string;
15803
15821
  isMobile: boolean;
15804
15822
  log_id: string;
@@ -16642,7 +16660,7 @@ declare function init(config: AuthHeroConfig): {
16642
16660
  type: "auth0_managed_certs" | "self_managed_certs";
16643
16661
  custom_domain_id: string;
16644
16662
  primary: boolean;
16645
- status: "disabled" | "pending" | "ready" | "pending_verification";
16663
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16646
16664
  verification_method?: "txt" | undefined;
16647
16665
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16648
16666
  domain_metadata?: {
@@ -16683,7 +16701,7 @@ declare function init(config: AuthHeroConfig): {
16683
16701
  type: "auth0_managed_certs" | "self_managed_certs";
16684
16702
  custom_domain_id: string;
16685
16703
  primary: boolean;
16686
- status: "disabled" | "pending" | "ready" | "pending_verification";
16704
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16687
16705
  verification_method?: "txt" | undefined;
16688
16706
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16689
16707
  domain_metadata?: {
@@ -16747,7 +16765,7 @@ declare function init(config: AuthHeroConfig): {
16747
16765
  type: "auth0_managed_certs" | "self_managed_certs";
16748
16766
  custom_domain_id: string;
16749
16767
  primary: boolean;
16750
- status: "disabled" | "pending" | "ready" | "pending_verification";
16768
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16751
16769
  verification_method?: "txt" | undefined;
16752
16770
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16753
16771
  domain_metadata?: {
@@ -16794,7 +16812,7 @@ declare function init(config: AuthHeroConfig): {
16794
16812
  type: "auth0_managed_certs" | "self_managed_certs";
16795
16813
  custom_domain_id: string;
16796
16814
  primary: boolean;
16797
- status: "disabled" | "pending" | "ready" | "pending_verification";
16815
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16798
16816
  verification_method?: "txt" | undefined;
16799
16817
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16800
16818
  domain_metadata?: {
@@ -16840,7 +16858,7 @@ declare function init(config: AuthHeroConfig): {
16840
16858
  type: "auth0_managed_certs" | "self_managed_certs";
16841
16859
  custom_domain_id: string;
16842
16860
  primary: boolean;
16843
- status: "disabled" | "pending" | "ready" | "pending_verification";
16861
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16844
16862
  verification_method?: "txt" | undefined;
16845
16863
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16846
16864
  domain_metadata?: {
@@ -16881,7 +16899,7 @@ declare function init(config: AuthHeroConfig): {
16881
16899
  type: "auth0_managed_certs" | "self_managed_certs";
16882
16900
  custom_domain_id: string;
16883
16901
  primary: boolean;
16884
- status: "disabled" | "pending" | "ready" | "pending_verification";
16902
+ status: "pending" | "ready" | "disabled" | "pending_verification";
16885
16903
  verification_method?: "txt" | undefined;
16886
16904
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
16887
16905
  domain_metadata?: {
@@ -17311,7 +17329,7 @@ declare function init(config: AuthHeroConfig): {
17311
17329
  } & {
17312
17330
  json: {
17313
17331
  body?: string | undefined;
17314
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
17332
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
17315
17333
  branding?: {
17316
17334
  colors?: {
17317
17335
  primary: string;
@@ -17602,7 +17620,7 @@ declare function init(config: AuthHeroConfig): {
17602
17620
  logs: {
17603
17621
  action_name: string;
17604
17622
  lines: {
17605
- level: "error" | "log" | "info" | "warn" | "debug";
17623
+ level: "log" | "error" | "info" | "warn" | "debug";
17606
17624
  message: string;
17607
17625
  }[];
17608
17626
  }[];
@@ -18271,7 +18289,7 @@ declare function init(config: AuthHeroConfig): {
18271
18289
  args: hono_utils_types.JSONValue[];
18272
18290
  }[];
18273
18291
  logs: {
18274
- level: "error" | "log" | "info" | "warn" | "debug";
18292
+ level: "log" | "error" | "info" | "warn" | "debug";
18275
18293
  message: string;
18276
18294
  }[];
18277
18295
  error?: string | undefined;
@@ -18582,7 +18600,7 @@ declare function init(config: AuthHeroConfig): {
18582
18600
  scope?: string | undefined;
18583
18601
  grant_types?: string[] | undefined;
18584
18602
  response_types?: string[] | undefined;
18585
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
18603
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18586
18604
  jwks_uri?: string | undefined;
18587
18605
  jwks?: Record<string, unknown> | undefined;
18588
18606
  software_id?: string | undefined;
@@ -18671,7 +18689,7 @@ declare function init(config: AuthHeroConfig): {
18671
18689
  scope?: string | undefined;
18672
18690
  grant_types?: string[] | undefined;
18673
18691
  response_types?: string[] | undefined;
18674
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
18692
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
18675
18693
  jwks_uri?: string | undefined;
18676
18694
  jwks?: Record<string, unknown> | undefined;
18677
18695
  software_id?: string | undefined;
@@ -19018,19 +19036,19 @@ declare function init(config: AuthHeroConfig): {
19018
19036
  send: "code" | "link";
19019
19037
  authParams: {
19020
19038
  username?: string | undefined;
19039
+ state?: string | undefined;
19040
+ audience?: string | undefined;
19021
19041
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19022
19042
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19023
19043
  scope?: string | undefined;
19024
- audience?: string | undefined;
19025
- state?: string | undefined;
19026
- prompt?: string | undefined;
19027
19044
  organization?: string | undefined;
19028
- ui_locales?: string | undefined;
19045
+ nonce?: string | undefined;
19029
19046
  redirect_uri?: string | undefined;
19030
19047
  act_as?: string | undefined;
19031
- nonce?: string | undefined;
19048
+ prompt?: string | undefined;
19032
19049
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19033
19050
  code_challenge?: string | undefined;
19051
+ ui_locales?: string | undefined;
19034
19052
  max_age?: number | undefined;
19035
19053
  acr_values?: string | undefined;
19036
19054
  claims?: {
@@ -19054,19 +19072,19 @@ declare function init(config: AuthHeroConfig): {
19054
19072
  send: "code" | "link";
19055
19073
  authParams: {
19056
19074
  username?: string | undefined;
19075
+ state?: string | undefined;
19076
+ audience?: string | undefined;
19057
19077
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19058
19078
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19059
19079
  scope?: string | undefined;
19060
- audience?: string | undefined;
19061
- state?: string | undefined;
19062
- prompt?: string | undefined;
19063
19080
  organization?: string | undefined;
19064
- ui_locales?: string | undefined;
19081
+ nonce?: string | undefined;
19065
19082
  redirect_uri?: string | undefined;
19066
19083
  act_as?: string | undefined;
19067
- nonce?: string | undefined;
19084
+ prompt?: string | undefined;
19068
19085
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19069
19086
  code_challenge?: string | undefined;
19087
+ ui_locales?: string | undefined;
19070
19088
  max_age?: number | undefined;
19071
19089
  acr_values?: string | undefined;
19072
19090
  claims?: {
@@ -19197,14 +19215,14 @@ declare function init(config: AuthHeroConfig): {
19197
19215
  input: {
19198
19216
  form: {
19199
19217
  token: string;
19200
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19218
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19201
19219
  client_id?: string | undefined;
19202
19220
  client_secret?: string | undefined;
19203
19221
  };
19204
19222
  } & {
19205
19223
  json: {
19206
19224
  token: string;
19207
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19225
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19208
19226
  client_id?: string | undefined;
19209
19227
  client_secret?: string | undefined;
19210
19228
  };
@@ -19216,14 +19234,14 @@ declare function init(config: AuthHeroConfig): {
19216
19234
  input: {
19217
19235
  form: {
19218
19236
  token: string;
19219
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19237
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19220
19238
  client_id?: string | undefined;
19221
19239
  client_secret?: string | undefined;
19222
19240
  };
19223
19241
  } & {
19224
19242
  json: {
19225
19243
  token: string;
19226
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19244
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19227
19245
  client_id?: string | undefined;
19228
19246
  client_secret?: string | undefined;
19229
19247
  };
@@ -19233,19 +19251,19 @@ declare function init(config: AuthHeroConfig): {
19233
19251
  error_description?: string | undefined;
19234
19252
  };
19235
19253
  outputFormat: "json";
19236
- status: 401;
19254
+ status: 400;
19237
19255
  } | {
19238
19256
  input: {
19239
19257
  form: {
19240
19258
  token: string;
19241
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19259
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19242
19260
  client_id?: string | undefined;
19243
19261
  client_secret?: string | undefined;
19244
19262
  };
19245
19263
  } & {
19246
19264
  json: {
19247
19265
  token: string;
19248
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19266
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19249
19267
  client_id?: string | undefined;
19250
19268
  client_secret?: string | undefined;
19251
19269
  };
@@ -19255,7 +19273,7 @@ declare function init(config: AuthHeroConfig): {
19255
19273
  error_description?: string | undefined;
19256
19274
  };
19257
19275
  outputFormat: "json";
19258
- status: 400;
19276
+ status: 401;
19259
19277
  };
19260
19278
  };
19261
19279
  }, "/oauth/revoke"> & hono_types.MergeSchemaPath<{
@@ -19295,7 +19313,7 @@ declare function init(config: AuthHeroConfig): {
19295
19313
  client_id: string;
19296
19314
  username: string;
19297
19315
  otp: string;
19298
- realm: "email" | "sms";
19316
+ realm: "sms" | "email";
19299
19317
  } | {
19300
19318
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19301
19319
  subject_token: string;
@@ -19342,7 +19360,7 @@ declare function init(config: AuthHeroConfig): {
19342
19360
  client_id: string;
19343
19361
  username: string;
19344
19362
  otp: string;
19345
- realm: "email" | "sms";
19363
+ realm: "sms" | "email";
19346
19364
  } | {
19347
19365
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19348
19366
  subject_token: string;
@@ -19394,7 +19412,7 @@ declare function init(config: AuthHeroConfig): {
19394
19412
  client_id: string;
19395
19413
  username: string;
19396
19414
  otp: string;
19397
- realm: "email" | "sms";
19415
+ realm: "sms" | "email";
19398
19416
  } | {
19399
19417
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19400
19418
  subject_token: string;
@@ -19441,7 +19459,7 @@ declare function init(config: AuthHeroConfig): {
19441
19459
  client_id: string;
19442
19460
  username: string;
19443
19461
  otp: string;
19444
- realm: "email" | "sms";
19462
+ realm: "sms" | "email";
19445
19463
  } | {
19446
19464
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19447
19465
  subject_token: string;
@@ -19456,11 +19474,16 @@ declare function init(config: AuthHeroConfig): {
19456
19474
  };
19457
19475
  };
19458
19476
  output: {
19459
- error: string;
19460
- error_description?: string | undefined;
19477
+ access_token: string;
19478
+ token_type: string;
19479
+ expires_in: number;
19480
+ id_token?: string | undefined;
19481
+ scope?: string | undefined;
19482
+ state?: string | undefined;
19483
+ refresh_token?: string | undefined;
19461
19484
  };
19462
19485
  outputFormat: "json";
19463
- status: 401;
19486
+ status: 200;
19464
19487
  } | {
19465
19488
  input: {
19466
19489
  form: {
@@ -19496,7 +19519,7 @@ declare function init(config: AuthHeroConfig): {
19496
19519
  client_id: string;
19497
19520
  username: string;
19498
19521
  otp: string;
19499
- realm: "email" | "sms";
19522
+ realm: "sms" | "email";
19500
19523
  } | {
19501
19524
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19502
19525
  subject_token: string;
@@ -19543,7 +19566,7 @@ declare function init(config: AuthHeroConfig): {
19543
19566
  client_id: string;
19544
19567
  username: string;
19545
19568
  otp: string;
19546
- realm: "email" | "sms";
19569
+ realm: "sms" | "email";
19547
19570
  } | {
19548
19571
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19549
19572
  subject_token: string;
@@ -19558,16 +19581,11 @@ declare function init(config: AuthHeroConfig): {
19558
19581
  };
19559
19582
  };
19560
19583
  output: {
19561
- access_token: string;
19562
- token_type: string;
19563
- expires_in: number;
19564
- id_token?: string | undefined;
19565
- scope?: string | undefined;
19566
- state?: string | undefined;
19567
- refresh_token?: string | undefined;
19584
+ error: string;
19585
+ error_description?: string | undefined;
19568
19586
  };
19569
19587
  outputFormat: "json";
19570
- status: 200;
19588
+ status: 400;
19571
19589
  } | {
19572
19590
  input: {
19573
19591
  form: {
@@ -19603,7 +19621,7 @@ declare function init(config: AuthHeroConfig): {
19603
19621
  client_id: string;
19604
19622
  username: string;
19605
19623
  otp: string;
19606
- realm: "email" | "sms";
19624
+ realm: "sms" | "email";
19607
19625
  } | {
19608
19626
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19609
19627
  subject_token: string;
@@ -19650,7 +19668,7 @@ declare function init(config: AuthHeroConfig): {
19650
19668
  client_id: string;
19651
19669
  username: string;
19652
19670
  otp: string;
19653
- realm: "email" | "sms";
19671
+ realm: "sms" | "email";
19654
19672
  } | {
19655
19673
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19656
19674
  subject_token: string;
@@ -19669,7 +19687,7 @@ declare function init(config: AuthHeroConfig): {
19669
19687
  error_description?: string | undefined;
19670
19688
  };
19671
19689
  outputFormat: "json";
19672
- status: 400;
19690
+ status: 401;
19673
19691
  } | {
19674
19692
  input: {
19675
19693
  form: {
@@ -19705,7 +19723,7 @@ declare function init(config: AuthHeroConfig): {
19705
19723
  client_id: string;
19706
19724
  username: string;
19707
19725
  otp: string;
19708
- realm: "email" | "sms";
19726
+ realm: "sms" | "email";
19709
19727
  } | {
19710
19728
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19711
19729
  subject_token: string;
@@ -19752,7 +19770,7 @@ declare function init(config: AuthHeroConfig): {
19752
19770
  client_id: string;
19753
19771
  username: string;
19754
19772
  otp: string;
19755
- realm: "email" | "sms";
19773
+ realm: "sms" | "email";
19756
19774
  } | {
19757
19775
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19758
19776
  subject_token: string;
@@ -20976,7 +20994,7 @@ declare function init(config: AuthHeroConfig): {
20976
20994
  $get: {
20977
20995
  input: {
20978
20996
  param: {
20979
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20997
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20980
20998
  };
20981
20999
  } & {
20982
21000
  query: {
@@ -20992,7 +21010,7 @@ declare function init(config: AuthHeroConfig): {
20992
21010
  } | {
20993
21011
  input: {
20994
21012
  param: {
20995
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21013
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20996
21014
  };
20997
21015
  } & {
20998
21016
  query: {
@@ -21008,7 +21026,7 @@ declare function init(config: AuthHeroConfig): {
21008
21026
  } | {
21009
21027
  input: {
21010
21028
  param: {
21011
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21029
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21012
21030
  };
21013
21031
  } & {
21014
21032
  query: {
@@ -21028,7 +21046,7 @@ declare function init(config: AuthHeroConfig): {
21028
21046
  $post: {
21029
21047
  input: {
21030
21048
  param: {
21031
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21049
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21032
21050
  };
21033
21051
  } & {
21034
21052
  query: {
@@ -21046,7 +21064,7 @@ declare function init(config: AuthHeroConfig): {
21046
21064
  } | {
21047
21065
  input: {
21048
21066
  param: {
21049
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21067
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21050
21068
  };
21051
21069
  } & {
21052
21070
  query: {