authhero 5.8.1 → 5.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +135 -135
- package/dist/authhero.d.ts +17853 -72311
- package/dist/authhero.mjs +16401 -16771
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -0
- package/dist/types/adapters/cache/in-memory.d.ts +52 -0
- package/dist/types/adapters/cache/index.d.ts +2 -0
- package/dist/types/adapters/index.d.ts +1 -0
- package/dist/types/authentication-flows/auth0-migration.d.ts +53 -0
- package/dist/types/authentication-flows/authorization-code.d.ts +23 -0
- package/dist/types/authentication-flows/client-credentials.d.ts +16 -0
- package/dist/types/authentication-flows/common.d.ts +253 -0
- package/dist/types/authentication-flows/connection.d.ts +17 -0
- package/dist/types/authentication-flows/mfa.d.ts +49 -0
- package/dist/types/authentication-flows/passkey-enrollment.d.ts +19 -0
- package/dist/types/authentication-flows/password.d.ts +24 -0
- package/dist/types/authentication-flows/passwordless.d.ts +571 -0
- package/dist/types/authentication-flows/refresh-token-migration.d.ts +17 -0
- package/dist/types/authentication-flows/refresh-token.d.ts +15 -0
- package/dist/types/authentication-flows/resume.d.ts +22 -0
- package/dist/types/authentication-flows/silent.d.ts +25 -0
- package/dist/types/authentication-flows/ticket.d.ts +7 -0
- package/dist/types/authentication-flows/try-connection.d.ts +33 -0
- package/dist/types/authentication-flows/universal.d.ts +19 -0
- package/dist/types/build-hash.d.ts +7 -0
- package/dist/types/client/client-bundle.d.ts +1 -0
- package/dist/types/client/form-handler.d.ts +9 -0
- package/dist/types/client/incognito-handler.d.ts +5 -0
- package/dist/types/client/index.d.ts +1 -0
- package/dist/types/client/input-otp.d.ts +12 -0
- package/dist/types/client/password-toggle.d.ts +10 -0
- package/dist/types/client/user-agent-detector.d.ts +22 -0
- package/dist/types/components/AccountChangeEmailPage.d.ts +14 -0
- package/dist/types/components/AccountForm.d.ts +17 -0
- package/dist/types/components/AccountPage.d.ts +15 -0
- package/dist/types/components/AppLogo.d.ts +8 -0
- package/dist/types/components/AuthLayout.d.ts +18 -0
- package/dist/types/components/Button.d.ts +12 -0
- package/dist/types/components/ChangeEmailForm.d.ts +14 -0
- package/dist/types/components/ChangeEmailPage.d.ts +15 -0
- package/dist/types/components/ContinueForm.d.ts +13 -0
- package/dist/types/components/EmailValidatedForm.d.ts +12 -0
- package/dist/types/components/EmailValidatedPage.d.ts +11 -0
- package/dist/types/components/EnterCodeForm.d.ts +13 -0
- package/dist/types/components/EnterCodePage.d.ts +14 -0
- package/dist/types/components/EnterPasswordForm.d.ts +14 -0
- package/dist/types/components/EnterPasswordPage.d.ts +13 -0
- package/dist/types/components/ErrorMessage.d.ts +6 -0
- package/dist/types/components/Footer.d.ts +9 -0
- package/dist/types/components/ForgotPasswordForm.d.ts +14 -0
- package/dist/types/components/ForgotPasswordPage.d.ts +13 -0
- package/dist/types/components/ForgotPasswordSentPage.d.ts +11 -0
- package/dist/types/components/Form.d.ts +6 -0
- package/dist/types/components/FormNodePage.d.ts +16 -0
- package/dist/types/components/GoBack.d.ts +5 -0
- package/dist/types/components/GoogleLogo.d.ts +4 -0
- package/dist/types/components/Icon.d.ts +8 -0
- package/dist/types/components/IconEye.d.ts +8 -0
- package/dist/types/components/IconEyeSlash.d.ts +8 -0
- package/dist/types/components/IconPen.d.ts +7 -0
- package/dist/types/components/IdentifierForm.d.ts +16 -0
- package/dist/types/components/IdentifierPage.d.ts +15 -0
- package/dist/types/components/ImpersonateForm.d.ts +14 -0
- package/dist/types/components/ImpersonationPage.d.ts +13 -0
- package/dist/types/components/InvalidSessionPage.d.ts +11 -0
- package/dist/types/components/Layout.d.ts +11 -0
- package/dist/types/components/LoginForm.d.ts +15 -0
- package/dist/types/components/MessagePage.d.ts +13 -0
- package/dist/types/components/PasswordInput.d.ts +6 -0
- package/dist/types/components/PreSignUpConfirmationPage.d.ts +12 -0
- package/dist/types/components/PreSignUpPage.d.ts +12 -0
- package/dist/types/components/ResetPasswordForm.d.ts +14 -0
- package/dist/types/components/ResetPasswordPage.d.ts +12 -0
- package/dist/types/components/SignUpForm.d.ts +15 -0
- package/dist/types/components/SignUpPage.d.ts +14 -0
- package/dist/types/components/SocialButton.d.ts +10 -0
- package/dist/types/components/Spinner.d.ts +6 -0
- package/dist/types/components/Trans.d.ts +8 -0
- package/dist/types/components/UnverifiedEmailPage.d.ts +11 -0
- package/dist/types/components/UserNotFoundPage.d.ts +12 -0
- package/dist/types/components/VippsLogo.d.ts +4 -0
- package/dist/types/components/index.d.ts +34 -0
- package/dist/types/components/stories/AccountForm.stories.d.ts +13 -0
- package/dist/types/components/stories/AuthLayout.stories.d.ts +27 -0
- package/dist/types/components/stories/ChangeEmailForm.stories.d.ts +11 -0
- package/dist/types/components/stories/ContinueForm.stories.d.ts +10 -0
- package/dist/types/components/stories/EnterCodeForm.stories.d.ts +9 -0
- package/dist/types/components/stories/EnterPasswordForm.stories.d.ts +22 -0
- package/dist/types/components/stories/IdentifierForm.stories.d.ts +42 -0
- package/dist/types/components/stories/IdentifierPage.stories.d.ts +33 -0
- package/dist/types/components/stories/ImpersonateForm.stories.d.ts +11 -0
- package/dist/types/components/stories/LoginForm.stories.d.ts +12 -0
- package/dist/types/components/ui/button.d.ts +12 -0
- package/dist/types/components/ui/card.d.ts +30 -0
- package/dist/types/components/ui/input-otp.d.ts +31 -0
- package/dist/types/components/ui/input.d.ts +15 -0
- package/dist/types/components/ui/label.d.ts +9 -0
- package/dist/types/constants/defaultBranding.d.ts +2 -0
- package/dist/types/constants/defaultTheme.d.ts +2 -0
- package/dist/types/constants/index.d.ts +2 -0
- package/dist/types/constants.d.ts +15 -0
- package/dist/types/email-services/index.d.ts +3 -0
- package/dist/types/email-services/mailgun.d.ts +18 -0
- package/dist/types/email-services/postmark.d.ts +14 -0
- package/dist/types/email-services/resend.d.ts +14 -0
- package/dist/types/emails/defaults/Layout.d.ts +12 -0
- package/dist/types/emails/defaults/PrimaryButton.d.ts +11 -0
- package/dist/types/emails/defaults/ResetEmail.d.ts +1 -0
- package/dist/types/emails/defaults/ResetEmailByCode.d.ts +1 -0
- package/dist/types/emails/defaults/UserInvitation.d.ts +1 -0
- package/dist/types/emails/defaults/VerifyEmail.d.ts +1 -0
- package/dist/types/emails/defaults/VerifyEmailByCode.d.ts +1 -0
- package/dist/types/emails/defaults/WelcomeEmail.d.ts +1 -0
- package/dist/types/emails/defaults/compiled.d.ts +2 -0
- package/dist/types/emails/defaults/index.d.ts +6 -0
- package/dist/types/emails/defaults/subjects.d.ts +2 -0
- package/dist/types/emails/index.d.ts +70 -0
- package/dist/types/emails/render.d.ts +41 -0
- package/dist/types/errors/is-unique-constraint-error.d.ts +8 -0
- package/dist/types/errors/json-http-exception.d.ts +5 -0
- package/dist/types/errors/redirect-exception.d.ts +6 -0
- package/dist/types/generated/locale-types.d.ts +690 -0
- package/dist/types/helpers/cache-wrapper.d.ts +23 -0
- package/dist/types/helpers/client-assertion.d.ts +49 -0
- package/dist/types/helpers/client-keys.d.ts +27 -0
- package/dist/types/helpers/client.d.ts +496 -0
- package/dist/types/helpers/dcr/constraint-enforcement.d.ts +24 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +83 -0
- package/dist/types/helpers/dcr/mint-iat.d.ts +14 -0
- package/dist/types/helpers/dcr/mint-token.d.ts +7 -0
- package/dist/types/helpers/dcr/validate-connect-origin.d.ts +20 -0
- package/dist/types/helpers/dcr/verify-token.d.ts +8 -0
- package/dist/types/helpers/default-destinations.d.ts +55 -0
- package/dist/types/helpers/entity-hooks-wrapper.d.ts +43 -0
- package/dist/types/helpers/hook-events.d.ts +20 -0
- package/dist/types/helpers/hook-user-payload.d.ts +8 -0
- package/dist/types/helpers/hrd.d.ts +3 -0
- package/dist/types/helpers/logging.d.ts +65 -0
- package/dist/types/helpers/outbox-cleanup.d.ts +10 -0
- package/dist/types/helpers/outbox-destinations/index.d.ts +2 -0
- package/dist/types/helpers/outbox-destinations/log-streams.d.ts +66 -0
- package/dist/types/helpers/outbox-destinations/logs.d.ts +20 -0
- package/dist/types/helpers/outbox-destinations/registration-finalizer.d.ts +29 -0
- package/dist/types/helpers/outbox-destinations/webhooks.d.ts +57 -0
- package/dist/types/helpers/outbox-relay.d.ts +34 -0
- package/dist/types/helpers/password-policy.d.ts +54 -0
- package/dist/types/helpers/request-object.d.ts +40 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +58 -0
- package/dist/types/helpers/saml.d.ts +1 -0
- package/dist/types/helpers/scope-claims.d.ts +4 -0
- package/dist/types/helpers/scopes-permissions.d.ts +38 -0
- package/dist/types/helpers/server-timing.d.ts +12 -0
- package/dist/types/helpers/service-token.d.ts +54 -0
- package/dist/types/helpers/set-tenant-id.d.ts +15 -0
- package/dist/types/helpers/signing-keys.d.ts +16 -0
- package/dist/types/helpers/try-connection-client.d.ts +15 -0
- package/dist/types/helpers/user-linking.d.ts +14 -0
- package/dist/types/helpers/user-session-cleanup.d.ts +21 -0
- package/dist/types/helpers/users.d.ts +46 -0
- package/dist/types/helpers/wait-until.d.ts +21 -0
- package/dist/types/hooks/addDataHooks.d.ts +16 -0
- package/dist/types/hooks/code-executor/local.d.ts +13 -0
- package/dist/types/hooks/codehooks.d.ts +70 -0
- package/dist/types/hooks/formhooks.d.ts +99 -0
- package/dist/types/hooks/helpers/token-api.d.ts +17 -0
- package/dist/types/hooks/index.d.ts +20 -0
- package/dist/types/hooks/link-users.d.ts +29 -0
- package/dist/types/hooks/pagehooks.d.ts +16 -0
- package/dist/types/hooks/post-user-login.d.ts +29 -0
- package/dist/types/hooks/pre-defined/account-linking.d.ts +73 -0
- package/dist/types/hooks/pre-defined/ensure-username.d.ts +86 -0
- package/dist/types/hooks/pre-defined/index.d.ts +23 -0
- package/dist/types/hooks/pre-defined/set-preferred-username.d.ts +26 -0
- package/dist/types/hooks/templatehooks.d.ts +29 -0
- package/dist/types/hooks/user-deletion.d.ts +14 -0
- package/dist/types/hooks/user-registration.d.ts +88 -0
- package/dist/types/hooks/user-update.d.ts +16 -0
- package/dist/types/hooks/validate-signup.d.ts +34 -0
- package/dist/types/hooks/webhooks.d.ts +35 -0
- package/dist/types/i18n/index.d.ts +77 -0
- package/dist/types/index.d.ts +16022 -0
- package/dist/types/locales/index.d.ts +9 -0
- package/dist/types/middlewares/apply-config.d.ts +14 -0
- package/dist/types/middlewares/authentication.d.ts +26 -0
- package/dist/types/middlewares/client-info.d.ts +8 -0
- package/dist/types/middlewares/index.d.ts +6 -0
- package/dist/types/middlewares/outbox.d.ts +24 -0
- package/dist/types/middlewares/register-component.d.ts +10 -0
- package/dist/types/middlewares/tenant.d.ts +12 -0
- package/dist/types/migration-providers/auth0.d.ts +3 -0
- package/dist/types/migration-providers/index.d.ts +5 -0
- package/dist/types/migration-providers/types.d.ts +32 -0
- package/dist/types/routes/auth-api/account.d.ts +36 -0
- package/dist/types/routes/auth-api/authenticate.d.ts +31 -0
- package/dist/types/routes/auth-api/authorize.d.ts +239 -0
- package/dist/types/routes/auth-api/callback.d.ts +234 -0
- package/dist/types/routes/auth-api/connect-start.d.ts +52 -0
- package/dist/types/routes/auth-api/dbconnections.d.ts +43 -0
- package/dist/types/routes/auth-api/index.d.ts +1580 -0
- package/dist/types/routes/auth-api/logout.d.ts +20 -0
- package/dist/types/routes/auth-api/oidc-logout.d.ts +52 -0
- package/dist/types/routes/auth-api/passwordless.d.ts +154 -0
- package/dist/types/routes/auth-api/register/index.d.ts +159 -0
- package/dist/types/routes/auth-api/register/shared.d.ts +30 -0
- package/dist/types/routes/auth-api/revoke.d.ts +73 -0
- package/dist/types/routes/auth-api/token.d.ts +412 -0
- package/dist/types/routes/auth-api/userinfo.d.ts +84 -0
- package/dist/types/routes/auth-api/well-known.d.ts +74 -0
- package/dist/types/routes/management-api/action-executions.d.ts +90 -0
- package/dist/types/routes/management-api/action-triggers.d.ts +118 -0
- package/dist/types/routes/management-api/actions.d.ts +673 -0
- package/dist/types/routes/management-api/analytics.d.ts +18 -0
- package/dist/types/routes/management-api/attack-protection.d.ts +189 -0
- package/dist/types/routes/management-api/authentication-methods.d.ts +115 -0
- package/dist/types/routes/management-api/branding.d.ts +402 -0
- package/dist/types/routes/management-api/client-grants.d.ts +183 -0
- package/dist/types/routes/management-api/client-registration-tokens.d.ts +35 -0
- package/dist/types/routes/management-api/clients.d.ts +995 -0
- package/dist/types/routes/management-api/connections.d.ts +872 -0
- package/dist/types/routes/management-api/custom-domains.d.ts +266 -0
- package/dist/types/routes/management-api/email-templates.d.ts +205 -0
- package/dist/types/routes/management-api/emails.d.ts +124 -0
- package/dist/types/routes/management-api/failed-events.d.ts +146 -0
- package/dist/types/routes/management-api/flows.d.ts +438 -0
- package/dist/types/routes/management-api/forms.d.ts +4090 -0
- package/dist/types/routes/management-api/guardian.d.ts +211 -0
- package/dist/types/routes/management-api/hook-code.d.ts +142 -0
- package/dist/types/routes/management-api/hooks.d.ts +405 -0
- package/dist/types/routes/management-api/index.d.ts +13277 -0
- package/dist/types/routes/management-api/keys.d.ts +98 -0
- package/dist/types/routes/management-api/log-streams.d.ts +170 -0
- package/dist/types/routes/management-api/logs.d.ts +159 -0
- package/dist/types/routes/management-api/migration-sources.d.ts +173 -0
- package/dist/types/routes/management-api/organizations.d.ts +896 -0
- package/dist/types/routes/management-api/prompts.d.ts +150 -0
- package/dist/types/routes/management-api/refresh_tokens.d.ts +66 -0
- package/dist/types/routes/management-api/resource-servers.d.ts +321 -0
- package/dist/types/routes/management-api/roles.d.ts +260 -0
- package/dist/types/routes/management-api/sessions.d.ts +78 -0
- package/dist/types/routes/management-api/stats.d.ts +44 -0
- package/dist/types/routes/management-api/tenants.d.ts +546 -0
- package/dist/types/routes/management-api/themes.d.ts +265 -0
- package/dist/types/routes/management-api/tickets.d.ts +75 -0
- package/dist/types/routes/management-api/users-by-email.d.ts +90 -0
- package/dist/types/routes/management-api/users.d.ts +1085 -0
- package/dist/types/routes/saml/index.d.ts +64 -0
- package/dist/types/routes/saml/samlp.d.ts +64 -0
- package/dist/types/routes/setup.d.ts +6 -0
- package/dist/types/routes/universal-login/account-change-email-confirmation.d.ts +30 -0
- package/dist/types/routes/universal-login/account-change-email-verify.d.ts +66 -0
- package/dist/types/routes/universal-login/account-change-email.d.ts +58 -0
- package/dist/types/routes/universal-login/account.d.ts +64 -0
- package/dist/types/routes/universal-login/common.d.ts +1482 -0
- package/dist/types/routes/universal-login/continue.d.ts +37 -0
- package/dist/types/routes/universal-login/enter-password.d.ts +49 -0
- package/dist/types/routes/universal-login/error-handler.d.ts +14 -0
- package/dist/types/routes/universal-login/error-page.d.ts +32 -0
- package/dist/types/routes/universal-login/error.d.ts +20 -0
- package/dist/types/routes/universal-login/flow-api.d.ts +381 -0
- package/dist/types/routes/universal-login/flow-widget.d.ts +23 -0
- package/dist/types/routes/universal-login/forgot-password.d.ts +32 -0
- package/dist/types/routes/universal-login/form-node.d.ts +74 -0
- package/dist/types/routes/universal-login/identifier.d.ts +55 -0
- package/dist/types/routes/universal-login/impersonate.d.ts +71 -0
- package/dist/types/routes/universal-login/index.d.ts +748 -0
- package/dist/types/routes/universal-login/info.d.ts +20 -0
- package/dist/types/routes/universal-login/invalid-session.d.ts +19 -0
- package/dist/types/routes/universal-login/otp-challenge.d.ts +54 -0
- package/dist/types/routes/universal-login/pre-signup-sent.d.ts +19 -0
- package/dist/types/routes/universal-login/pre-signup.d.ts +32 -0
- package/dist/types/routes/universal-login/reset-password.d.ts +39 -0
- package/dist/types/routes/universal-login/sanitization-utils.d.ts +55 -0
- package/dist/types/routes/universal-login/screen-api.d.ts +20 -0
- package/dist/types/routes/universal-login/screens/accept-invitation.d.ts +13 -0
- package/dist/types/routes/universal-login/screens/account-delete.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/account-helpers.d.ts +13 -0
- package/dist/types/routes/universal-login/screens/account-linked.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/account-mfa-phone-enrollment.d.ts +10 -0
- package/dist/types/routes/universal-login/screens/account-mfa-totp-enrollment.d.ts +10 -0
- package/dist/types/routes/universal-login/screens/account-passkeys.d.ts +10 -0
- package/dist/types/routes/universal-login/screens/account-profile.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/account-security.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/account.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/connect-consent.d.ts +9 -0
- package/dist/types/routes/universal-login/screens/connect-tenant-select.d.ts +13 -0
- package/dist/types/routes/universal-login/screens/email-otp-challenge.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/enter-password.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/forgot-password.d.ts +11 -0
- package/dist/types/routes/universal-login/screens/identifier.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/impersonate.d.ts +15 -0
- package/dist/types/routes/universal-login/screens/index.d.ts +29 -0
- package/dist/types/routes/universal-login/screens/login-passwordless-identifier.d.ts +17 -0
- package/dist/types/routes/universal-login/screens/login.d.ts +17 -0
- package/dist/types/routes/universal-login/screens/magic-link-sent.d.ts +11 -0
- package/dist/types/routes/universal-login/screens/mfa-login-options.d.ts +21 -0
- package/dist/types/routes/universal-login/screens/mfa-phone-challenge.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/mfa-phone-enrollment.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/mfa-totp-challenge.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/mfa-totp-enrollment.d.ts +17 -0
- package/dist/types/routes/universal-login/screens/passkey-challenge.d.ts +16 -0
- package/dist/types/routes/universal-login/screens/passkey-enrollment-nudge.d.ts +17 -0
- package/dist/types/routes/universal-login/screens/passkey-enrollment.d.ts +11 -0
- package/dist/types/routes/universal-login/screens/passkey-utils.d.ts +100 -0
- package/dist/types/routes/universal-login/screens/registry.d.ts +28 -0
- package/dist/types/routes/universal-login/screens/reset-password-code.d.ts +18 -0
- package/dist/types/routes/universal-login/screens/reset-password.d.ts +36 -0
- package/dist/types/routes/universal-login/screens/signup.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/sms-otp-challenge.d.ts +14 -0
- package/dist/types/routes/universal-login/screens/try-connection-result.d.ts +12 -0
- package/dist/types/routes/universal-login/screens/types.d.ts +167 -0
- package/dist/types/routes/universal-login/signup.d.ts +54 -0
- package/dist/types/routes/universal-login/u2-form-node.d.ts +93 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +337 -0
- package/dist/types/routes/universal-login/u2-routes.d.ts +262 -0
- package/dist/types/routes/universal-login/u2-widget-page.d.ts +187 -0
- package/dist/types/routes/universal-login/universal-login-template.d.ts +55 -0
- package/dist/types/routes/universal-login/validate-email.d.ts +20 -0
- package/dist/types/routes/universal-login/widget-routes.d.ts +81 -0
- package/dist/types/seed.d.ts +86 -0
- package/dist/types/state-machines/index.d.ts +1 -0
- package/dist/types/state-machines/login-session.d.ts +173 -0
- package/dist/types/storybook-utils/HonoJSXWrapper.d.ts +43 -0
- package/dist/types/strategies/apple.d.ts +24 -0
- package/dist/types/strategies/facebook.d.ts +20 -0
- package/dist/types/strategies/github.d.ts +23 -0
- package/dist/types/strategies/google-oauth2.d.ts +43 -0
- package/dist/types/strategies/index.d.ts +69 -0
- package/dist/types/strategies/internal-oauth2.d.ts +17 -0
- package/dist/types/strategies/microsoft.d.ts +24 -0
- package/dist/types/strategies/oauth2.d.ts +38 -0
- package/dist/types/strategies/oidc.d.ts +38 -0
- package/dist/types/strategies/saml.d.ts +9 -0
- package/dist/types/strategies/vipps.d.ts +16 -0
- package/dist/types/styles/index.d.ts +9 -0
- package/dist/types/styles/tailwind.d.ts +1 -0
- package/dist/types/types/Auth0Client.d.ts +9 -0
- package/dist/types/types/AuthError.d.ts +14 -0
- package/dist/types/types/AuthHeroConfig.d.ts +415 -0
- package/dist/types/types/Bindings.d.ts +51 -0
- package/dist/types/types/GrantFlowResult.d.ts +22 -0
- package/dist/types/types/Hooks.d.ts +240 -0
- package/dist/types/types/IdToken.d.ts +30 -0
- package/dist/types/types/UserInfo.d.ts +8 -0
- package/dist/types/types/Variables.d.ts +33 -0
- package/dist/types/types/auth0/Query.d.ts +12 -0
- package/dist/types/types/auth0/Totals.d.ts +11 -0
- package/dist/types/types/auth0/UserResponse.d.ts +46 -0
- package/dist/types/types/auth0/index.d.ts +3 -0
- package/dist/types/types/index.d.ts +6 -0
- package/dist/types/types/saml.d.ts +1 -0
- package/dist/types/utils/append-log.d.ts +10 -0
- package/dist/types/utils/auth-header.d.ts +18 -0
- package/dist/types/utils/auth0-upstream.d.ts +60 -0
- package/dist/types/utils/authIframe.d.ts +11 -0
- package/dist/types/utils/client-info.d.ts +47 -0
- package/dist/types/utils/color.d.ts +23 -0
- package/dist/types/utils/connections.d.ts +11 -0
- package/dist/types/utils/cookies.d.ts +28 -0
- package/dist/types/utils/crypto.d.ts +2 -0
- package/dist/types/utils/deep-merge.d.ts +6 -0
- package/dist/types/utils/define-route.d.ts +20 -0
- package/dist/types/utils/encryption.d.ts +22 -0
- package/dist/types/utils/entity-id.d.ts +13 -0
- package/dist/types/utils/fetchAll.d.ts +60 -0
- package/dist/types/utils/form-post.d.ts +1 -0
- package/dist/types/utils/id-token-hash.d.ts +1 -0
- package/dist/types/utils/incognito.d.ts +11 -0
- package/dist/types/utils/instance-to-json.d.ts +8 -0
- package/dist/types/utils/ip.d.ts +8 -0
- package/dist/types/utils/is-valid-redirect-url.d.ts +4 -0
- package/dist/types/utils/jwk-alg.d.ts +20 -0
- package/dist/types/utils/jwks.d.ts +41 -0
- package/dist/types/utils/jwt.d.ts +15 -0
- package/dist/types/utils/organization-id.d.ts +2 -0
- package/dist/types/utils/otp.d.ts +1 -0
- package/dist/types/utils/refresh-token-format.d.ts +20 -0
- package/dist/types/utils/safe-compare.d.ts +1 -0
- package/dist/types/utils/sort.d.ts +4 -0
- package/dist/types/utils/ssrf-fetch.d.ts +44 -0
- package/dist/types/utils/ulid.d.ts +1 -0
- package/dist/types/utils/url.d.ts +16 -0
- package/dist/types/utils/user-id.d.ts +2 -0
- package/dist/types/utils/username-password-provider.d.ts +67 -0
- package/dist/types/utils/username.d.ts +11 -0
- package/dist/types/variables.d.ts +4 -0
- package/package.json +11 -11
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { Bindings, Variables } from "../../types";
|
|
2
|
+
import { OpenAPIHono } from "@hono/zod-openapi";
|
|
3
|
+
export declare const failedEventsRoutes: OpenAPIHono<{
|
|
4
|
+
Bindings: Bindings;
|
|
5
|
+
Variables: Variables;
|
|
6
|
+
}, {
|
|
7
|
+
"/": {
|
|
8
|
+
$get: {
|
|
9
|
+
input: {
|
|
10
|
+
query: {
|
|
11
|
+
page?: string | undefined;
|
|
12
|
+
per_page?: string | undefined;
|
|
13
|
+
include_totals?: string | undefined;
|
|
14
|
+
from?: string | undefined;
|
|
15
|
+
take?: string | undefined;
|
|
16
|
+
sort?: string | undefined;
|
|
17
|
+
q?: string | undefined;
|
|
18
|
+
from_date?: unknown;
|
|
19
|
+
to_date?: unknown;
|
|
20
|
+
};
|
|
21
|
+
} & {
|
|
22
|
+
header: {
|
|
23
|
+
"tenant-id"?: string | undefined;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
output: {
|
|
27
|
+
events: {
|
|
28
|
+
tenant_id: string;
|
|
29
|
+
event_type: string;
|
|
30
|
+
log_type: string;
|
|
31
|
+
category: "user_action" | "admin_action" | "system" | "api";
|
|
32
|
+
actor: {
|
|
33
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
34
|
+
id?: string | undefined;
|
|
35
|
+
email?: string | undefined;
|
|
36
|
+
org_id?: string | undefined;
|
|
37
|
+
org_name?: string | undefined;
|
|
38
|
+
scopes?: string[] | undefined;
|
|
39
|
+
client_id?: string | undefined;
|
|
40
|
+
};
|
|
41
|
+
target: {
|
|
42
|
+
type: string;
|
|
43
|
+
id: string;
|
|
44
|
+
before?: {
|
|
45
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
46
|
+
} | undefined;
|
|
47
|
+
after?: {
|
|
48
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
49
|
+
} | undefined;
|
|
50
|
+
diff?: {
|
|
51
|
+
[x: string]: {
|
|
52
|
+
old: import("hono/utils/types").JSONValue;
|
|
53
|
+
new: import("hono/utils/types").JSONValue;
|
|
54
|
+
};
|
|
55
|
+
} | undefined;
|
|
56
|
+
};
|
|
57
|
+
request: {
|
|
58
|
+
method: string;
|
|
59
|
+
path: string;
|
|
60
|
+
ip: string;
|
|
61
|
+
query?: {
|
|
62
|
+
[x: string]: string;
|
|
63
|
+
} | undefined;
|
|
64
|
+
body?: import("hono/utils/types").JSONValue | undefined;
|
|
65
|
+
user_agent?: string | undefined;
|
|
66
|
+
correlation_id?: string | undefined;
|
|
67
|
+
};
|
|
68
|
+
hostname: string;
|
|
69
|
+
timestamp: string;
|
|
70
|
+
id: string;
|
|
71
|
+
created_at: string;
|
|
72
|
+
processed_at: string | null;
|
|
73
|
+
retry_count: number;
|
|
74
|
+
next_retry_at: string | null;
|
|
75
|
+
error: string | null;
|
|
76
|
+
description?: string | undefined;
|
|
77
|
+
response?: {
|
|
78
|
+
status_code: number;
|
|
79
|
+
body?: import("hono/utils/types").JSONValue | undefined;
|
|
80
|
+
} | undefined;
|
|
81
|
+
connection?: string | undefined;
|
|
82
|
+
strategy?: string | undefined;
|
|
83
|
+
strategy_type?: string | undefined;
|
|
84
|
+
audience?: string | undefined;
|
|
85
|
+
scope?: string | undefined;
|
|
86
|
+
location?: {
|
|
87
|
+
country_code: string;
|
|
88
|
+
city_name: string;
|
|
89
|
+
latitude: string;
|
|
90
|
+
longitude: string;
|
|
91
|
+
time_zone: string;
|
|
92
|
+
continent_code: string;
|
|
93
|
+
} | undefined;
|
|
94
|
+
auth0_client?: {
|
|
95
|
+
name: string;
|
|
96
|
+
version: string;
|
|
97
|
+
env?: {
|
|
98
|
+
[x: string]: string;
|
|
99
|
+
} | undefined;
|
|
100
|
+
} | undefined;
|
|
101
|
+
is_mobile?: boolean | undefined;
|
|
102
|
+
dead_lettered_at?: string | null | undefined;
|
|
103
|
+
final_error?: string | null | undefined;
|
|
104
|
+
}[];
|
|
105
|
+
start: number;
|
|
106
|
+
limit: number;
|
|
107
|
+
length: number;
|
|
108
|
+
};
|
|
109
|
+
outputFormat: "json";
|
|
110
|
+
status: 200;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
} & {
|
|
114
|
+
"/:id/retry": {
|
|
115
|
+
$post: {
|
|
116
|
+
input: {
|
|
117
|
+
param: {
|
|
118
|
+
id: string;
|
|
119
|
+
};
|
|
120
|
+
} & {
|
|
121
|
+
header: {
|
|
122
|
+
"tenant-id"?: string | undefined;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
output: {};
|
|
126
|
+
outputFormat: string;
|
|
127
|
+
status: 404;
|
|
128
|
+
} | {
|
|
129
|
+
input: {
|
|
130
|
+
param: {
|
|
131
|
+
id: string;
|
|
132
|
+
};
|
|
133
|
+
} & {
|
|
134
|
+
header: {
|
|
135
|
+
"tenant-id"?: string | undefined;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
output: {
|
|
139
|
+
id: string;
|
|
140
|
+
replayed: boolean;
|
|
141
|
+
};
|
|
142
|
+
outputFormat: "json";
|
|
143
|
+
status: 200;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
}, "/">;
|
|
@@ -0,0 +1,438 @@
|
|
|
1
|
+
import { OpenAPIHono } from "@hono/zod-openapi";
|
|
2
|
+
import { Bindings, Variables } from "../../types";
|
|
3
|
+
export declare const flowsRoutes: OpenAPIHono<{
|
|
4
|
+
Bindings: Bindings;
|
|
5
|
+
Variables: Variables;
|
|
6
|
+
}, {
|
|
7
|
+
"/": {
|
|
8
|
+
$get: {
|
|
9
|
+
input: {
|
|
10
|
+
query: {
|
|
11
|
+
page?: string | undefined;
|
|
12
|
+
per_page?: string | undefined;
|
|
13
|
+
include_totals?: string | undefined;
|
|
14
|
+
from?: string | undefined;
|
|
15
|
+
take?: string | undefined;
|
|
16
|
+
sort?: string | undefined;
|
|
17
|
+
q?: string | undefined;
|
|
18
|
+
from_date?: unknown;
|
|
19
|
+
to_date?: unknown;
|
|
20
|
+
};
|
|
21
|
+
} & {
|
|
22
|
+
header: {
|
|
23
|
+
"tenant-id"?: string | undefined;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
output: {
|
|
27
|
+
name: string;
|
|
28
|
+
actions: ({
|
|
29
|
+
id: string;
|
|
30
|
+
type: "AUTH0";
|
|
31
|
+
action: "UPDATE_USER";
|
|
32
|
+
params: {
|
|
33
|
+
user_id: string;
|
|
34
|
+
changes: {
|
|
35
|
+
[x: string]: any;
|
|
36
|
+
};
|
|
37
|
+
connection_id?: string | undefined;
|
|
38
|
+
};
|
|
39
|
+
alias?: string | undefined;
|
|
40
|
+
allow_failure?: boolean | undefined;
|
|
41
|
+
mask_output?: boolean | undefined;
|
|
42
|
+
} | {
|
|
43
|
+
id: string;
|
|
44
|
+
type: "EMAIL";
|
|
45
|
+
action: "VERIFY_EMAIL";
|
|
46
|
+
params: {
|
|
47
|
+
email: string;
|
|
48
|
+
rules?: {
|
|
49
|
+
require_mx_record?: boolean | undefined;
|
|
50
|
+
block_aliases?: boolean | undefined;
|
|
51
|
+
block_free_emails?: boolean | undefined;
|
|
52
|
+
block_disposable_emails?: boolean | undefined;
|
|
53
|
+
blocklist?: string[] | undefined;
|
|
54
|
+
allowlist?: string[] | undefined;
|
|
55
|
+
} | undefined;
|
|
56
|
+
};
|
|
57
|
+
alias?: string | undefined;
|
|
58
|
+
allow_failure?: boolean | undefined;
|
|
59
|
+
mask_output?: boolean | undefined;
|
|
60
|
+
} | {
|
|
61
|
+
id: string;
|
|
62
|
+
type: "REDIRECT";
|
|
63
|
+
action: "REDIRECT_USER";
|
|
64
|
+
params: {
|
|
65
|
+
target: "custom" | "change-email" | "account";
|
|
66
|
+
custom_url?: string | undefined;
|
|
67
|
+
};
|
|
68
|
+
alias?: string | undefined;
|
|
69
|
+
allow_failure?: boolean | undefined;
|
|
70
|
+
mask_output?: boolean | undefined;
|
|
71
|
+
})[];
|
|
72
|
+
created_at: string;
|
|
73
|
+
updated_at: string;
|
|
74
|
+
id: string;
|
|
75
|
+
}[] | {
|
|
76
|
+
start: number;
|
|
77
|
+
limit: number;
|
|
78
|
+
length: number;
|
|
79
|
+
flows: {
|
|
80
|
+
name: string;
|
|
81
|
+
actions: ({
|
|
82
|
+
id: string;
|
|
83
|
+
type: "AUTH0";
|
|
84
|
+
action: "UPDATE_USER";
|
|
85
|
+
params: {
|
|
86
|
+
user_id: string;
|
|
87
|
+
changes: {
|
|
88
|
+
[x: string]: any;
|
|
89
|
+
};
|
|
90
|
+
connection_id?: string | undefined;
|
|
91
|
+
};
|
|
92
|
+
alias?: string | undefined;
|
|
93
|
+
allow_failure?: boolean | undefined;
|
|
94
|
+
mask_output?: boolean | undefined;
|
|
95
|
+
} | {
|
|
96
|
+
id: string;
|
|
97
|
+
type: "EMAIL";
|
|
98
|
+
action: "VERIFY_EMAIL";
|
|
99
|
+
params: {
|
|
100
|
+
email: string;
|
|
101
|
+
rules?: {
|
|
102
|
+
require_mx_record?: boolean | undefined;
|
|
103
|
+
block_aliases?: boolean | undefined;
|
|
104
|
+
block_free_emails?: boolean | undefined;
|
|
105
|
+
block_disposable_emails?: boolean | undefined;
|
|
106
|
+
blocklist?: string[] | undefined;
|
|
107
|
+
allowlist?: string[] | undefined;
|
|
108
|
+
} | undefined;
|
|
109
|
+
};
|
|
110
|
+
alias?: string | undefined;
|
|
111
|
+
allow_failure?: boolean | undefined;
|
|
112
|
+
mask_output?: boolean | undefined;
|
|
113
|
+
} | {
|
|
114
|
+
id: string;
|
|
115
|
+
type: "REDIRECT";
|
|
116
|
+
action: "REDIRECT_USER";
|
|
117
|
+
params: {
|
|
118
|
+
target: "custom" | "change-email" | "account";
|
|
119
|
+
custom_url?: string | undefined;
|
|
120
|
+
};
|
|
121
|
+
alias?: string | undefined;
|
|
122
|
+
allow_failure?: boolean | undefined;
|
|
123
|
+
mask_output?: boolean | undefined;
|
|
124
|
+
})[];
|
|
125
|
+
created_at: string;
|
|
126
|
+
updated_at: string;
|
|
127
|
+
id: string;
|
|
128
|
+
}[];
|
|
129
|
+
total?: number | undefined;
|
|
130
|
+
};
|
|
131
|
+
outputFormat: "json";
|
|
132
|
+
status: 200;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
} & {
|
|
136
|
+
"/:id": {
|
|
137
|
+
$get: {
|
|
138
|
+
input: {
|
|
139
|
+
param: {
|
|
140
|
+
id: string;
|
|
141
|
+
};
|
|
142
|
+
} & {
|
|
143
|
+
header: {
|
|
144
|
+
"tenant-id"?: string | undefined;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
output: {
|
|
148
|
+
name: string;
|
|
149
|
+
actions: ({
|
|
150
|
+
id: string;
|
|
151
|
+
type: "AUTH0";
|
|
152
|
+
action: "UPDATE_USER";
|
|
153
|
+
params: {
|
|
154
|
+
user_id: string;
|
|
155
|
+
changes: {
|
|
156
|
+
[x: string]: any;
|
|
157
|
+
};
|
|
158
|
+
connection_id?: string | undefined;
|
|
159
|
+
};
|
|
160
|
+
alias?: string | undefined;
|
|
161
|
+
allow_failure?: boolean | undefined;
|
|
162
|
+
mask_output?: boolean | undefined;
|
|
163
|
+
} | {
|
|
164
|
+
id: string;
|
|
165
|
+
type: "EMAIL";
|
|
166
|
+
action: "VERIFY_EMAIL";
|
|
167
|
+
params: {
|
|
168
|
+
email: string;
|
|
169
|
+
rules?: {
|
|
170
|
+
require_mx_record?: boolean | undefined;
|
|
171
|
+
block_aliases?: boolean | undefined;
|
|
172
|
+
block_free_emails?: boolean | undefined;
|
|
173
|
+
block_disposable_emails?: boolean | undefined;
|
|
174
|
+
blocklist?: string[] | undefined;
|
|
175
|
+
allowlist?: string[] | undefined;
|
|
176
|
+
} | undefined;
|
|
177
|
+
};
|
|
178
|
+
alias?: string | undefined;
|
|
179
|
+
allow_failure?: boolean | undefined;
|
|
180
|
+
mask_output?: boolean | undefined;
|
|
181
|
+
} | {
|
|
182
|
+
id: string;
|
|
183
|
+
type: "REDIRECT";
|
|
184
|
+
action: "REDIRECT_USER";
|
|
185
|
+
params: {
|
|
186
|
+
target: "custom" | "change-email" | "account";
|
|
187
|
+
custom_url?: string | undefined;
|
|
188
|
+
};
|
|
189
|
+
alias?: string | undefined;
|
|
190
|
+
allow_failure?: boolean | undefined;
|
|
191
|
+
mask_output?: boolean | undefined;
|
|
192
|
+
})[];
|
|
193
|
+
created_at: string;
|
|
194
|
+
updated_at: string;
|
|
195
|
+
id: string;
|
|
196
|
+
};
|
|
197
|
+
outputFormat: "json";
|
|
198
|
+
status: 200;
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
} & {
|
|
202
|
+
"/:id": {
|
|
203
|
+
$delete: {
|
|
204
|
+
input: {
|
|
205
|
+
param: {
|
|
206
|
+
id: string;
|
|
207
|
+
};
|
|
208
|
+
} & {
|
|
209
|
+
header: {
|
|
210
|
+
"tenant-id"?: string | undefined;
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
output: {};
|
|
214
|
+
outputFormat: string;
|
|
215
|
+
status: 200;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
} & {
|
|
219
|
+
"/:id": {
|
|
220
|
+
$patch: {
|
|
221
|
+
input: {
|
|
222
|
+
param: {
|
|
223
|
+
id: string;
|
|
224
|
+
};
|
|
225
|
+
} & {
|
|
226
|
+
header: {
|
|
227
|
+
"tenant-id"?: string | undefined;
|
|
228
|
+
};
|
|
229
|
+
} & {
|
|
230
|
+
json: {
|
|
231
|
+
name?: string | undefined;
|
|
232
|
+
actions?: ({
|
|
233
|
+
id: string;
|
|
234
|
+
type: "AUTH0";
|
|
235
|
+
action: "UPDATE_USER";
|
|
236
|
+
params: {
|
|
237
|
+
user_id: string;
|
|
238
|
+
changes: Record<string, any>;
|
|
239
|
+
connection_id?: string | undefined;
|
|
240
|
+
};
|
|
241
|
+
alias?: string | undefined;
|
|
242
|
+
allow_failure?: boolean | undefined;
|
|
243
|
+
mask_output?: boolean | undefined;
|
|
244
|
+
} | {
|
|
245
|
+
id: string;
|
|
246
|
+
type: "EMAIL";
|
|
247
|
+
action: "VERIFY_EMAIL";
|
|
248
|
+
params: {
|
|
249
|
+
email: string;
|
|
250
|
+
rules?: {
|
|
251
|
+
require_mx_record?: boolean | undefined;
|
|
252
|
+
block_aliases?: boolean | undefined;
|
|
253
|
+
block_free_emails?: boolean | undefined;
|
|
254
|
+
block_disposable_emails?: boolean | undefined;
|
|
255
|
+
blocklist?: string[] | undefined;
|
|
256
|
+
allowlist?: string[] | undefined;
|
|
257
|
+
} | undefined;
|
|
258
|
+
};
|
|
259
|
+
alias?: string | undefined;
|
|
260
|
+
allow_failure?: boolean | undefined;
|
|
261
|
+
mask_output?: boolean | undefined;
|
|
262
|
+
} | {
|
|
263
|
+
id: string;
|
|
264
|
+
type: "REDIRECT";
|
|
265
|
+
action: "REDIRECT_USER";
|
|
266
|
+
params: {
|
|
267
|
+
target: "custom" | "change-email" | "account";
|
|
268
|
+
custom_url?: string | undefined;
|
|
269
|
+
};
|
|
270
|
+
alias?: string | undefined;
|
|
271
|
+
allow_failure?: boolean | undefined;
|
|
272
|
+
mask_output?: boolean | undefined;
|
|
273
|
+
})[] | undefined;
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
output: {
|
|
277
|
+
name: string;
|
|
278
|
+
actions: ({
|
|
279
|
+
id: string;
|
|
280
|
+
type: "AUTH0";
|
|
281
|
+
action: "UPDATE_USER";
|
|
282
|
+
params: {
|
|
283
|
+
user_id: string;
|
|
284
|
+
changes: {
|
|
285
|
+
[x: string]: any;
|
|
286
|
+
};
|
|
287
|
+
connection_id?: string | undefined;
|
|
288
|
+
};
|
|
289
|
+
alias?: string | undefined;
|
|
290
|
+
allow_failure?: boolean | undefined;
|
|
291
|
+
mask_output?: boolean | undefined;
|
|
292
|
+
} | {
|
|
293
|
+
id: string;
|
|
294
|
+
type: "EMAIL";
|
|
295
|
+
action: "VERIFY_EMAIL";
|
|
296
|
+
params: {
|
|
297
|
+
email: string;
|
|
298
|
+
rules?: {
|
|
299
|
+
require_mx_record?: boolean | undefined;
|
|
300
|
+
block_aliases?: boolean | undefined;
|
|
301
|
+
block_free_emails?: boolean | undefined;
|
|
302
|
+
block_disposable_emails?: boolean | undefined;
|
|
303
|
+
blocklist?: string[] | undefined;
|
|
304
|
+
allowlist?: string[] | undefined;
|
|
305
|
+
} | undefined;
|
|
306
|
+
};
|
|
307
|
+
alias?: string | undefined;
|
|
308
|
+
allow_failure?: boolean | undefined;
|
|
309
|
+
mask_output?: boolean | undefined;
|
|
310
|
+
} | {
|
|
311
|
+
id: string;
|
|
312
|
+
type: "REDIRECT";
|
|
313
|
+
action: "REDIRECT_USER";
|
|
314
|
+
params: {
|
|
315
|
+
target: "custom" | "change-email" | "account";
|
|
316
|
+
custom_url?: string | undefined;
|
|
317
|
+
};
|
|
318
|
+
alias?: string | undefined;
|
|
319
|
+
allow_failure?: boolean | undefined;
|
|
320
|
+
mask_output?: boolean | undefined;
|
|
321
|
+
})[];
|
|
322
|
+
created_at: string;
|
|
323
|
+
updated_at: string;
|
|
324
|
+
id: string;
|
|
325
|
+
};
|
|
326
|
+
outputFormat: "json";
|
|
327
|
+
status: 200;
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
} & {
|
|
331
|
+
"/": {
|
|
332
|
+
$post: {
|
|
333
|
+
input: {
|
|
334
|
+
header: {
|
|
335
|
+
"tenant-id"?: string | undefined;
|
|
336
|
+
};
|
|
337
|
+
} & {
|
|
338
|
+
json: {
|
|
339
|
+
name: string;
|
|
340
|
+
actions?: ({
|
|
341
|
+
id: string;
|
|
342
|
+
type: "AUTH0";
|
|
343
|
+
action: "UPDATE_USER";
|
|
344
|
+
params: {
|
|
345
|
+
user_id: string;
|
|
346
|
+
changes: Record<string, any>;
|
|
347
|
+
connection_id?: string | undefined;
|
|
348
|
+
};
|
|
349
|
+
alias?: string | undefined;
|
|
350
|
+
allow_failure?: boolean | undefined;
|
|
351
|
+
mask_output?: boolean | undefined;
|
|
352
|
+
} | {
|
|
353
|
+
id: string;
|
|
354
|
+
type: "EMAIL";
|
|
355
|
+
action: "VERIFY_EMAIL";
|
|
356
|
+
params: {
|
|
357
|
+
email: string;
|
|
358
|
+
rules?: {
|
|
359
|
+
require_mx_record?: boolean | undefined;
|
|
360
|
+
block_aliases?: boolean | undefined;
|
|
361
|
+
block_free_emails?: boolean | undefined;
|
|
362
|
+
block_disposable_emails?: boolean | undefined;
|
|
363
|
+
blocklist?: string[] | undefined;
|
|
364
|
+
allowlist?: string[] | undefined;
|
|
365
|
+
} | undefined;
|
|
366
|
+
};
|
|
367
|
+
alias?: string | undefined;
|
|
368
|
+
allow_failure?: boolean | undefined;
|
|
369
|
+
mask_output?: boolean | undefined;
|
|
370
|
+
} | {
|
|
371
|
+
id: string;
|
|
372
|
+
type: "REDIRECT";
|
|
373
|
+
action: "REDIRECT_USER";
|
|
374
|
+
params: {
|
|
375
|
+
target: "custom" | "change-email" | "account";
|
|
376
|
+
custom_url?: string | undefined;
|
|
377
|
+
};
|
|
378
|
+
alias?: string | undefined;
|
|
379
|
+
allow_failure?: boolean | undefined;
|
|
380
|
+
mask_output?: boolean | undefined;
|
|
381
|
+
})[] | undefined;
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
output: {
|
|
385
|
+
name: string;
|
|
386
|
+
actions: ({
|
|
387
|
+
id: string;
|
|
388
|
+
type: "AUTH0";
|
|
389
|
+
action: "UPDATE_USER";
|
|
390
|
+
params: {
|
|
391
|
+
user_id: string;
|
|
392
|
+
changes: {
|
|
393
|
+
[x: string]: any;
|
|
394
|
+
};
|
|
395
|
+
connection_id?: string | undefined;
|
|
396
|
+
};
|
|
397
|
+
alias?: string | undefined;
|
|
398
|
+
allow_failure?: boolean | undefined;
|
|
399
|
+
mask_output?: boolean | undefined;
|
|
400
|
+
} | {
|
|
401
|
+
id: string;
|
|
402
|
+
type: "EMAIL";
|
|
403
|
+
action: "VERIFY_EMAIL";
|
|
404
|
+
params: {
|
|
405
|
+
email: string;
|
|
406
|
+
rules?: {
|
|
407
|
+
require_mx_record?: boolean | undefined;
|
|
408
|
+
block_aliases?: boolean | undefined;
|
|
409
|
+
block_free_emails?: boolean | undefined;
|
|
410
|
+
block_disposable_emails?: boolean | undefined;
|
|
411
|
+
blocklist?: string[] | undefined;
|
|
412
|
+
allowlist?: string[] | undefined;
|
|
413
|
+
} | undefined;
|
|
414
|
+
};
|
|
415
|
+
alias?: string | undefined;
|
|
416
|
+
allow_failure?: boolean | undefined;
|
|
417
|
+
mask_output?: boolean | undefined;
|
|
418
|
+
} | {
|
|
419
|
+
id: string;
|
|
420
|
+
type: "REDIRECT";
|
|
421
|
+
action: "REDIRECT_USER";
|
|
422
|
+
params: {
|
|
423
|
+
target: "custom" | "change-email" | "account";
|
|
424
|
+
custom_url?: string | undefined;
|
|
425
|
+
};
|
|
426
|
+
alias?: string | undefined;
|
|
427
|
+
allow_failure?: boolean | undefined;
|
|
428
|
+
mask_output?: boolean | undefined;
|
|
429
|
+
})[];
|
|
430
|
+
created_at: string;
|
|
431
|
+
updated_at: string;
|
|
432
|
+
id: string;
|
|
433
|
+
};
|
|
434
|
+
outputFormat: "json";
|
|
435
|
+
status: 201;
|
|
436
|
+
};
|
|
437
|
+
};
|
|
438
|
+
}, "/">;
|