├── .env.template ├── .github └── workflows │ ├── deploy-dev.yml │ ├── release.yml │ └── unit-tests.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── LICENSE ├── README.md ├── docs └── auth0-silent-auth.html ├── knip.ts ├── migrate ├── ReferenceMigrationProvider.ts ├── migrate.ts ├── migrations │ ├── 2022-12-11T09:17:35_init.ts │ ├── 2023-09-21T10:12:15_support-url.ts │ ├── 2023-10-26T06:57:21_updated_at.ts │ ├── 2023-10-26T08:14:09_log_table.ts │ ├── 2023-10-27T16:00:11_picture-length.ts │ ├── 2023-11-02T23:18:12_sessions.ts │ ├── 2023-11-07T23:18:12_passwords.ts │ ├── 2023-11-08T17:12:09_logs-table-new-fields.ts │ ├── 2023-11-16T14:27:00_passwords-table-password.ts │ ├── 2023-11-17T10:34:00_codes-fields.ts │ ├── 2023-11-19T20:53:00_univeral-login-session.ts │ ├── 2023-11-21T12:30:00_user-fields.ts │ ├── 2023-11-21T15:57:00_user-indexes.ts │ ├── 2023-11-23T17:44:00_profile-data-field.ts │ ├── 2023-12-08T15:59:00_user-linked-to-index.ts │ ├── 2023-12-21T15:05:00_user-locale.ts │ ├── 2023-12-26T10:58:00_signing-keys.ts │ ├── 2024-01-06T16:23:00_logs-fields.ts │ ├── 2024-01-10T23:19:00_connections-userinfo.ts │ ├── 2024-01-11T10:58:00_missing-fields.ts │ ├── 2024-01-17T10:51:00_session-deleted-at.ts │ ├── 2024-01-31T09:00:00_drop-logs-fields.ts │ ├── 2024-02-02T15:55:00_drop-users-fields.ts │ ├── 2024-02-02T16:55:00_logs-indexes.ts │ ├── 2024-02-05T18:35:00_log-desc-max-length.ts │ ├── 2024-02-08T12:45:00_logs-table-extra-fields.ts │ ├── 2024-02-13T11:25:00_users-table-name-index.ts │ ├── 2024-02-19T20:14:00_users-email-constrain.ts │ ├── 2024-03-11T12:45:00_increase-otp-state-length.ts │ ├── 2024-04-22T14:48:00_increase-ticket-state-length.ts │ ├── 2024-05-09T08:50:00_branding.ts │ ├── 2024-05-14T07:53:00_indexes_and_not_null.ts │ ├── 2024-05-16T10:45:00_vendor_id_in_universal_login_session.ts │ ├── 2024-05-23T15:53:00_auth0client_in_universal_login_session.ts │ ├── 2024-05-24T16:25:00_increase-universal-auth-state-length.ts │ ├── 2024-05-27T23:50:00_authentication_codes.ts │ ├── 2024-06-03T10:00:00_disable-sign-ups.ts │ ├── 2024-06-05T10:00:00_otp-ip-address.ts │ ├── 2024-06-19T10:00:00_increase-user-agent-length.ts │ └── index.ts ├── planetscale.ts └── sqlite.ts ├── package.json ├── postcss.config.js ├── renovate.json ├── scripts ├── build-tailwind-css.sh ├── cleanup.ts ├── create-mjml-templates.sh ├── create-token.ts ├── import-users.ts ├── init-sqlite.ts └── upload-users.js ├── src ├── adapters │ ├── interfaces │ │ ├── Applications.ts │ │ ├── AuthenticationCodes.ts │ │ ├── Branding.ts │ │ ├── Clients.ts │ │ ├── Codes.ts │ │ ├── Connections.ts │ │ ├── Domains.ts │ │ ├── Keys.ts │ │ ├── ListParams.ts │ │ ├── Logs.ts │ │ ├── Members.ts │ │ ├── OTP.ts │ │ ├── Passwords.ts │ │ ├── Sessions.ts │ │ ├── Tenants.ts │ │ ├── Tickets.ts │ │ ├── UniversalLoginSession.ts │ │ ├── Users.ts │ │ └── index.ts │ └── kysely │ │ ├── applications │ │ ├── create.ts │ │ ├── index.ts │ │ └── list.ts │ │ ├── authenticationCodes │ │ ├── create.ts │ │ ├── get.ts │ │ └── index.ts │ │ ├── branding │ │ ├── get.ts │ │ ├── index.ts │ │ └── set.ts │ │ ├── clients │ │ └── index.ts │ │ ├── codes │ │ ├── create.ts │ │ ├── index.ts │ │ └── list.ts │ │ ├── connections │ │ ├── create.ts │ │ ├── index.ts │ │ └── list.ts │ │ ├── domains │ │ ├── create.ts │ │ ├── index.ts │ │ └── list.ts │ │ ├── helpers │ │ ├── filter.ts │ │ └── remove-nulls.ts │ │ ├── index.ts │ │ ├── keys │ │ ├── create.ts │ │ ├── index.ts │ │ ├── list.ts │ │ └── revoke.ts │ │ ├── logs │ │ ├── create.ts │ │ ├── get.ts │ │ ├── index.ts │ │ └── list.ts │ │ ├── members │ │ ├── index.ts │ │ └── list.ts │ │ ├── otps │ │ ├── create.ts │ │ ├── index.ts │ │ ├── list.ts │ │ └── remove.ts │ │ ├── passwords │ │ ├── create.ts │ │ ├── index.ts │ │ ├── update.ts │ │ └── validate.ts │ │ ├── sessions │ │ ├── create.ts │ │ ├── get.ts │ │ ├── index.ts │ │ ├── remove.ts │ │ └── update.ts │ │ ├── tenants │ │ ├── createTenant.ts │ │ ├── getTenant.ts │ │ ├── index.ts │ │ ├── listTenants.ts │ │ ├── removeTenant.ts │ │ └── updateTenant.ts │ │ ├── tickets │ │ ├── create.ts │ │ ├── get.ts │ │ ├── index.ts │ │ └── remove.ts │ │ ├── universalLoginSessions │ │ ├── create.ts │ │ ├── get.ts │ │ ├── index.ts │ │ └── update.ts │ │ └── users │ │ ├── create.ts │ │ ├── get.ts │ │ ├── index.ts │ │ ├── list.ts │ │ ├── remove.ts │ │ ├── unlink.ts │ │ ├── update.ts │ │ └── user-to-identity.ts ├── app.ts ├── authentication-flows │ ├── index.ts │ ├── password.ts │ ├── passwordless.ts │ ├── silent.ts │ ├── social.tsx │ ├── ticket.ts │ └── universal.ts ├── bun.ts ├── components │ ├── AppLogo.tsx │ ├── Button.tsx │ ├── DisabledSubmitButton.tsx │ ├── EmailValidatedPage.tsx │ ├── EnterCodePage.tsx │ ├── EnterEmailPage.tsx │ ├── EnterPasswordPage.tsx │ ├── ErrorMessage.tsx │ ├── Footer.tsx │ ├── ForgotPasswordPage.tsx │ ├── Form.tsx │ ├── GoogleLogo.tsx │ ├── Icon.tsx │ ├── Layout.tsx │ ├── Message.tsx │ ├── ResetPasswordPage.tsx │ ├── SignUpPage.tsx │ ├── SocialButton.tsx │ ├── Spinner.tsx │ ├── UnverifiedEmailPage.tsx │ ├── UserNotFoundPage.tsx │ └── VippsLogo.tsx ├── constants.ts ├── controllers │ └── email.ts ├── email-templates │ ├── code-v2.mjml │ ├── link-v2.mjml │ ├── password-reset.mjml │ └── verify-email.mjml ├── handlers │ └── cleanup.ts ├── helpers │ ├── apply-token-response-new.ts │ ├── apply-token-response.ts │ ├── generate-auth-response.ts │ ├── pkce.ts │ └── silent-auth-cookie-new.ts ├── hooks │ ├── index.ts │ └── link-users.ts ├── locales │ ├── en │ │ └── default.json │ ├── it │ │ └── default.json │ ├── nb │ │ └── default.json │ ├── pl │ │ └── default.json │ └── sv │ │ └── default.json ├── localesLogin2 │ ├── en │ │ └── default.json │ ├── it │ │ └── default.json │ ├── nb │ │ └── default.json │ ├── pl │ │ └── default.json │ └── sv │ │ └── default.json ├── middlewares │ ├── authentication.ts │ ├── logger.ts │ └── register-component.ts ├── models │ ├── CustomError.ts │ └── DefaultSettings.ts ├── routes │ ├── management-api │ │ ├── applications.ts │ │ ├── branding.ts │ │ ├── connections.ts │ │ ├── domains.ts │ │ ├── keys.ts │ │ ├── logs.ts │ │ ├── tenants.ts │ │ ├── users-by-email.ts │ │ └── users.ts │ ├── oauth2-redirect.ts │ ├── oauth2 │ │ ├── authenticate.ts │ │ ├── authorize.ts │ │ ├── callback.ts │ │ ├── dbconnections.ts │ │ ├── logout.ts │ │ ├── passwordless.ts │ │ ├── token.ts │ │ ├── userinfo.ts │ │ └── well-known.ts │ ├── swagger-ui.ts │ └── tsx │ │ └── routes.tsx ├── server.ts ├── services │ ├── clients.ts │ ├── cookies.ts │ ├── datadog.ts │ ├── db.ts │ ├── email │ │ ├── EmailOptions.ts │ │ ├── index.ts │ │ ├── mailchannels.ts │ │ └── mailgun.ts │ ├── oauth2-client.ts │ ├── readme.md │ └── rsa-key.ts ├── styles │ ├── input.css │ └── tailwind.ts ├── templates │ ├── authIframe.ts │ └── email │ │ ├── code-v2.liquid │ │ ├── link-v2.liquid │ │ ├── password-reset.liquid │ │ ├── ts │ │ ├── code-v2.ts │ │ ├── index.ts │ │ ├── link-v2.ts │ │ ├── password-reset.ts │ │ └── verify-email.ts │ │ └── verify-email.liquid ├── token-grant-types │ ├── authorizationCodeGrant.ts │ ├── clientCredentialsGrant.ts │ ├── index.ts │ └── pkceAuthorizeCodeGrant.ts ├── tsoa-middlewares │ └── logger.ts ├── types │ ├── Application.ts │ ├── AuthParams.ts │ ├── AuthenticationCode.ts │ ├── BaseEntity.ts │ ├── Branding.ts │ ├── Client.ts │ ├── Code.ts │ ├── Connection.ts │ ├── Domain.ts │ ├── Env.ts │ ├── LoginState.ts │ ├── OTP.ts │ ├── Password.ts │ ├── Session.ts │ ├── SigningKey.ts │ ├── Ticket.ts │ ├── Token.ts │ ├── User.ts │ ├── Var.ts │ ├── auth0 │ │ ├── Identity.ts │ │ ├── LogsResponse.ts │ │ ├── Query.ts │ │ ├── Totals.ts │ │ ├── UserResponse.ts │ │ └── index.ts │ ├── index.ts │ ├── jwks.ts │ └── sql │ │ ├── AuthenticationCode.ts │ │ ├── Branding.ts │ │ ├── Code.ts │ │ ├── Log.ts │ │ ├── Member.ts │ │ ├── Migration.ts │ │ ├── OTP.ts │ │ ├── Password.ts │ │ ├── Session.ts │ │ ├── Tenant.ts │ │ ├── Ticket.ts │ │ ├── UniversalLoginSession.ts │ │ ├── User.ts │ │ ├── db.ts │ │ └── index.ts └── utils │ ├── authCookies.ts │ ├── clientLogos.ts │ ├── email.ts │ ├── fetchVendorSettings.ts │ ├── getCountAsInt.ts │ ├── getSendParamFromAuth0ClientHeader.ts │ ├── hash.ts │ ├── i18n.ts │ ├── instanceToJson.ts │ ├── jwt.ts │ ├── logs.ts │ ├── magicLink.ts │ ├── otp.ts │ ├── parse-jwt.ts │ ├── random-string.ts │ ├── rename-id.ts │ ├── sort.ts │ ├── stateEncode.ts │ ├── userIdGenerate.ts │ ├── userIdParse.ts │ ├── users.ts │ ├── validate-redirect-url.ts │ ├── validatePassword.ts │ └── wait-until.ts ├── static ├── fonts │ ├── Material-Design-Iconic-Font.woff2 │ ├── fontawesome-webfont.woff2 │ └── poppins │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Medium.ttf │ │ └── Poppins-Regular.ttf ├── images │ └── bg-01.webp └── stylesheets │ ├── font-awesome.min.css │ ├── main.css │ ├── material-design-iconic-font.min.css │ └── util.css ├── tailwind.config.js ├── tailwind.shared.config.js ├── test ├── fixtures │ ├── client.ts │ ├── context.ts │ ├── index.ts │ ├── oauth2Client.ts │ └── vendorSettings.ts ├── helpers │ └── generate-auth-tokens.spec.ts ├── integration │ ├── __image_snapshots__ │ │ ├── breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-1-snap.png │ │ ├── breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-2-snap.png │ │ ├── breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-with-social-signon-1-snap.png │ │ ├── connections-spec-ts-test-integration-connections-spec-ts-should-hide-password-entry-button-if-auth-2-not-specified-as-a-connection-1-snap.png │ │ ├── connections-spec-ts-test-integration-connections-spec-ts-should-hide-social-buttons-for-fokus-by-not-specifying-any-connection-1-snap.png │ │ └── connections-spec-ts-test-integration-connections-spec-ts-should-show-vipps-for-parcferme-as-entered-as-connection-1-snap.png │ ├── breakit-customizations.spec.ts │ ├── connections.spec.ts │ ├── flows │ │ ├── __image_snapshots__ │ │ │ ├── code-flow-spec-ts-test-integration-flows-code-flow-spec-ts-code-flow-should-create-new-user-when-email-does-not-exist-1-snap.png │ │ │ ├── magic-link-flow-spec-ts-test-integration-flows-magic-link-flow-spec-ts-magic-link-flow-should-log-in-using-the-sent-magic-link-when-is-a-new-sign-up-1-snap.png │ │ │ ├── password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-reject-non-matching-confirmation-password-1-snap.png │ │ │ ├── password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-reject-weak-passwords-1-snap.png │ │ │ ├── password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-1-snap.png │ │ │ ├── password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-2-snap.png │ │ │ ├── password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-3-snap.png │ │ │ └── password-spec-ts-test-integration-flows-password-spec-ts-password-flow-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-1-snap.png │ │ ├── code-flow.spec.ts │ │ ├── logout.spec.ts │ │ ├── magic-link-flow.spec.ts │ │ ├── password.spec.ts │ │ ├── silent-auth.spec.ts │ │ └── social.spec.ts │ ├── helpers │ │ ├── createTestUsers.ts │ │ ├── playwrightSnapshots.ts │ │ ├── silent-auth.ts │ │ ├── test-client.ts │ │ └── token.ts │ ├── jwks.spec.ts │ ├── keys.spec.ts │ ├── login │ │ ├── __image_snapshots__ │ │ │ ├── code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-create-new-user-when-email-does-not-exist-1-snap.png │ │ │ ├── code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-create-new-user-when-email-does-not-exist-2-snap.png │ │ │ ├── code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-reject-bad-code-1-snap.png │ │ │ ├── code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-send-a-code-email-if-auth-0-client-is-swift-1-snap.png │ │ │ ├── code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-send-a-code-email-if-auth-0-client-is-swift-2-snap.png │ │ │ ├── code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-snapshot-desktop-enter-code-form-1-snap.png │ │ │ ├── code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-snapshot-mobile-enter-code-form-1-snap.png │ │ │ ├── forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-not-send-a-forgot-password-email-for-a-non-existing-email-address-1-snap.png │ │ │ ├── forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-not-send-a-forgot-password-email-for-a-non-password-user-with-that-email-address-1-snap.png │ │ │ ├── forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-1-snap.png │ │ │ ├── forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-2-snap.png │ │ │ ├── forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-3-snap.png │ │ │ ├── forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-4-snap.png │ │ │ ├── forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-5-snap.png │ │ │ ├── login-hint-spec-ts-test-integration-login-login-hint-spec-ts-should-prefill-email-with-login-hint-if-passed-to-authorize-1-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-login-with-password-1-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-reject-bad-password-1-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-reject-non-existent-email-1-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-2-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-follow-the-email-validation-cta-to-login-again-and-continue-flow-1-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-1-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-2-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-3-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-4-snap.png │ │ │ ├── login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-resend-email-validation-email-after-attempted-login-on-unverified-account-1-snap.png │ │ │ ├── register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-register-a-new-user-with-password-1-snap.png │ │ │ ├── register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-register-a-new-user-with-password-2-snap.png │ │ │ ├── register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-reject-a-weak-password-1-snap.png │ │ │ ├── vendor-settings-spec-ts-test-integration-login-vendor-settings-spec-ts-vendor-settings-should-fallback-to-sesamy-styling-with-invalid-vendor-id-1-snap.png │ │ │ └── vendor-settings-spec-ts-test-integration-login-vendor-settings-spec-ts-vendor-settings-should-fallback-to-sesamy-styling-with-invalid-vendor-settings-response-1-snap.png │ │ ├── code-authorization.spec.ts │ │ ├── code-flow-liquidjs.spec.ts │ │ ├── cookie-selection.spec.ts │ │ ├── forgot-password.spec.ts │ │ ├── login-hint.spec.ts │ │ ├── login-password.spec.ts │ │ ├── register-password-user.spec.ts │ │ └── vendor-settings.spec.ts │ ├── management-api │ │ ├── applications.spec.ts │ │ ├── branding.spec.ts │ │ ├── connections.spec.ts │ │ ├── logs.spec.ts │ │ ├── tenants.spec.ts │ │ ├── users-by-email.spec.ts │ │ └── users.spec.ts │ ├── mockOauth2Client.ts │ ├── oauth │ │ ├── authenticate.spec.ts │ │ ├── authorize.spec.ts │ │ └── token.spec.ts │ ├── ping.spec.ts │ └── userinfo.spec.ts ├── jwt.spec.ts ├── services │ ├── email │ │ └── mailgun.spec.ts │ ├── getClient.spec.ts │ └── oauth2-client.spec.ts └── utils │ ├── clientLogos.spec.ts │ ├── jwt.spec.ts │ ├── parse-jwt.spec.ts │ ├── stateEncode.spec.ts │ ├── userIdGenerate.spec.ts │ ├── userIdParse.spec.ts │ ├── validate-redirect-url.spec.ts │ └── validatePassword.spec.ts ├── textfile2ts.js ├── tsconfig.json ├── vitest-setup.ts ├── vitest.config.ts ├── wrangler.toml └── yarn.lock /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/.env.template -------------------------------------------------------------------------------- /.github/workflows/deploy-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/.github/workflows/deploy-dev.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | 6 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/README.md -------------------------------------------------------------------------------- /docs/auth0-silent-auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/docs/auth0-silent-auth.html -------------------------------------------------------------------------------- /knip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/knip.ts -------------------------------------------------------------------------------- /migrate/ReferenceMigrationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/ReferenceMigrationProvider.ts -------------------------------------------------------------------------------- /migrate/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrate.ts -------------------------------------------------------------------------------- /migrate/migrations/2022-12-11T09:17:35_init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2022-12-11T09:17:35_init.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-09-21T10:12:15_support-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-09-21T10:12:15_support-url.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-10-26T06:57:21_updated_at.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-10-26T06:57:21_updated_at.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-10-26T08:14:09_log_table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-10-26T08:14:09_log_table.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-10-27T16:00:11_picture-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-10-27T16:00:11_picture-length.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-02T23:18:12_sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-02T23:18:12_sessions.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-07T23:18:12_passwords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-07T23:18:12_passwords.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-08T17:12:09_logs-table-new-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-08T17:12:09_logs-table-new-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-16T14:27:00_passwords-table-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-16T14:27:00_passwords-table-password.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-17T10:34:00_codes-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-17T10:34:00_codes-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-19T20:53:00_univeral-login-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-19T20:53:00_univeral-login-session.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-21T12:30:00_user-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-21T12:30:00_user-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-21T15:57:00_user-indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-21T15:57:00_user-indexes.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-11-23T17:44:00_profile-data-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-11-23T17:44:00_profile-data-field.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-12-08T15:59:00_user-linked-to-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-12-08T15:59:00_user-linked-to-index.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-12-21T15:05:00_user-locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-12-21T15:05:00_user-locale.ts -------------------------------------------------------------------------------- /migrate/migrations/2023-12-26T10:58:00_signing-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2023-12-26T10:58:00_signing-keys.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-01-06T16:23:00_logs-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-01-06T16:23:00_logs-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-01-10T23:19:00_connections-userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-01-10T23:19:00_connections-userinfo.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-01-11T10:58:00_missing-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-01-11T10:58:00_missing-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-01-17T10:51:00_session-deleted-at.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-01-17T10:51:00_session-deleted-at.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-01-31T09:00:00_drop-logs-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-01-31T09:00:00_drop-logs-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-02-02T15:55:00_drop-users-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-02-02T15:55:00_drop-users-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-02-02T16:55:00_logs-indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-02-02T16:55:00_logs-indexes.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-02-05T18:35:00_log-desc-max-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-02-05T18:35:00_log-desc-max-length.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-02-08T12:45:00_logs-table-extra-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-02-08T12:45:00_logs-table-extra-fields.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-02-13T11:25:00_users-table-name-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-02-13T11:25:00_users-table-name-index.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-02-19T20:14:00_users-email-constrain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-02-19T20:14:00_users-email-constrain.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-03-11T12:45:00_increase-otp-state-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-03-11T12:45:00_increase-otp-state-length.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-04-22T14:48:00_increase-ticket-state-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-04-22T14:48:00_increase-ticket-state-length.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-05-09T08:50:00_branding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-05-09T08:50:00_branding.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-05-14T07:53:00_indexes_and_not_null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-05-14T07:53:00_indexes_and_not_null.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-05-16T10:45:00_vendor_id_in_universal_login_session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-05-16T10:45:00_vendor_id_in_universal_login_session.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-05-23T15:53:00_auth0client_in_universal_login_session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-05-23T15:53:00_auth0client_in_universal_login_session.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-05-24T16:25:00_increase-universal-auth-state-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-05-24T16:25:00_increase-universal-auth-state-length.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-05-27T23:50:00_authentication_codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-05-27T23:50:00_authentication_codes.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-06-03T10:00:00_disable-sign-ups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-06-03T10:00:00_disable-sign-ups.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-06-05T10:00:00_otp-ip-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-06-05T10:00:00_otp-ip-address.ts -------------------------------------------------------------------------------- /migrate/migrations/2024-06-19T10:00:00_increase-user-agent-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/2024-06-19T10:00:00_increase-user-agent-length.ts -------------------------------------------------------------------------------- /migrate/migrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/migrations/index.ts -------------------------------------------------------------------------------- /migrate/planetscale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/planetscale.ts -------------------------------------------------------------------------------- /migrate/sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/migrate/sqlite.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/postcss.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/build-tailwind-css.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/scripts/build-tailwind-css.sh -------------------------------------------------------------------------------- /scripts/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/scripts/cleanup.ts -------------------------------------------------------------------------------- /scripts/create-mjml-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/scripts/create-mjml-templates.sh -------------------------------------------------------------------------------- /scripts/create-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/scripts/create-token.ts -------------------------------------------------------------------------------- /scripts/import-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/scripts/import-users.ts -------------------------------------------------------------------------------- /scripts/init-sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/scripts/init-sqlite.ts -------------------------------------------------------------------------------- /scripts/upload-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/scripts/upload-users.js -------------------------------------------------------------------------------- /src/adapters/interfaces/Applications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Applications.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/AuthenticationCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/AuthenticationCodes.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Branding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Branding.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Clients.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Codes.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Connections.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Domains.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Keys.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/ListParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/ListParams.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Logs.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Members.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/OTP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/OTP.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Passwords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Passwords.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Sessions.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Tenants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Tenants.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Tickets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Tickets.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/UniversalLoginSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/UniversalLoginSession.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/Users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/Users.ts -------------------------------------------------------------------------------- /src/adapters/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/interfaces/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/applications/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/applications/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/applications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/applications/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/applications/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/applications/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/authenticationCodes/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/authenticationCodes/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/authenticationCodes/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/authenticationCodes/get.ts -------------------------------------------------------------------------------- /src/adapters/kysely/authenticationCodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/authenticationCodes/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/branding/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/branding/get.ts -------------------------------------------------------------------------------- /src/adapters/kysely/branding/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/branding/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/branding/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/branding/set.ts -------------------------------------------------------------------------------- /src/adapters/kysely/clients/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/clients/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/codes/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/codes/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/codes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/codes/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/codes/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/codes/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/connections/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/connections/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/connections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/connections/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/connections/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/connections/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/domains/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/domains/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/domains/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/domains/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/domains/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/domains/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/helpers/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/helpers/filter.ts -------------------------------------------------------------------------------- /src/adapters/kysely/helpers/remove-nulls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/helpers/remove-nulls.ts -------------------------------------------------------------------------------- /src/adapters/kysely/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/keys/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/keys/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/keys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/keys/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/keys/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/keys/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/keys/revoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/keys/revoke.ts -------------------------------------------------------------------------------- /src/adapters/kysely/logs/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/logs/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/logs/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/logs/get.ts -------------------------------------------------------------------------------- /src/adapters/kysely/logs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/logs/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/logs/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/logs/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/members/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/members/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/members/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/members/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/otps/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/otps/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/otps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/otps/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/otps/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/otps/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/otps/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/otps/remove.ts -------------------------------------------------------------------------------- /src/adapters/kysely/passwords/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/passwords/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/passwords/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/passwords/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/passwords/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/passwords/update.ts -------------------------------------------------------------------------------- /src/adapters/kysely/passwords/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/passwords/validate.ts -------------------------------------------------------------------------------- /src/adapters/kysely/sessions/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/sessions/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/sessions/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/sessions/get.ts -------------------------------------------------------------------------------- /src/adapters/kysely/sessions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/sessions/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/sessions/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/sessions/remove.ts -------------------------------------------------------------------------------- /src/adapters/kysely/sessions/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/sessions/update.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tenants/createTenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tenants/createTenant.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tenants/getTenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tenants/getTenant.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tenants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tenants/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tenants/listTenants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tenants/listTenants.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tenants/removeTenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tenants/removeTenant.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tenants/updateTenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tenants/updateTenant.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tickets/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tickets/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tickets/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tickets/get.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tickets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tickets/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/tickets/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/tickets/remove.ts -------------------------------------------------------------------------------- /src/adapters/kysely/universalLoginSessions/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/universalLoginSessions/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/universalLoginSessions/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/universalLoginSessions/get.ts -------------------------------------------------------------------------------- /src/adapters/kysely/universalLoginSessions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/universalLoginSessions/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/universalLoginSessions/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/universalLoginSessions/update.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/create.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/get.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/index.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/list.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/remove.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/unlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/unlink.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/update.ts -------------------------------------------------------------------------------- /src/adapters/kysely/users/user-to-identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/adapters/kysely/users/user-to-identity.ts -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/authentication-flows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/authentication-flows/index.ts -------------------------------------------------------------------------------- /src/authentication-flows/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/authentication-flows/password.ts -------------------------------------------------------------------------------- /src/authentication-flows/passwordless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/authentication-flows/passwordless.ts -------------------------------------------------------------------------------- /src/authentication-flows/silent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/authentication-flows/silent.ts -------------------------------------------------------------------------------- /src/authentication-flows/social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/authentication-flows/social.tsx -------------------------------------------------------------------------------- /src/authentication-flows/ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/authentication-flows/ticket.ts -------------------------------------------------------------------------------- /src/authentication-flows/universal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/authentication-flows/universal.ts -------------------------------------------------------------------------------- /src/bun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/bun.ts -------------------------------------------------------------------------------- /src/components/AppLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/AppLogo.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/DisabledSubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/DisabledSubmitButton.tsx -------------------------------------------------------------------------------- /src/components/EmailValidatedPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/EmailValidatedPage.tsx -------------------------------------------------------------------------------- /src/components/EnterCodePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/EnterCodePage.tsx -------------------------------------------------------------------------------- /src/components/EnterEmailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/EnterEmailPage.tsx -------------------------------------------------------------------------------- /src/components/EnterPasswordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/EnterPasswordPage.tsx -------------------------------------------------------------------------------- /src/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/ForgotPasswordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/ForgotPasswordPage.tsx -------------------------------------------------------------------------------- /src/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/Form.tsx -------------------------------------------------------------------------------- /src/components/GoogleLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/GoogleLogo.tsx -------------------------------------------------------------------------------- /src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/Icon.tsx -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/Message.tsx -------------------------------------------------------------------------------- /src/components/ResetPasswordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/ResetPasswordPage.tsx -------------------------------------------------------------------------------- /src/components/SignUpPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/SignUpPage.tsx -------------------------------------------------------------------------------- /src/components/SocialButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/SocialButton.tsx -------------------------------------------------------------------------------- /src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/Spinner.tsx -------------------------------------------------------------------------------- /src/components/UnverifiedEmailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/UnverifiedEmailPage.tsx -------------------------------------------------------------------------------- /src/components/UserNotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/UserNotFoundPage.tsx -------------------------------------------------------------------------------- /src/components/VippsLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/components/VippsLogo.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/controllers/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/controllers/email.ts -------------------------------------------------------------------------------- /src/email-templates/code-v2.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/email-templates/code-v2.mjml -------------------------------------------------------------------------------- /src/email-templates/link-v2.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/email-templates/link-v2.mjml -------------------------------------------------------------------------------- /src/email-templates/password-reset.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/email-templates/password-reset.mjml -------------------------------------------------------------------------------- /src/email-templates/verify-email.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/email-templates/verify-email.mjml -------------------------------------------------------------------------------- /src/handlers/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/handlers/cleanup.ts -------------------------------------------------------------------------------- /src/helpers/apply-token-response-new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/helpers/apply-token-response-new.ts -------------------------------------------------------------------------------- /src/helpers/apply-token-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/helpers/apply-token-response.ts -------------------------------------------------------------------------------- /src/helpers/generate-auth-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/helpers/generate-auth-response.ts -------------------------------------------------------------------------------- /src/helpers/pkce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/helpers/pkce.ts -------------------------------------------------------------------------------- /src/helpers/silent-auth-cookie-new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/helpers/silent-auth-cookie-new.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/link-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/hooks/link-users.ts -------------------------------------------------------------------------------- /src/locales/en/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/locales/en/default.json -------------------------------------------------------------------------------- /src/locales/it/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/locales/it/default.json -------------------------------------------------------------------------------- /src/locales/nb/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/locales/nb/default.json -------------------------------------------------------------------------------- /src/locales/pl/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/locales/pl/default.json -------------------------------------------------------------------------------- /src/locales/sv/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/locales/sv/default.json -------------------------------------------------------------------------------- /src/localesLogin2/en/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/localesLogin2/en/default.json -------------------------------------------------------------------------------- /src/localesLogin2/it/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/localesLogin2/it/default.json -------------------------------------------------------------------------------- /src/localesLogin2/nb/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/localesLogin2/nb/default.json -------------------------------------------------------------------------------- /src/localesLogin2/pl/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/localesLogin2/pl/default.json -------------------------------------------------------------------------------- /src/localesLogin2/sv/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/localesLogin2/sv/default.json -------------------------------------------------------------------------------- /src/middlewares/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/middlewares/authentication.ts -------------------------------------------------------------------------------- /src/middlewares/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/middlewares/logger.ts -------------------------------------------------------------------------------- /src/middlewares/register-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/middlewares/register-component.ts -------------------------------------------------------------------------------- /src/models/CustomError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/models/CustomError.ts -------------------------------------------------------------------------------- /src/models/DefaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/models/DefaultSettings.ts -------------------------------------------------------------------------------- /src/routes/management-api/applications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/applications.ts -------------------------------------------------------------------------------- /src/routes/management-api/branding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/branding.ts -------------------------------------------------------------------------------- /src/routes/management-api/connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/connections.ts -------------------------------------------------------------------------------- /src/routes/management-api/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/domains.ts -------------------------------------------------------------------------------- /src/routes/management-api/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/keys.ts -------------------------------------------------------------------------------- /src/routes/management-api/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/logs.ts -------------------------------------------------------------------------------- /src/routes/management-api/tenants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/tenants.ts -------------------------------------------------------------------------------- /src/routes/management-api/users-by-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/users-by-email.ts -------------------------------------------------------------------------------- /src/routes/management-api/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/management-api/users.ts -------------------------------------------------------------------------------- /src/routes/oauth2-redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2-redirect.ts -------------------------------------------------------------------------------- /src/routes/oauth2/authenticate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/authenticate.ts -------------------------------------------------------------------------------- /src/routes/oauth2/authorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/authorize.ts -------------------------------------------------------------------------------- /src/routes/oauth2/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/callback.ts -------------------------------------------------------------------------------- /src/routes/oauth2/dbconnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/dbconnections.ts -------------------------------------------------------------------------------- /src/routes/oauth2/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/logout.ts -------------------------------------------------------------------------------- /src/routes/oauth2/passwordless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/passwordless.ts -------------------------------------------------------------------------------- /src/routes/oauth2/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/token.ts -------------------------------------------------------------------------------- /src/routes/oauth2/userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/userinfo.ts -------------------------------------------------------------------------------- /src/routes/oauth2/well-known.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/oauth2/well-known.ts -------------------------------------------------------------------------------- /src/routes/swagger-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/swagger-ui.ts -------------------------------------------------------------------------------- /src/routes/tsx/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/routes/tsx/routes.tsx -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/services/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/clients.ts -------------------------------------------------------------------------------- /src/services/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/cookies.ts -------------------------------------------------------------------------------- /src/services/datadog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/datadog.ts -------------------------------------------------------------------------------- /src/services/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/db.ts -------------------------------------------------------------------------------- /src/services/email/EmailOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/email/EmailOptions.ts -------------------------------------------------------------------------------- /src/services/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/email/index.ts -------------------------------------------------------------------------------- /src/services/email/mailchannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/email/mailchannels.ts -------------------------------------------------------------------------------- /src/services/email/mailgun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/email/mailgun.ts -------------------------------------------------------------------------------- /src/services/oauth2-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/oauth2-client.ts -------------------------------------------------------------------------------- /src/services/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/readme.md -------------------------------------------------------------------------------- /src/services/rsa-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/services/rsa-key.ts -------------------------------------------------------------------------------- /src/styles/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/styles/input.css -------------------------------------------------------------------------------- /src/styles/tailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/styles/tailwind.ts -------------------------------------------------------------------------------- /src/templates/authIframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/authIframe.ts -------------------------------------------------------------------------------- /src/templates/email/code-v2.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/code-v2.liquid -------------------------------------------------------------------------------- /src/templates/email/link-v2.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/link-v2.liquid -------------------------------------------------------------------------------- /src/templates/email/password-reset.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/password-reset.liquid -------------------------------------------------------------------------------- /src/templates/email/ts/code-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/ts/code-v2.ts -------------------------------------------------------------------------------- /src/templates/email/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/ts/index.ts -------------------------------------------------------------------------------- /src/templates/email/ts/link-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/ts/link-v2.ts -------------------------------------------------------------------------------- /src/templates/email/ts/password-reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/ts/password-reset.ts -------------------------------------------------------------------------------- /src/templates/email/ts/verify-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/ts/verify-email.ts -------------------------------------------------------------------------------- /src/templates/email/verify-email.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/templates/email/verify-email.liquid -------------------------------------------------------------------------------- /src/token-grant-types/authorizationCodeGrant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/token-grant-types/authorizationCodeGrant.ts -------------------------------------------------------------------------------- /src/token-grant-types/clientCredentialsGrant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/token-grant-types/clientCredentialsGrant.ts -------------------------------------------------------------------------------- /src/token-grant-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/token-grant-types/index.ts -------------------------------------------------------------------------------- /src/token-grant-types/pkceAuthorizeCodeGrant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/token-grant-types/pkceAuthorizeCodeGrant.ts -------------------------------------------------------------------------------- /src/tsoa-middlewares/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/tsoa-middlewares/logger.ts -------------------------------------------------------------------------------- /src/types/Application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Application.ts -------------------------------------------------------------------------------- /src/types/AuthParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/AuthParams.ts -------------------------------------------------------------------------------- /src/types/AuthenticationCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/AuthenticationCode.ts -------------------------------------------------------------------------------- /src/types/BaseEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/BaseEntity.ts -------------------------------------------------------------------------------- /src/types/Branding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Branding.ts -------------------------------------------------------------------------------- /src/types/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Client.ts -------------------------------------------------------------------------------- /src/types/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Code.ts -------------------------------------------------------------------------------- /src/types/Connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Connection.ts -------------------------------------------------------------------------------- /src/types/Domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Domain.ts -------------------------------------------------------------------------------- /src/types/Env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Env.ts -------------------------------------------------------------------------------- /src/types/LoginState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/LoginState.ts -------------------------------------------------------------------------------- /src/types/OTP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/OTP.ts -------------------------------------------------------------------------------- /src/types/Password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Password.ts -------------------------------------------------------------------------------- /src/types/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Session.ts -------------------------------------------------------------------------------- /src/types/SigningKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/SigningKey.ts -------------------------------------------------------------------------------- /src/types/Ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Ticket.ts -------------------------------------------------------------------------------- /src/types/Token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Token.ts -------------------------------------------------------------------------------- /src/types/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/User.ts -------------------------------------------------------------------------------- /src/types/Var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/Var.ts -------------------------------------------------------------------------------- /src/types/auth0/Identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/auth0/Identity.ts -------------------------------------------------------------------------------- /src/types/auth0/LogsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/auth0/LogsResponse.ts -------------------------------------------------------------------------------- /src/types/auth0/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/auth0/Query.ts -------------------------------------------------------------------------------- /src/types/auth0/Totals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/auth0/Totals.ts -------------------------------------------------------------------------------- /src/types/auth0/UserResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/auth0/UserResponse.ts -------------------------------------------------------------------------------- /src/types/auth0/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/auth0/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/jwks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/jwks.ts -------------------------------------------------------------------------------- /src/types/sql/AuthenticationCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/AuthenticationCode.ts -------------------------------------------------------------------------------- /src/types/sql/Branding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Branding.ts -------------------------------------------------------------------------------- /src/types/sql/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Code.ts -------------------------------------------------------------------------------- /src/types/sql/Log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Log.ts -------------------------------------------------------------------------------- /src/types/sql/Member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Member.ts -------------------------------------------------------------------------------- /src/types/sql/Migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Migration.ts -------------------------------------------------------------------------------- /src/types/sql/OTP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/OTP.ts -------------------------------------------------------------------------------- /src/types/sql/Password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Password.ts -------------------------------------------------------------------------------- /src/types/sql/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Session.ts -------------------------------------------------------------------------------- /src/types/sql/Tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Tenant.ts -------------------------------------------------------------------------------- /src/types/sql/Ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/Ticket.ts -------------------------------------------------------------------------------- /src/types/sql/UniversalLoginSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/UniversalLoginSession.ts -------------------------------------------------------------------------------- /src/types/sql/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/User.ts -------------------------------------------------------------------------------- /src/types/sql/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/db.ts -------------------------------------------------------------------------------- /src/types/sql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/types/sql/index.ts -------------------------------------------------------------------------------- /src/utils/authCookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/authCookies.ts -------------------------------------------------------------------------------- /src/utils/clientLogos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/clientLogos.ts -------------------------------------------------------------------------------- /src/utils/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/email.ts -------------------------------------------------------------------------------- /src/utils/fetchVendorSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/fetchVendorSettings.ts -------------------------------------------------------------------------------- /src/utils/getCountAsInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/getCountAsInt.ts -------------------------------------------------------------------------------- /src/utils/getSendParamFromAuth0ClientHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/getSendParamFromAuth0ClientHeader.ts -------------------------------------------------------------------------------- /src/utils/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/hash.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/instanceToJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/instanceToJson.ts -------------------------------------------------------------------------------- /src/utils/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/jwt.ts -------------------------------------------------------------------------------- /src/utils/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/logs.ts -------------------------------------------------------------------------------- /src/utils/magicLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/magicLink.ts -------------------------------------------------------------------------------- /src/utils/otp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/otp.ts -------------------------------------------------------------------------------- /src/utils/parse-jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/parse-jwt.ts -------------------------------------------------------------------------------- /src/utils/random-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/random-string.ts -------------------------------------------------------------------------------- /src/utils/rename-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/rename-id.ts -------------------------------------------------------------------------------- /src/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/sort.ts -------------------------------------------------------------------------------- /src/utils/stateEncode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/stateEncode.ts -------------------------------------------------------------------------------- /src/utils/userIdGenerate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/userIdGenerate.ts -------------------------------------------------------------------------------- /src/utils/userIdParse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/userIdParse.ts -------------------------------------------------------------------------------- /src/utils/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/users.ts -------------------------------------------------------------------------------- /src/utils/validate-redirect-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/validate-redirect-url.ts -------------------------------------------------------------------------------- /src/utils/validatePassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/validatePassword.ts -------------------------------------------------------------------------------- /src/utils/wait-until.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/src/utils/wait-until.ts -------------------------------------------------------------------------------- /static/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /static/images/bg-01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/images/bg-01.webp -------------------------------------------------------------------------------- /static/stylesheets/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/stylesheets/font-awesome.min.css -------------------------------------------------------------------------------- /static/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/stylesheets/main.css -------------------------------------------------------------------------------- /static/stylesheets/material-design-iconic-font.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/stylesheets/material-design-iconic-font.min.css -------------------------------------------------------------------------------- /static/stylesheets/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/static/stylesheets/util.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.shared.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/tailwind.shared.config.js -------------------------------------------------------------------------------- /test/fixtures/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/fixtures/client.ts -------------------------------------------------------------------------------- /test/fixtures/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/fixtures/context.ts -------------------------------------------------------------------------------- /test/fixtures/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./context"; 2 | -------------------------------------------------------------------------------- /test/fixtures/oauth2Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/fixtures/oauth2Client.ts -------------------------------------------------------------------------------- /test/fixtures/vendorSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/fixtures/vendorSettings.ts -------------------------------------------------------------------------------- /test/helpers/generate-auth-tokens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/helpers/generate-auth-tokens.spec.ts -------------------------------------------------------------------------------- /test/integration/__image_snapshots__/breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/__image_snapshots__/breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-1-snap.png -------------------------------------------------------------------------------- /test/integration/__image_snapshots__/breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/__image_snapshots__/breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-2-snap.png -------------------------------------------------------------------------------- /test/integration/__image_snapshots__/breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-with-social-signon-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/__image_snapshots__/breakit-customizations-spec-ts-test-integration-breakit-customizations-spec-ts-only-allows-existing-breakit-users-to-progress-to-the-enter-code-step-with-social-signon-1-snap.png -------------------------------------------------------------------------------- /test/integration/__image_snapshots__/connections-spec-ts-test-integration-connections-spec-ts-should-hide-password-entry-button-if-auth-2-not-specified-as-a-connection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/__image_snapshots__/connections-spec-ts-test-integration-connections-spec-ts-should-hide-password-entry-button-if-auth-2-not-specified-as-a-connection-1-snap.png -------------------------------------------------------------------------------- /test/integration/__image_snapshots__/connections-spec-ts-test-integration-connections-spec-ts-should-hide-social-buttons-for-fokus-by-not-specifying-any-connection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/__image_snapshots__/connections-spec-ts-test-integration-connections-spec-ts-should-hide-social-buttons-for-fokus-by-not-specifying-any-connection-1-snap.png -------------------------------------------------------------------------------- /test/integration/__image_snapshots__/connections-spec-ts-test-integration-connections-spec-ts-should-show-vipps-for-parcferme-as-entered-as-connection-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/__image_snapshots__/connections-spec-ts-test-integration-connections-spec-ts-should-show-vipps-for-parcferme-as-entered-as-connection-1-snap.png -------------------------------------------------------------------------------- /test/integration/breakit-customizations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/breakit-customizations.spec.ts -------------------------------------------------------------------------------- /test/integration/connections.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/connections.spec.ts -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/code-flow-spec-ts-test-integration-flows-code-flow-spec-ts-code-flow-should-create-new-user-when-email-does-not-exist-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/code-flow-spec-ts-test-integration-flows-code-flow-spec-ts-code-flow-should-create-new-user-when-email-does-not-exist-1-snap.png -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/magic-link-flow-spec-ts-test-integration-flows-magic-link-flow-spec-ts-magic-link-flow-should-log-in-using-the-sent-magic-link-when-is-a-new-sign-up-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/magic-link-flow-spec-ts-test-integration-flows-magic-link-flow-spec-ts-magic-link-flow-should-log-in-using-the-sent-magic-link-when-is-a-new-sign-up-1-snap.png -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-reject-non-matching-confirmation-password-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-reject-non-matching-confirmation-password-1-snap.png -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-reject-weak-passwords-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-reject-weak-passwords-1-snap.png -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-1-snap.png -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-2-snap.png -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-3-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-password-reset-should-send-password-reset-email-for-existing-user-and-allow-password-to-be-changed-3-snap.png -------------------------------------------------------------------------------- /test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/__image_snapshots__/password-spec-ts-test-integration-flows-password-spec-ts-password-flow-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-1-snap.png -------------------------------------------------------------------------------- /test/integration/flows/code-flow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/code-flow.spec.ts -------------------------------------------------------------------------------- /test/integration/flows/logout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/logout.spec.ts -------------------------------------------------------------------------------- /test/integration/flows/magic-link-flow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/magic-link-flow.spec.ts -------------------------------------------------------------------------------- /test/integration/flows/password.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/password.spec.ts -------------------------------------------------------------------------------- /test/integration/flows/silent-auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/silent-auth.spec.ts -------------------------------------------------------------------------------- /test/integration/flows/social.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/flows/social.spec.ts -------------------------------------------------------------------------------- /test/integration/helpers/createTestUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/helpers/createTestUsers.ts -------------------------------------------------------------------------------- /test/integration/helpers/playwrightSnapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/helpers/playwrightSnapshots.ts -------------------------------------------------------------------------------- /test/integration/helpers/silent-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/helpers/silent-auth.ts -------------------------------------------------------------------------------- /test/integration/helpers/test-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/helpers/test-client.ts -------------------------------------------------------------------------------- /test/integration/helpers/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/helpers/token.ts -------------------------------------------------------------------------------- /test/integration/jwks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/jwks.spec.ts -------------------------------------------------------------------------------- /test/integration/keys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/keys.spec.ts -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-create-new-user-when-email-does-not-exist-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-create-new-user-when-email-does-not-exist-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-create-new-user-when-email-does-not-exist-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-create-new-user-when-email-does-not-exist-2-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-reject-bad-code-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-reject-bad-code-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-send-a-code-email-if-auth-0-client-is-swift-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-send-a-code-email-if-auth-0-client-is-swift-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-send-a-code-email-if-auth-0-client-is-swift-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-should-send-a-code-email-if-auth-0-client-is-swift-2-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-snapshot-desktop-enter-code-form-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-snapshot-desktop-enter-code-form-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-snapshot-mobile-enter-code-form-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/code-flow-liquidjs-spec-ts-test-integration-login-code-flow-liquidjs-spec-ts-login-with-code-on-liquidjs-template-snapshot-mobile-enter-code-form-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-not-send-a-forgot-password-email-for-a-non-existing-email-address-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-not-send-a-forgot-password-email-for-a-non-existing-email-address-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-not-send-a-forgot-password-email-for-a-non-password-user-with-that-email-address-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-not-send-a-forgot-password-email-for-a-non-password-user-with-that-email-address-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-2-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-3-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-3-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-4-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-4-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-5-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/forgot-password-spec-ts-test-integration-login-forgot-password-spec-ts-forgot-password-should-send-forgot-password-email-5-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-hint-spec-ts-test-integration-login-login-hint-spec-ts-should-prefill-email-with-login-hint-if-passed-to-authorize-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-hint-spec-ts-test-integration-login-login-hint-spec-ts-should-prefill-email-with-login-hint-if-passed-to-authorize-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-login-with-password-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-login-with-password-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-reject-bad-password-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-reject-bad-password-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-reject-non-existent-email-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-login-with-password-user-should-reject-non-existent-email-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-2-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-follow-the-email-validation-cta-to-login-again-and-continue-flow-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-follow-the-email-validation-cta-to-login-again-and-continue-flow-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-2-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-3-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-3-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-4-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-create-a-new-user-with-a-password-and-only-allow-login-after-email-validation-4-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-resend-email-validation-email-after-attempted-login-on-unverified-account-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/login-password-spec-ts-test-integration-login-login-password-spec-ts-register-password-should-resend-email-validation-email-after-attempted-login-on-unverified-account-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-register-a-new-user-with-password-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-register-a-new-user-with-password-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-register-a-new-user-with-password-2-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-register-a-new-user-with-password-2-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-reject-a-weak-password-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/register-password-user-spec-ts-test-integration-login-register-password-user-spec-ts-register-password-user-should-reject-a-weak-password-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/vendor-settings-spec-ts-test-integration-login-vendor-settings-spec-ts-vendor-settings-should-fallback-to-sesamy-styling-with-invalid-vendor-id-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/vendor-settings-spec-ts-test-integration-login-vendor-settings-spec-ts-vendor-settings-should-fallback-to-sesamy-styling-with-invalid-vendor-id-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/__image_snapshots__/vendor-settings-spec-ts-test-integration-login-vendor-settings-spec-ts-vendor-settings-should-fallback-to-sesamy-styling-with-invalid-vendor-settings-response-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/__image_snapshots__/vendor-settings-spec-ts-test-integration-login-vendor-settings-spec-ts-vendor-settings-should-fallback-to-sesamy-styling-with-invalid-vendor-settings-response-1-snap.png -------------------------------------------------------------------------------- /test/integration/login/code-authorization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/code-authorization.spec.ts -------------------------------------------------------------------------------- /test/integration/login/code-flow-liquidjs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/code-flow-liquidjs.spec.ts -------------------------------------------------------------------------------- /test/integration/login/cookie-selection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/cookie-selection.spec.ts -------------------------------------------------------------------------------- /test/integration/login/forgot-password.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/forgot-password.spec.ts -------------------------------------------------------------------------------- /test/integration/login/login-hint.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/login-hint.spec.ts -------------------------------------------------------------------------------- /test/integration/login/login-password.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/login-password.spec.ts -------------------------------------------------------------------------------- /test/integration/login/register-password-user.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/register-password-user.spec.ts -------------------------------------------------------------------------------- /test/integration/login/vendor-settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/login/vendor-settings.spec.ts -------------------------------------------------------------------------------- /test/integration/management-api/applications.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/management-api/applications.spec.ts -------------------------------------------------------------------------------- /test/integration/management-api/branding.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/management-api/branding.spec.ts -------------------------------------------------------------------------------- /test/integration/management-api/connections.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/management-api/connections.spec.ts -------------------------------------------------------------------------------- /test/integration/management-api/logs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/management-api/logs.spec.ts -------------------------------------------------------------------------------- /test/integration/management-api/tenants.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/management-api/tenants.spec.ts -------------------------------------------------------------------------------- /test/integration/management-api/users-by-email.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/management-api/users-by-email.spec.ts -------------------------------------------------------------------------------- /test/integration/management-api/users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/management-api/users.spec.ts -------------------------------------------------------------------------------- /test/integration/mockOauth2Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/mockOauth2Client.ts -------------------------------------------------------------------------------- /test/integration/oauth/authenticate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/oauth/authenticate.spec.ts -------------------------------------------------------------------------------- /test/integration/oauth/authorize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/oauth/authorize.spec.ts -------------------------------------------------------------------------------- /test/integration/oauth/token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/oauth/token.spec.ts -------------------------------------------------------------------------------- /test/integration/ping.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/ping.spec.ts -------------------------------------------------------------------------------- /test/integration/userinfo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/integration/userinfo.spec.ts -------------------------------------------------------------------------------- /test/jwt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/jwt.spec.ts -------------------------------------------------------------------------------- /test/services/email/mailgun.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/services/email/mailgun.spec.ts -------------------------------------------------------------------------------- /test/services/getClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/services/getClient.spec.ts -------------------------------------------------------------------------------- /test/services/oauth2-client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/services/oauth2-client.spec.ts -------------------------------------------------------------------------------- /test/utils/clientLogos.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/clientLogos.spec.ts -------------------------------------------------------------------------------- /test/utils/jwt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/jwt.spec.ts -------------------------------------------------------------------------------- /test/utils/parse-jwt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/parse-jwt.spec.ts -------------------------------------------------------------------------------- /test/utils/stateEncode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/stateEncode.spec.ts -------------------------------------------------------------------------------- /test/utils/userIdGenerate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/userIdGenerate.spec.ts -------------------------------------------------------------------------------- /test/utils/userIdParse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/userIdParse.spec.ts -------------------------------------------------------------------------------- /test/utils/validate-redirect-url.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/validate-redirect-url.spec.ts -------------------------------------------------------------------------------- /test/utils/validatePassword.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/test/utils/validatePassword.spec.ts -------------------------------------------------------------------------------- /textfile2ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/textfile2ts.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/vitest-setup.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/wrangler.toml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authhero/auth/HEAD/yarn.lock --------------------------------------------------------------------------------