├── .babelrc ├── .circleci ├── config.yml ├── config_continue.yml ├── doTests.sh ├── generateConfig.sh ├── installJava.sh ├── markPassed.sh ├── markTesting.sh ├── publish.sh ├── setupAndTestWithFreeCore.sh └── updateDocsInWebsite.sh ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── helpers │ ├── .gitignore │ └── package.json └── workflows │ ├── auth-react-test-1.yml │ ├── auth-react-test-2.yml │ ├── chromatic.yml │ ├── github-actions-changelog.yml │ ├── lint-pr-title.yml │ ├── pipeline-dev-tag.yml │ ├── pipeline-release-tag.yml │ ├── pre-commit-hook-run.yml │ ├── size-limit.yml │ ├── test-examples.yml │ ├── tests.yml │ └── unit-tests.yml ├── .gitignore ├── .mocharc.yml ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.ts └── preview.ts ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── addDevTag ├── addReleaseTag ├── compose.yml ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── icons.css │ ├── icons.png │ ├── icons@2x.png │ ├── main.js │ ├── search.js │ ├── style.css │ ├── widgets.png │ └── widgets@2x.png ├── classes │ ├── dateProvider.DateProviderReference.html │ ├── index.default.html │ ├── recipe_authRecipe.default.html │ ├── recipe_emailpassword.default.html │ ├── recipe_emailverification.default.html │ ├── recipe_multifactorauth.default.html │ ├── recipe_multitenancy.default.html │ ├── recipe_oauth2provider.default.html │ ├── recipe_passwordless.default.html │ ├── recipe_recipeModule.default.html │ ├── recipe_session.BooleanClaim.html │ ├── recipe_session.PrimitiveArrayClaim.html │ ├── recipe_session.PrimitiveClaim.html │ ├── recipe_session.default.html │ ├── recipe_thirdparty.ActiveDirectory.html │ ├── recipe_thirdparty.Apple.html │ ├── recipe_thirdparty.Bitbucket.html │ ├── recipe_thirdparty.BoxySAML.html │ ├── recipe_thirdparty.Discord.html │ ├── recipe_thirdparty.Facebook.html │ ├── recipe_thirdparty.Github.html │ ├── recipe_thirdparty.Gitlab.html │ ├── recipe_thirdparty.Google.html │ ├── recipe_thirdparty.GoogleWorkspaces.html │ ├── recipe_thirdparty.LinkedIn.html │ ├── recipe_thirdparty.Okta.html │ ├── recipe_thirdparty.Twitter.html │ ├── recipe_thirdparty.default.html │ ├── recipe_totp.default.html │ ├── recipe_userroles.default.html │ └── recipe_webauthn.default.html ├── index.html ├── modules.html └── modules │ ├── dateProvider.html │ ├── index.html │ ├── recipe_authRecipe.html │ ├── recipe_emailpassword.html │ ├── recipe_emailverification.html │ ├── recipe_multifactorauth.html │ ├── recipe_multitenancy.html │ ├── recipe_oauth2provider.html │ ├── recipe_passwordless.html │ ├── recipe_recipeModule.html │ ├── recipe_session.html │ ├── recipe_thirdparty.html │ ├── recipe_totp.html │ ├── recipe_userroles.html │ └── recipe_webauthn.html ├── eslint ├── index.js └── package.json ├── examples ├── for-tests-nextjs │ ├── .env │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── actions │ │ │ ├── protectedAction.ts │ │ │ └── unprotectedAction.ts │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [...path] │ │ │ │ │ └── route.ts │ │ │ ├── update-core │ │ │ │ └── route.ts │ │ │ └── user │ │ │ │ └── route.ts │ │ ├── auth │ │ │ └── [[...path]] │ │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── home.tsx │ │ │ ├── protectedActionButton.tsx │ │ │ ├── sessionAuthForNextJS.tsx │ │ │ ├── signOutButton.tsx │ │ │ ├── supertokensProvider.tsx │ │ │ └── unprotectedActionButton.tsx │ │ ├── config │ │ │ ├── appInfo.ts │ │ │ ├── backend.ts │ │ │ ├── frontend.tsx │ │ │ └── ssr.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.module.css │ │ ├── page.tsx │ │ └── util.ts │ ├── assets │ │ ├── fonts │ │ │ └── MenloRegular.ttf │ │ └── images │ │ │ ├── arrow-right-icon.svg │ │ │ ├── background.png │ │ │ ├── blogs-icon.svg │ │ │ ├── celebrate-icon.svg │ │ │ ├── guide-icon.svg │ │ │ ├── index.ts │ │ │ ├── separator-line.svg │ │ │ └── sign-out-icon.svg │ ├── build-and-install.sh │ ├── middleware.ts │ ├── next.config.js │ ├── package.json │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ └── tsconfig.json ├── for-tests-react-16 │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── background.svg │ │ ├── favicon.ico │ │ ├── index.css │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ └── manifest.json │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── AppWithReactDomRouter.js │ │ ├── AppWithReactDomRouterV5.js │ │ ├── AppWithoutRouter.js │ │ ├── Button.js │ │ ├── ErrorBoundary.js │ │ ├── Footer.js │ │ ├── Themes │ │ ├── Dark.js │ │ ├── Helium.js │ │ └── Hydrogen.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logWithPrefix.js │ │ └── testContext.js ├── for-tests │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── background.svg │ │ ├── favicon.ico │ │ ├── index.css │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ └── manifest.json │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── AppWithReactDomRouter.js │ │ ├── AppWithoutRouter.js │ │ ├── Button.js │ │ ├── ErrorBoundary.js │ │ ├── Footer.js │ │ ├── OAuth2Page.js │ │ ├── Themes │ │ ├── Dark.js │ │ ├── Helium.js │ │ └── Hydrogen.js │ │ ├── config.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logWithPrefix.js │ │ └── testContext.js ├── with-account-linking │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── LinkingPage │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ └── useAsyncCallOnMount.ts │ │ └── tsconfig.json │ ├── package.json │ └── test │ │ └── basic.test.js ├── with-angular-thirdpartyemailpassword │ └── README.md ├── with-aws-lambda │ └── README.md ├── with-cli-login │ ├── .gitignore │ ├── README.md │ ├── api-server │ │ ├── index.ts │ │ └── tsconfig.json │ ├── cli.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── CallAPIView.tsx │ │ │ ├── Logout.tsx │ │ │ ├── SuccessView.tsx │ │ │ └── index.tsx │ │ ├── MagicLinkScreen │ │ │ └── index.tsx │ │ ├── SessionExpiredPopup │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-emailpassword-vercel │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api │ │ └── index.js │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Footer │ │ │ └── index.js │ │ ├── Home │ │ │ ├── CallAPIView.js │ │ │ ├── Logout.js │ │ │ ├── SuccessView.js │ │ │ └── index.js │ │ ├── SessionExpiredPopup │ │ │ └── index.jsx │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ ├── test │ │ └── basic.test.js │ └── vercel.json ├── with-emailpassword │ └── README.md ├── with-emailverification-then-password-thirdpartyemailpassword │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api-server.js │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── CustomSignUp │ │ │ └── index.js │ │ ├── Footer │ │ │ └── index.js │ │ ├── Home │ │ │ ├── CallAPIView.js │ │ │ ├── Logout.js │ │ │ ├── SuccessView.js │ │ │ └── index.js │ │ ├── SessionExpiredPopup │ │ │ └── index.js │ │ ├── SetPassword │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── realPasswordClaim.js │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ └── test │ │ └── basic.test.js ├── with-emailverification-with-otp │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── api-server │ │ └── server.ts │ ├── images │ │ └── emailverification-with-otp.png │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Home │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-hash-router │ ├── .gitignore │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ └── windowHandler.ts │ │ └── tsconfig.json │ ├── package.json │ └── test │ │ └── basic.test.js ├── with-hasura-thirdpartyemailpassword │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api-server.js │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Footer │ │ └── index.js │ │ ├── Home │ │ ├── CallAPIView.js │ │ ├── Logout.js │ │ ├── SuccessView.js │ │ └── index.js │ │ ├── SessionExpiredPopup │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── with-i18next │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api-server.js │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Footer │ │ │ └── index.js │ │ ├── Home │ │ │ ├── CallAPIView.js │ │ │ ├── Logout.js │ │ │ ├── SuccessView.js │ │ │ └── index.js │ │ ├── SessionExpiredPopup │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ └── test │ │ └── basic.test.js ├── with-legacy-2fa │ ├── .gitignore │ ├── README.md │ ├── api-server │ │ ├── index.ts │ │ ├── secondFactorClaim.ts │ │ └── tsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── CallAPIView.tsx │ │ │ ├── Logout.tsx │ │ │ ├── SuccessView.tsx │ │ │ └── index.tsx │ │ ├── SecondFactor │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── secondFactorClaim.tsx │ │ └── setupTests.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-localstorage │ ├── .gitignore │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── cookieHandler.ts │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ └── react-app-env.d.ts │ │ └── tsconfig.json │ ├── package.json │ └── test │ │ └── basic.test.js ├── with-multifactorauth-phone-chooser │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── SelectPhone │ │ │ │ ├── SelectPhone.css │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ └── useAsyncCallOnMount.ts │ │ └── tsconfig.json │ ├── package.json │ └── test │ │ └── basic.test.js ├── with-multifactorauth-recovery-codes │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── recoveryCodeExistsClaim.ts │ │ └── tsconfig.json │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── CreateRecoveryCode │ │ │ │ ├── CreateRecoveryCode.css │ │ │ │ └── index.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── RecoveryCode │ │ │ │ ├── RecoveryCode.css │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ ├── recoveryCodeExistsClaim.ts │ │ │ └── useAsyncCallOnMount.ts │ │ └── tsconfig.json │ ├── package.json │ └── test │ │ └── basic.test.js ├── with-multifactorauth │ └── README.md ├── with-multiple-email-sign-in │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api-server │ │ ├── .gitignore │ │ ├── emailLinkingMap.ts │ │ ├── epOverride.ts │ │ ├── evOverride.ts │ │ ├── index.ts │ │ └── tsconfig.json │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ ├── src │ │ ├── App.css │ │ ├── App.test.js │ │ ├── App.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── Logout.tsx │ │ │ ├── SuccessView.tsx │ │ │ └── index.tsx │ │ ├── SessionExpiredPopup │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-netlify │ ├── .env │ ├── .gitignore │ ├── .netlify │ │ └── edge-functions-import-map.json │ ├── README.md │ ├── config │ │ └── supertokensConfig.js │ ├── netlify.toml │ ├── netlify │ │ └── functions │ │ │ ├── auth.js │ │ │ └── user.js │ ├── package.json │ ├── public │ │ ├── _redirects │ │ ├── background.svg │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── server-local.js │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── CallAPIView.tsx │ │ │ ├── Logout.tsx │ │ │ ├── SuccessView.tsx │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-next-iframe │ ├── .gitignore │ ├── README.md │ ├── config │ │ ├── appInfo.js │ │ ├── backendConfig.js │ │ ├── cookieHandler.js │ │ ├── frontendConfig.js │ │ └── windowHandler.js │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [[...path]].js │ │ │ └── user.js │ │ ├── auth │ │ │ └── [[...path]].js │ │ ├── iframe.js │ │ └── index.js │ ├── public │ │ ├── favicon.ico │ │ └── vercel.svg │ └── styles │ │ ├── Home.module.css │ │ └── globals.css ├── with-next │ └── README.md ├── with-no-session-on-sign-up-thirdpartyemailpassword │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api-server │ │ └── index.js │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Footer │ │ │ └── index.js │ │ ├── Home │ │ │ ├── CallAPIView.js │ │ │ ├── Logout.js │ │ │ ├── SuccessView.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ └── test │ │ └── basic.test.js ├── with-okta-multi-tenant-pkce-flow │ ├── .gitignore │ ├── README.md │ ├── api-server │ │ ├── config.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── okta.go │ │ ├── override.go │ │ └── utils.go │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── index.css │ │ ├── index.tsx │ │ ├── routes │ │ │ ├── dashboard.tsx │ │ │ └── index.tsx │ │ └── setupTests.tsx │ └── tsconfig.json ├── with-one-login-many-subdomains │ ├── .gitignore │ ├── README.md │ ├── api-server.js │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── AuthPage.jsx │ │ │ ├── Footer │ │ │ └── index.js │ │ │ ├── Home │ │ │ ├── CallAPIView.js │ │ │ ├── Logout.js │ │ │ ├── SuccessView.js │ │ │ └── index.js │ │ │ ├── TenantSelector.jsx │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── logo.svg │ │ │ ├── reportWebVitals.js │ │ │ ├── setupTests.js │ │ │ └── utils.js │ ├── package.json │ ├── tenant-setup.mjs │ └── test_skipped │ │ └── basic.test.js ├── with-one-login-per-subdomain │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── api-server.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Footer │ │ │ └── index.js │ │ ├── Home │ │ │ ├── CallAPIView.js │ │ │ ├── Logout.js │ │ │ ├── SuccessView.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ └── utils.js │ ├── tenant-setup.mjs │ └── test │ │ └── basic.test.js ├── with-passwordless │ └── README.md ├── with-phone-password-mfa │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── api-server │ │ ├── index.ts │ │ └── tsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── CallAPIView.tsx │ │ │ ├── Logout.tsx │ │ │ ├── SuccessView.tsx │ │ │ └── index.tsx │ │ ├── SessionExpiredPopup │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-phone-password │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── api-server │ │ ├── index.ts │ │ ├── phoneVerifiedClaim.ts │ │ └── tsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── CallAPIView.tsx │ │ │ ├── Logout.tsx │ │ │ ├── SuccessView.tsx │ │ │ └── index.tsx │ │ ├── PhoneVerification │ │ │ ├── Footer.tsx │ │ │ └── index.tsx │ │ ├── SessionExpiredPopup │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── phoneVerifiedClaim.ts │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-remix │ └── README.md ├── with-sign-in-up-split-emailpassword │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api-server.js │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Footer │ │ │ └── index.js │ │ ├── Home │ │ │ ├── CallAPIView.js │ │ │ ├── Logout.js │ │ │ ├── SuccessView.js │ │ │ └── index.js │ │ ├── SessionExpiredPopup │ │ │ └── index.jsx │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ └── test │ │ └── basic.test.js ├── with-supabase │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── config │ │ ├── appInfo.ts │ │ ├── backendConfig.ts │ │ └── frontendConfig.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [[...path]].ts │ │ │ └── user.ts │ │ ├── auth │ │ │ └── [[...path]].tsx │ │ └── index.tsx │ ├── public │ │ ├── favicon.ico │ │ └── vercel.svg │ ├── styles │ │ ├── Home.module.css │ │ └── globals.css │ ├── tsconfig.json │ └── utils │ │ └── supabase.ts ├── with-svelte-react-thirdpartyemailpassword │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.png │ │ ├── global.css │ │ └── index.html │ ├── rollup.config.js │ ├── server.js │ ├── src │ │ ├── App.svelte │ │ ├── Navbar.svelte │ │ ├── global.d.ts │ │ └── main.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-thirdparty-2fa-passwordless │ └── README.md ├── with-thirdparty-google-onetap │ ├── .gitignore │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── google-one-tap │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ ├── useGoogleOneTapLogin.ts │ │ │ │ └── useScript.ts │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ └── react-app-env.d.ts │ │ └── tsconfig.json │ └── package.json ├── with-thirdparty-popup │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── frontend │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ └── react-app-env.d.ts │ │ └── tsconfig.json │ └── package.json ├── with-thirdparty │ └── README.md ├── with-thirdpartyemailpassword-2fa-passwordless │ └── README.md ├── with-thirdpartyemailpassword-passwordless │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── api-server │ │ ├── index.ts │ │ └── tsconfig.json │ ├── ignore_this.js │ ├── package.json │ ├── pm2.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts │ │ └── start_container.sh │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── CallAPIView.tsx │ │ │ ├── Logout.tsx │ │ │ ├── SuccessView.tsx │ │ │ └── index.tsx │ │ ├── SessionExpiredPopup │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ ├── test │ │ └── basic.test.js │ └── tsconfig.json ├── with-thirdpartyemailpassword │ └── README.md ├── with-thirdpartypasswordless-electron │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── api-server │ │ ├── index.js │ │ └── mailer.js │ ├── package.json │ ├── src │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── callAPIView.tsx │ │ │ ├── index.tsx │ │ │ ├── logout.tsx │ │ │ └── successView.tsx │ │ ├── SessionExpiredPopup │ │ │ └── index.tsx │ │ ├── cookieHandler.ts │ │ ├── index.css │ │ ├── index.html │ │ ├── index.ts │ │ ├── renderer.tsx │ │ └── windowHandler.ts │ ├── tsconfig.json │ ├── webpack.main.config.js │ ├── webpack.plugins.js │ ├── webpack.renderer.config.js │ └── webpack.rules.js ├── with-thirdpartypasswordless │ └── README.md ├── with-update-email-post-verification │ ├── README.md │ ├── backend │ │ ├── config.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── frontend │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Home │ │ │ │ ├── CallAPIView.tsx │ │ │ │ ├── Home.css │ │ │ │ ├── SuccessView.tsx │ │ │ │ └── index.tsx │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ └── MenloRegular.ttf │ │ │ │ └── images │ │ │ │ │ ├── arrow-right-icon.svg │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blogs-icon.svg │ │ │ │ │ ├── celebrate-icon.svg │ │ │ │ │ ├── guide-icon.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── separator-line.svg │ │ │ │ │ └── sign-out-icon.svg │ │ │ ├── config.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ └── react-app-env.d.ts │ │ └── tsconfig.json │ ├── package.json │ └── test │ │ └── basic.test.js └── with-vue-thirdpartyemailpassword │ └── README.md ├── frontendDriverInterfaceSupported.json ├── hooks ├── populate-hook-constants.sh └── pre-commit.sh ├── index.d.ts ├── index.js ├── init.sh ├── jest.config.js ├── lib ├── .eslintignore ├── .eslintrc.js ├── build │ ├── arrowLeftIcon.js │ ├── authCompWrapper.js │ ├── authRecipe-shared.js │ ├── authRecipe-shared2.js │ ├── claims │ │ ├── booleanClaim.d.ts │ │ ├── primitiveArrayClaim.d.ts │ │ └── primitiveClaim.d.ts │ ├── components │ │ ├── SuperTokensBranding.d.ts │ │ ├── assets │ │ │ ├── arrowLeftIcon.d.ts │ │ │ ├── arrowRightIcon.d.ts │ │ │ ├── blockedIcon.d.ts │ │ │ ├── checkedIcon.d.ts │ │ │ ├── checkedRoundIcon.d.ts │ │ │ ├── emailLargeIcon.d.ts │ │ │ ├── errorIcon.d.ts │ │ │ ├── errorLargeIcon.d.ts │ │ │ ├── errorRoundIcon.d.ts │ │ │ ├── fingerPrintIcon.d.ts │ │ │ ├── heavyArrowLeftIcon.d.ts │ │ │ ├── logoutIcon.d.ts │ │ │ ├── multipleDevicesIcon.d.ts │ │ │ ├── otpEmailIcon.d.ts │ │ │ ├── otpSMSIcon.d.ts │ │ │ ├── passkeyIcon.d.ts │ │ │ ├── recoverySuccessIcon.d.ts │ │ │ ├── securityIcon.d.ts │ │ │ ├── showPasswordIcon.d.ts │ │ │ ├── smsLargeIcon.d.ts │ │ │ ├── somethingWentWrongIcon.d.ts │ │ │ ├── spinnerIcon.d.ts │ │ │ └── totpIcon.d.ts │ │ ├── authCompWrapper.d.ts │ │ ├── componentOverride │ │ │ ├── componentOverride.d.ts │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── genericComponentOverrideContext.d.ts │ │ │ ├── useComponentOverride.d.ts │ │ │ └── withOverride.d.ts │ │ ├── featureWrapper.d.ts │ │ ├── routingComponent.d.ts │ │ ├── superTokensRoute.d.ts │ │ ├── superTokensRouteV6.d.ts │ │ └── supertokensWrapper.d.ts │ ├── constants.d.ts │ ├── constants.js │ ├── dateProvider │ │ ├── index.d.ts │ │ └── types.d.ts │ ├── emailLargeIcon.js │ ├── emailpassword-shared.js │ ├── emailpassword-shared2.js │ ├── emailpassword-shared3.js │ ├── emailpassword-shared4.js │ ├── emailpassword-shared5.js │ ├── emailpassword-shared6.js │ ├── emailpassword.js │ ├── emailpasswordprebuiltui.js │ ├── emailverification-shared.js │ ├── emailverification-shared2.js │ ├── emailverification.js │ ├── emailverificationprebuiltui.js │ ├── genericComponentOverrideContext.js │ ├── index.d.ts │ ├── index.js │ ├── index2.js │ ├── logger.d.ts │ ├── multifactorauth-shared.js │ ├── multifactorauth-shared2.js │ ├── multifactorauth-shared3.js │ ├── multifactorauth.js │ ├── multifactorauthprebuiltui.js │ ├── multitenancy-shared.js │ ├── multitenancy.js │ ├── nextjs │ │ ├── constants.d.ts │ │ ├── middleware.d.ts │ │ ├── ssr.d.ts │ │ ├── types.d.ts │ │ └── utils.d.ts │ ├── nextjsmiddleware.js │ ├── nextjsssr.js │ ├── oauth2provider-shared.js │ ├── oauth2provider-shared2.js │ ├── oauth2provider.js │ ├── oauth2providerprebuiltui.js │ ├── passwordless-shared.js │ ├── passwordless.js │ ├── passwordlessprebuiltui.js │ ├── recipe │ │ ├── authRecipe │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── feature │ │ │ │ │ └── authPage │ │ │ │ │ │ └── authPage.d.ts │ │ │ │ └── theme │ │ │ │ │ ├── authPage │ │ │ │ │ ├── authPageComponentList.d.ts │ │ │ │ │ ├── authPageFooter.d.ts │ │ │ │ │ ├── authPageHeader.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ │ └── themeBase.d.ts │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── emailpassword │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── resetPasswordUsingToken │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── signin │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ └── signup │ │ │ │ │ │ └── index.d.ts │ │ │ │ ├── library │ │ │ │ │ ├── backButton.d.ts │ │ │ │ │ ├── backToSignInButton.d.ts │ │ │ │ │ ├── button.d.ts │ │ │ │ │ ├── formBase.d.ts │ │ │ │ │ ├── formRow.d.ts │ │ │ │ │ ├── generalError.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── input.d.ts │ │ │ │ │ ├── inputError.d.ts │ │ │ │ │ └── label.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── resetPasswordUsingToken │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── resetPasswordEmail.d.ts │ │ │ │ │ └── submitNewPassword.d.ts │ │ │ │ │ ├── signIn │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── signUp │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── themeBase.d.ts │ │ │ │ │ └── translations.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ ├── utils.d.ts │ │ │ └── validators.d.ts │ │ ├── emailverification │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── emailVerification │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── emailVerification │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── sendVerifyEmail.d.ts │ │ │ │ │ └── verifyEmailLinkClicked.d.ts │ │ │ │ │ └── translations.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── emailVerificationClaim.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── multifactorauth │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── factorChooser │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── factorChooser │ │ │ │ │ ├── factorChooserFooter.d.ts │ │ │ │ │ ├── factorChooserHeader.d.ts │ │ │ │ │ ├── factorList.d.ts │ │ │ │ │ ├── factorOption.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── themeBase.d.ts │ │ │ │ │ └── translations.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── multiFactorAuthClaim.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── multitenancy │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── dynamicLoginMethodsSpinner │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── dynamicLoginMethodsSpinner │ │ │ │ │ └── index.d.ts │ │ │ │ │ └── themeBase.d.ts │ │ │ ├── dynamicLoginMethodsContext.d.ts │ │ │ ├── index.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── oauth2provider │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── oauth2LogoutScreen │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ └── tryRefreshPage │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── oauth2LogoutScreen │ │ │ │ │ ├── OAuth2LogoutScreenInner.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── themeBase.d.ts │ │ │ │ │ └── translations.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── passwordless │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── continueWithPasswordless │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── linkClickedScreen │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── linkSent │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── mfa │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── signInAndUp │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── signInAndUpEPCombo │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ └── userInputCode │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── continueWithPasswordless │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── linkClickedScreen │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── linkSent │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── mfa │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── loadingScreen.d.ts │ │ │ │ │ ├── mfaFooter.d.ts │ │ │ │ │ ├── mfaHeader.d.ts │ │ │ │ │ ├── mfaOTPFooter.d.ts │ │ │ │ │ └── mfaOTPHeader.d.ts │ │ │ │ │ ├── signInUp │ │ │ │ │ ├── emailForm.d.ts │ │ │ │ │ ├── emailOrPhoneForm.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── phoneForm.d.ts │ │ │ │ │ ├── phoneNumberInput.d.ts │ │ │ │ │ └── resendButton.d.ts │ │ │ │ │ ├── signInUpEPCombo │ │ │ │ │ ├── continueWithPasswordlessFooter.d.ts │ │ │ │ │ ├── emailForm.d.ts │ │ │ │ │ ├── emailOrPhoneForm.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── themeBase.d.ts │ │ │ │ │ ├── translations.d.ts │ │ │ │ │ └── userInputCodeForm │ │ │ │ │ ├── userInputCodeFormFooter.d.ts │ │ │ │ │ ├── userInputCodeFormHeader.d.ts │ │ │ │ │ └── userInputCodeFormScreen.d.ts │ │ │ ├── defaultPhoneNumberValidator.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── phoneNumberUtils.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ ├── utils.d.ts │ │ │ └── validators.d.ts │ │ ├── recipeModule │ │ │ ├── baseRecipeModule.d.ts │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── recipeRouter │ │ │ └── index.d.ts │ │ ├── session │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── accessDeniedScreen │ │ │ │ │ │ └── index.d.ts │ │ │ │ ├── library │ │ │ │ │ ├── backButton.d.ts │ │ │ │ │ └── logoutButton.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── accessDeniedScreenTheme │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── themeBase.d.ts │ │ │ │ │ └── translations.d.ts │ │ │ ├── index.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── sessionAuth.d.ts │ │ │ ├── sessionContext.d.ts │ │ │ ├── types.d.ts │ │ │ ├── useClaimValue.d.ts │ │ │ ├── useSessionContext.d.ts │ │ │ └── utils.d.ts │ │ ├── thirdparty │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── signInAndUp │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ └── signInAndUpCallback │ │ │ │ │ │ └── index.d.ts │ │ │ │ ├── library │ │ │ │ │ └── providerButton.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── signInAndUp │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── providersForm.d.ts │ │ │ │ │ ├── signInAndUpCallback │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── themeBase.d.ts │ │ │ │ │ └── translations.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── providers │ │ │ │ ├── activeDirectory.d.ts │ │ │ │ ├── apple.d.ts │ │ │ │ ├── bitbucket.d.ts │ │ │ │ ├── boxySaml.d.ts │ │ │ │ ├── custom.d.ts │ │ │ │ ├── discord.d.ts │ │ │ │ ├── facebook.d.ts │ │ │ │ ├── github.d.ts │ │ │ │ ├── gitlab.d.ts │ │ │ │ ├── google.d.ts │ │ │ │ ├── googleWorkspaces.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── linkedIn.d.ts │ │ │ │ ├── okta.d.ts │ │ │ │ ├── twitter.d.ts │ │ │ │ └── types.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── totp │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── mfa │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── themes │ │ │ │ │ ├── mfa │ │ │ │ │ ├── blockedScreen.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── loadingScreen.d.ts │ │ │ │ │ ├── retryButton.d.ts │ │ │ │ │ ├── totpCodeForm.d.ts │ │ │ │ │ ├── totpCodeVerificationFooter.d.ts │ │ │ │ │ ├── totpCodeVerificationHeader.d.ts │ │ │ │ │ ├── totpDeviceInfoSection.d.ts │ │ │ │ │ ├── totpDeviceSetupFooter.d.ts │ │ │ │ │ └── totpDeviceSetupHeader.d.ts │ │ │ │ │ ├── themeBase.d.ts │ │ │ │ │ └── translations.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ │ ├── userroles │ │ │ └── index.d.ts │ │ └── webauthn │ │ │ ├── componentOverrideContext.d.ts │ │ │ ├── components │ │ │ ├── features │ │ │ │ ├── mfa │ │ │ │ │ └── index.d.ts │ │ │ │ ├── recoverAccountWithToken │ │ │ │ │ └── index.d.ts │ │ │ │ ├── sendRecoveryEmail │ │ │ │ │ └── index.d.ts │ │ │ │ ├── signIn │ │ │ │ │ └── index.d.ts │ │ │ │ └── signUp │ │ │ │ │ └── index.d.ts │ │ │ └── themes │ │ │ │ ├── continueWithPasskey │ │ │ │ └── index.d.ts │ │ │ │ ├── error │ │ │ │ └── passkeyNotSupportedError.d.ts │ │ │ │ ├── mfa │ │ │ │ ├── index.d.ts │ │ │ │ ├── mfaFooter.d.ts │ │ │ │ ├── mfaLoadingScreen.d.ts │ │ │ │ ├── mfaSignIn.d.ts │ │ │ │ ├── mfaSignUp.d.ts │ │ │ │ └── mfaSignUpConfirmation.d.ts │ │ │ │ ├── recoverAccountWithToken │ │ │ │ ├── index.d.ts │ │ │ │ └── success.d.ts │ │ │ │ ├── sendRecoveryEmail │ │ │ │ ├── emailSent.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── recoverAccountForm.d.ts │ │ │ │ ├── signIn │ │ │ │ └── index.d.ts │ │ │ │ ├── signUp │ │ │ │ ├── confirmation.d.ts │ │ │ │ ├── continueWithoutPasskey.d.ts │ │ │ │ ├── featureBlocks.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── signUpForm.d.ts │ │ │ │ └── somethingWentWrong.d.ts │ │ │ │ ├── themeBase.d.ts │ │ │ │ └── translations.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── functionOverrides.d.ts │ │ │ ├── index.d.ts │ │ │ ├── prebuiltui.d.ts │ │ │ ├── recipe.d.ts │ │ │ ├── types.d.ts │ │ │ └── utils.d.ts │ ├── recipeModule-shared.js │ ├── session-shared.js │ ├── session.js │ ├── sessionprebuiltui.js │ ├── superTokens.d.ts │ ├── superTokens.js │ ├── thirdparty-shared.js │ ├── thirdparty.js │ ├── thirdpartyprebuiltui.js │ ├── totp-shared.js │ ├── totp.js │ ├── totpprebuiltui.js │ ├── translation │ │ ├── translationContext.d.ts │ │ ├── translationHelpers.d.ts │ │ └── translations.d.ts │ ├── translationContext.js │ ├── types.d.ts │ ├── ui-entry.js │ ├── ui │ │ ├── index.d.ts │ │ └── types.d.ts │ ├── usercontext │ │ ├── index.d.ts │ │ └── userContextWrapper.d.ts │ ├── userroles.js │ ├── utils.d.ts │ ├── utils.js │ ├── utils2.js │ ├── version.d.ts │ ├── versionChecker.d.ts │ ├── webauthn-shared.js │ ├── webauthn.js │ └── webauthnprebuiltui.js ├── ts │ ├── claims │ │ ├── booleanClaim.ts │ │ ├── primitiveArrayClaim.ts │ │ └── primitiveClaim.ts │ ├── components │ │ ├── SuperTokensBranding.tsx │ │ ├── assets │ │ │ ├── arrowLeftIcon.tsx │ │ │ ├── arrowRightIcon.tsx │ │ │ ├── blockedIcon.tsx │ │ │ ├── checkedIcon.tsx │ │ │ ├── checkedRoundIcon.tsx │ │ │ ├── emailLargeIcon.tsx │ │ │ ├── errorIcon.tsx │ │ │ ├── errorLargeIcon.tsx │ │ │ ├── errorRoundIcon.tsx │ │ │ ├── fingerPrintIcon.tsx │ │ │ ├── heavyArrowLeftIcon.tsx │ │ │ ├── logoutIcon.tsx │ │ │ ├── multipleDevicesIcon.tsx │ │ │ ├── otpEmailIcon.tsx │ │ │ ├── otpSMSIcon.tsx │ │ │ ├── passkeyIcon.tsx │ │ │ ├── recoverySuccessIcon.tsx │ │ │ ├── securityIcon.tsx │ │ │ ├── showPasswordIcon.tsx │ │ │ ├── smsLargeIcon.tsx │ │ │ ├── somethingWentWrongIcon.tsx │ │ │ ├── spinnerIcon.tsx │ │ │ └── totpIcon.tsx │ │ ├── authCompWrapper.tsx │ │ ├── componentOverride │ │ │ ├── componentOverride.ts │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── genericComponentOverrideContext.tsx │ │ │ ├── useComponentOverride.ts │ │ │ └── withOverride.tsx │ │ ├── featureWrapper.tsx │ │ ├── routingComponent.tsx │ │ ├── superTokensRoute.tsx │ │ ├── superTokensRouteV6.tsx │ │ └── supertokensWrapper.tsx │ ├── constants.ts │ ├── css.d.ts │ ├── dateProvider │ │ ├── index.ts │ │ └── types.ts │ ├── index.ts │ ├── logger.ts │ ├── nextjs │ │ ├── constants.ts │ │ ├── middleware.ts │ │ ├── ssr.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── react-dom.d.ts │ ├── recipe │ │ ├── authRecipe │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── feature │ │ │ │ │ └── authPage │ │ │ │ │ │ └── authPage.tsx │ │ │ │ └── theme │ │ │ │ │ ├── authPage │ │ │ │ │ ├── authPageComponentList.tsx │ │ │ │ │ ├── authPageFooter.tsx │ │ │ │ │ ├── authPageHeader.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ └── themeBase.tsx │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── emailpassword │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── resetPasswordUsingToken │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── signin │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── signup │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── library │ │ │ │ │ ├── backButton.tsx │ │ │ │ │ ├── backToSignInButton.tsx │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── formBase.tsx │ │ │ │ │ ├── formRow.tsx │ │ │ │ │ ├── generalError.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── input.tsx │ │ │ │ │ ├── inputError.tsx │ │ │ │ │ └── label.tsx │ │ │ │ └── themes │ │ │ │ │ ├── resetPasswordUsingToken │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── resetPasswordEmail.tsx │ │ │ │ │ └── submitNewPassword.tsx │ │ │ │ │ ├── signIn │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── signUp │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── themeBase.tsx │ │ │ │ │ └── translations.ts │ │ │ ├── constants.ts │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.tsx │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── validators.ts │ │ ├── emailverification │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── emailVerification │ │ │ │ │ │ └── index.tsx │ │ │ │ └── themes │ │ │ │ │ ├── emailVerification │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── sendVerifyEmail.tsx │ │ │ │ │ └── verifyEmailLinkClicked.tsx │ │ │ │ │ └── translations.ts │ │ │ ├── constants.ts │ │ │ ├── emailVerificationClaim.ts │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── multifactorauth │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── factorChooser │ │ │ │ │ │ └── index.tsx │ │ │ │ └── themes │ │ │ │ │ ├── factorChooser │ │ │ │ │ ├── factorChooserFooter.tsx │ │ │ │ │ ├── factorChooserHeader.tsx │ │ │ │ │ ├── factorList.tsx │ │ │ │ │ ├── factorOption.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── themeBase.tsx │ │ │ │ │ └── translations.ts │ │ │ ├── constants.ts │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── multiFactorAuthClaim.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── multitenancy │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── dynamicLoginMethodsSpinner │ │ │ │ │ │ └── index.tsx │ │ │ │ └── themes │ │ │ │ │ ├── dynamicLoginMethodsSpinner │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ └── themeBase.tsx │ │ │ ├── dynamicLoginMethodsContext.tsx │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── oauth2provider │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── oauth2LogoutScreen │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tryRefreshPage │ │ │ │ │ │ └── index.tsx │ │ │ │ └── themes │ │ │ │ │ ├── oauth2LogoutScreen │ │ │ │ │ ├── OAuth2LogoutScreenInner.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── themeBase.tsx │ │ │ │ │ └── translations.ts │ │ │ ├── constants.ts │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── passwordless │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── continueWithPasswordless │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── linkClickedScreen │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── linkSent │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── mfa │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── signInAndUp │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── signInAndUpEPCombo │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── userInputCode │ │ │ │ │ │ └── index.tsx │ │ │ │ └── themes │ │ │ │ │ ├── continueWithPasswordless │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── linkClickedScreen │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── linkSent │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── mfa │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── loadingScreen.tsx │ │ │ │ │ ├── mfaFooter.tsx │ │ │ │ │ ├── mfaHeader.tsx │ │ │ │ │ ├── mfaOTPFooter.tsx │ │ │ │ │ └── mfaOTPHeader.tsx │ │ │ │ │ ├── signInUp │ │ │ │ │ ├── emailForm.tsx │ │ │ │ │ ├── emailOrPhoneForm.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── phoneForm.tsx │ │ │ │ │ ├── phoneNumberInput.tsx │ │ │ │ │ └── resendButton.tsx │ │ │ │ │ ├── signInUpEPCombo │ │ │ │ │ ├── continueWithPasswordlessFooter.tsx │ │ │ │ │ ├── emailForm.tsx │ │ │ │ │ ├── emailOrPhoneForm.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── themeBase.tsx │ │ │ │ │ ├── translations.ts │ │ │ │ │ └── userInputCodeForm │ │ │ │ │ ├── userInputCodeFormFooter.tsx │ │ │ │ │ ├── userInputCodeFormHeader.tsx │ │ │ │ │ └── userInputCodeFormScreen.tsx │ │ │ ├── defaultPhoneNumberValidator.ts │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── phoneNumberUtils.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.tsx │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── validators.ts │ │ ├── recipeModule │ │ │ ├── baseRecipeModule.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── recipeRouter │ │ │ └── index.tsx │ │ ├── session │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── accessDeniedScreen │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── library │ │ │ │ │ ├── backButton.tsx │ │ │ │ │ └── logoutButton.tsx │ │ │ │ └── themes │ │ │ │ │ ├── accessDeniedScreenTheme │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── themeBase.tsx │ │ │ │ │ └── translations.ts │ │ │ ├── index.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.tsx │ │ │ ├── sessionAuth.tsx │ │ │ ├── sessionContext.ts │ │ │ ├── types.ts │ │ │ ├── useClaimValue.ts │ │ │ ├── useSessionContext.ts │ │ │ └── utils.ts │ │ ├── thirdparty │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ ├── signInAndUp │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── signInAndUpCallback │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── library │ │ │ │ │ └── providerButton.tsx │ │ │ │ └── themes │ │ │ │ │ ├── signInAndUp │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── providersForm.tsx │ │ │ │ │ ├── signInAndUpCallback │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── themeBase.tsx │ │ │ │ │ └── translations.ts │ │ │ ├── constants.tsx │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── providers │ │ │ │ ├── activeDirectory.tsx │ │ │ │ ├── apple.tsx │ │ │ │ ├── bitbucket.tsx │ │ │ │ ├── boxySaml.tsx │ │ │ │ ├── custom.tsx │ │ │ │ ├── discord.tsx │ │ │ │ ├── facebook.tsx │ │ │ │ ├── github.tsx │ │ │ │ ├── gitlab.tsx │ │ │ │ ├── google.tsx │ │ │ │ ├── googleWorkspaces.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── linkedIn.tsx │ │ │ │ ├── okta.tsx │ │ │ │ ├── twitter.tsx │ │ │ │ └── types.ts │ │ │ ├── recipe.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── totp │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ │ ├── features │ │ │ │ │ └── mfa │ │ │ │ │ │ └── index.tsx │ │ │ │ └── themes │ │ │ │ │ ├── mfa │ │ │ │ │ ├── blockedScreen.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── loadingScreen.tsx │ │ │ │ │ ├── retryButton.tsx │ │ │ │ │ ├── totpCodeForm.tsx │ │ │ │ │ ├── totpCodeVerificationFooter.tsx │ │ │ │ │ ├── totpCodeVerificationHeader.tsx │ │ │ │ │ ├── totpDeviceInfoSection.tsx │ │ │ │ │ ├── totpDeviceSetupFooter.tsx │ │ │ │ │ └── totpDeviceSetupHeader.tsx │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── themeBase.tsx │ │ │ │ │ └── translations.ts │ │ │ ├── constants.ts │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── userroles │ │ │ └── index.ts │ │ └── webauthn │ │ │ ├── componentOverrideContext.tsx │ │ │ ├── components │ │ │ ├── features │ │ │ │ ├── mfa │ │ │ │ │ └── index.tsx │ │ │ │ ├── recoverAccountWithToken │ │ │ │ │ └── index.tsx │ │ │ │ ├── sendRecoveryEmail │ │ │ │ │ └── index.tsx │ │ │ │ ├── signIn │ │ │ │ │ └── index.tsx │ │ │ │ └── signUp │ │ │ │ │ └── index.tsx │ │ │ └── themes │ │ │ │ ├── continueWithPasskey │ │ │ │ └── index.tsx │ │ │ │ ├── error │ │ │ │ └── passkeyNotSupportedError.tsx │ │ │ │ ├── mfa │ │ │ │ ├── index.tsx │ │ │ │ ├── mfaFooter.tsx │ │ │ │ ├── mfaLoadingScreen.tsx │ │ │ │ ├── mfaSignIn.tsx │ │ │ │ ├── mfaSignUp.tsx │ │ │ │ └── mfaSignUpConfirmation.tsx │ │ │ │ ├── recoverAccountWithToken │ │ │ │ ├── index.tsx │ │ │ │ └── success.tsx │ │ │ │ ├── sendRecoveryEmail │ │ │ │ ├── emailSent.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── recoverAccountForm.tsx │ │ │ │ ├── signIn │ │ │ │ └── index.tsx │ │ │ │ ├── signUp │ │ │ │ ├── confirmation.tsx │ │ │ │ ├── continueWithoutPasskey.tsx │ │ │ │ ├── featureBlocks.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── signUpForm.tsx │ │ │ │ └── somethingWentWrong.tsx │ │ │ │ ├── styles.css │ │ │ │ ├── themeBase.tsx │ │ │ │ └── translations.ts │ │ │ ├── constants.ts │ │ │ ├── functionOverrides.ts │ │ │ ├── index.ts │ │ │ ├── prebuiltui.tsx │ │ │ ├── recipe.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── styles │ │ └── styles.css │ ├── superTokens.tsx │ ├── translation │ │ ├── translationContext.tsx │ │ ├── translationHelpers.ts │ │ └── translations.ts │ ├── types.ts │ ├── ui │ │ ├── index.tsx │ │ └── types.ts │ ├── usercontext │ │ ├── index.tsx │ │ └── userContextWrapper.tsx │ ├── utils.ts │ ├── version.ts │ └── versionChecker.ts ├── tsconfig.json ├── tsconfig_dev.json └── tslint.json ├── mocha-multi-reporters.json ├── nextjs ├── middleware.d.ts ├── middleware.js ├── ssr.d.ts └── ssr.js ├── other ├── checkTranslationKeys.js ├── page.screen.code-snippets └── rollup-plugin-css-string-import.mjs ├── package.json ├── recipe ├── emailpassword │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── emailverification │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── multifactorauth │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── multitenancy │ ├── index.d.ts │ └── index.js ├── oauth2provider │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── passwordless │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── session │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── thirdparty │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── totp │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── userroles │ ├── index.d.ts │ └── index.js └── webauthn │ ├── index.d.ts │ ├── index.js │ ├── prebuiltui.d.ts │ └── prebuiltui.js ├── rollup.config.mjs ├── runExample.sh ├── stories ├── allrecipes.stories.tsx ├── authPage.stories.tsx ├── emailpassword.stories.tsx ├── emailverification.stories.tsx ├── errorBoundary.tsx ├── factorChooser.stories.tsx ├── oauth2provider.stories.tsx ├── otpMFA.stories.tsx ├── passwordless.stories.tsx ├── thirdparty.stories.tsx ├── thirdpartyemailpassword.stories.tsx ├── thirdpartypasswordless.stories.tsx ├── totpMFA.stories.tsx ├── utils.ts └── webauthn.stories.tsx ├── test ├── .env.example.js ├── .env.js ├── constants.js ├── end-to-end │ ├── accountlinking.test.js │ ├── emailverification.test.js │ ├── embed.test.js │ ├── generalerror.test.js │ ├── getRedirectionURL.test.js │ ├── mfa.chooserscreen.test.js │ ├── mfa.default_reqs.test.js │ ├── mfa.factorscreen.otp.test.js │ ├── mfa.factorscreen.totp.test.js │ ├── mfa.factorscreen.webauthn.test.js │ ├── mfa.firstFactors.test.js │ ├── mfa.helpers.js │ ├── mfa.requirement_handling.test.js │ ├── mfa.signin.test.js │ ├── multitenancy.dynamic_login_methods.test.js │ ├── multitenancy.mock.test.js │ ├── multitenancy.tenant_interactions.test.js │ ├── oauth2provider.test.js │ ├── pages │ │ ├── AuthPage.js │ │ ├── EmailVerificationPage.js │ │ ├── Page.js │ │ └── ResetPasswordPage.js │ ├── passwordless.allrecipes.email.test.js │ ├── passwordless.allrecipes.email_or_phone.test.js │ ├── passwordless.allrecipes.phone.test.js │ ├── passwordless.email.test.js │ ├── passwordless.email_or_phone.test.js │ ├── passwordless.phone.test.js │ ├── passwordless.test_gen.js │ ├── refresherrors.test.js │ ├── resetpasswordusingtoken.test.js │ ├── routing.test.js │ ├── signin-rrdv5.test.js │ ├── signin-rrdv6.test.js │ ├── signin.test.js │ ├── signup.test.js │ ├── ssr.nextjs.test.js │ ├── thirdparty.test.js │ ├── thirdpartyemailpassword.test.js │ ├── thirdpartypasswordless.pwless.email.test.js │ ├── thirdpartypasswordless.pwless.email_or_phone.test.js │ ├── thirdpartypasswordless.pwless.phone.test.js │ ├── thirdpartypasswordless.test.js │ ├── thirdpartypasswordless.tp.test.js │ ├── userContext.test.js │ ├── userroles.test.js │ ├── webauthn.accountlinking.test.js │ ├── webauthn.helpers.js │ ├── webauthn.recover_account.test.js │ ├── webauthn.recovery_email.test.js │ ├── webauthn.signin.test.js │ └── webauthn.signup.test.js ├── exampleTestHelpers.js ├── findExamplesWithTests.sh ├── helpers.js ├── prepTestApp.sh ├── server │ ├── .env │ ├── .env.example │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── utils.js │ └── webauthn │ │ ├── wasm_exec.js │ │ └── webauthn.wasm ├── startTestApp.sh ├── test.mocha.env.js ├── unit │ ├── authPage.test.tsx │ ├── componentOverrides.test.tsx │ ├── components │ │ └── componentOverride │ │ │ └── withOverride.test.tsx │ ├── css.d.ts │ ├── dateProvider.test.ts │ ├── exports.test.tsx │ ├── index.test.ts │ ├── jwtVerify.test.ts │ ├── mockStyle.js │ ├── recipe │ │ ├── emailpassword │ │ │ ├── emailPassword.test.tsx │ │ │ ├── signInUp.test.tsx │ │ │ ├── utils.test.ts │ │ │ └── validators.test.ts │ │ ├── passwordless │ │ │ ├── passwordless.test.ts │ │ │ └── signInUp.test.tsx │ │ ├── session │ │ │ ├── sessionAuth.test.tsx │ │ │ └── utils.unit.test.ts │ │ └── thirdparty │ │ │ ├── signInUp.test.tsx │ │ │ └── thirdParty.test.ts │ ├── selectComponentsToCoverAllFirstFactors.test.ts │ ├── ssr.test.tsx │ ├── tsconfig.test.json │ ├── utils.test.tsx │ └── versionChecker.test.ts ├── updateExampleAppDeps.sh ├── waitForServerStartup.sh └── with-typescript │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── _redirects │ ├── background.svg │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── Footer │ │ └── index.tsx │ ├── Home │ │ ├── CallAPIView.tsx │ │ ├── Logout.tsx │ │ ├── SuccessView.tsx │ │ └── index.tsx │ ├── Themes │ │ ├── Dark.ts │ │ ├── Helium.ts │ │ └── Hydrogen.ts │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts │ └── tsconfig.json ├── ui ├── index.d.ts └── index.js ├── utils └── dateProvider │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ └── types.js └── webJsInterfaceSupported.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/config_continue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/config_continue.yml -------------------------------------------------------------------------------- /.circleci/doTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/doTests.sh -------------------------------------------------------------------------------- /.circleci/generateConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/generateConfig.sh -------------------------------------------------------------------------------- /.circleci/installJava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/installJava.sh -------------------------------------------------------------------------------- /.circleci/markPassed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/markPassed.sh -------------------------------------------------------------------------------- /.circleci/markTesting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/markTesting.sh -------------------------------------------------------------------------------- /.circleci/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/publish.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFreeCore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/setupAndTestWithFreeCore.sh -------------------------------------------------------------------------------- /.circleci/updateDocsInWebsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.circleci/updateDocsInWebsite.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | lib/build/**/* linguist-generated=true -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/helpers/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.github/helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/helpers/package.json -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/auth-react-test-1.yml -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/auth-react-test-2.yml -------------------------------------------------------------------------------- /.github/workflows/chromatic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/chromatic.yml -------------------------------------------------------------------------------- /.github/workflows/github-actions-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/github-actions-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-dev-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/pipeline-dev-tag.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-release-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/pipeline-release-tag.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-hook-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/pre-commit-hook-run.yml -------------------------------------------------------------------------------- /.github/workflows/size-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/size-limit.yml -------------------------------------------------------------------------------- /.github/workflows/test-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/test-examples.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | docs/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/.storybook/preview.ts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/README.md -------------------------------------------------------------------------------- /addDevTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/addDevTag -------------------------------------------------------------------------------- /addReleaseTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/addReleaseTag -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/compose.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/icons.css -------------------------------------------------------------------------------- /docs/assets/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/icons.png -------------------------------------------------------------------------------- /docs/assets/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/widgets.png -------------------------------------------------------------------------------- /docs/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/classes/index.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/index.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_authRecipe.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_authRecipe.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_emailpassword.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_emailpassword.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_multitenancy.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_multitenancy.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_passwordless.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_passwordless.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_recipeModule.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_recipeModule.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_session.BooleanClaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_session.BooleanClaim.html -------------------------------------------------------------------------------- /docs/classes/recipe_session.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_session.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Apple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Apple.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Bitbucket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Bitbucket.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.BoxySAML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.BoxySAML.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Discord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Discord.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Facebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Facebook.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Github.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Gitlab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Gitlab.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Google.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.LinkedIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.LinkedIn.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Okta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Okta.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.Twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.Twitter.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_thirdparty.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_totp.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_totp.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_userroles.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_userroles.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_webauthn.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/classes/recipe_webauthn.default.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/modules/dateProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/dateProvider.html -------------------------------------------------------------------------------- /docs/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/index.html -------------------------------------------------------------------------------- /docs/modules/recipe_authRecipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_authRecipe.html -------------------------------------------------------------------------------- /docs/modules/recipe_emailpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_emailpassword.html -------------------------------------------------------------------------------- /docs/modules/recipe_emailverification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_emailverification.html -------------------------------------------------------------------------------- /docs/modules/recipe_multifactorauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_multifactorauth.html -------------------------------------------------------------------------------- /docs/modules/recipe_multitenancy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_multitenancy.html -------------------------------------------------------------------------------- /docs/modules/recipe_oauth2provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_oauth2provider.html -------------------------------------------------------------------------------- /docs/modules/recipe_passwordless.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_passwordless.html -------------------------------------------------------------------------------- /docs/modules/recipe_recipeModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_recipeModule.html -------------------------------------------------------------------------------- /docs/modules/recipe_session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_session.html -------------------------------------------------------------------------------- /docs/modules/recipe_thirdparty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_thirdparty.html -------------------------------------------------------------------------------- /docs/modules/recipe_totp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_totp.html -------------------------------------------------------------------------------- /docs/modules/recipe_userroles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_userroles.html -------------------------------------------------------------------------------- /docs/modules/recipe_webauthn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/docs/modules/recipe_webauthn.html -------------------------------------------------------------------------------- /eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/eslint/index.js -------------------------------------------------------------------------------- /eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/eslint/package.json -------------------------------------------------------------------------------- /examples/for-tests-nextjs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/.env -------------------------------------------------------------------------------- /examples/for-tests-nextjs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/.eslintrc.json -------------------------------------------------------------------------------- /examples/for-tests-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/.gitignore -------------------------------------------------------------------------------- /examples/for-tests-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/README.md -------------------------------------------------------------------------------- /examples/for-tests-nextjs/app/config/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/app/config/ssr.ts -------------------------------------------------------------------------------- /examples/for-tests-nextjs/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/app/favicon.ico -------------------------------------------------------------------------------- /examples/for-tests-nextjs/app/globals.css: -------------------------------------------------------------------------------- 1 | html { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /examples/for-tests-nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/app/layout.tsx -------------------------------------------------------------------------------- /examples/for-tests-nextjs/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/app/page.module.css -------------------------------------------------------------------------------- /examples/for-tests-nextjs/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/app/page.tsx -------------------------------------------------------------------------------- /examples/for-tests-nextjs/app/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/app/util.ts -------------------------------------------------------------------------------- /examples/for-tests-nextjs/build-and-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/build-and-install.sh -------------------------------------------------------------------------------- /examples/for-tests-nextjs/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/middleware.ts -------------------------------------------------------------------------------- /examples/for-tests-nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/next.config.js -------------------------------------------------------------------------------- /examples/for-tests-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/package.json -------------------------------------------------------------------------------- /examples/for-tests-nextjs/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/public/next.svg -------------------------------------------------------------------------------- /examples/for-tests-nextjs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/public/vercel.svg -------------------------------------------------------------------------------- /examples/for-tests-nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-nextjs/tsconfig.json -------------------------------------------------------------------------------- /examples/for-tests-react-16/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/for-tests-react-16/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/.gitignore -------------------------------------------------------------------------------- /examples/for-tests-react-16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/README.md -------------------------------------------------------------------------------- /examples/for-tests-react-16/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/package.json -------------------------------------------------------------------------------- /examples/for-tests-react-16/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/public/favicon.ico -------------------------------------------------------------------------------- /examples/for-tests-react-16/public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/public/index.css -------------------------------------------------------------------------------- /examples/for-tests-react-16/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/public/index.html -------------------------------------------------------------------------------- /examples/for-tests-react-16/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/public/logo192.png -------------------------------------------------------------------------------- /examples/for-tests-react-16/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/public/logo512.png -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/App.css -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/App.js -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/Button.js -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/Footer.js -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/Themes/Dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/Themes/Dark.js -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/index.css -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/index.js -------------------------------------------------------------------------------- /examples/for-tests-react-16/src/testContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests-react-16/src/testContext.js -------------------------------------------------------------------------------- /examples/for-tests/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/for-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/.gitignore -------------------------------------------------------------------------------- /examples/for-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/README.md -------------------------------------------------------------------------------- /examples/for-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/package.json -------------------------------------------------------------------------------- /examples/for-tests/public/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/public/background.svg -------------------------------------------------------------------------------- /examples/for-tests/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/public/favicon.ico -------------------------------------------------------------------------------- /examples/for-tests/public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/public/index.css -------------------------------------------------------------------------------- /examples/for-tests/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/public/index.html -------------------------------------------------------------------------------- /examples/for-tests/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/public/logo192.png -------------------------------------------------------------------------------- /examples/for-tests/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/public/logo512.png -------------------------------------------------------------------------------- /examples/for-tests/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/public/manifest.json -------------------------------------------------------------------------------- /examples/for-tests/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/App.css -------------------------------------------------------------------------------- /examples/for-tests/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/App.js -------------------------------------------------------------------------------- /examples/for-tests/src/AppWithoutRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/AppWithoutRouter.js -------------------------------------------------------------------------------- /examples/for-tests/src/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/Button.js -------------------------------------------------------------------------------- /examples/for-tests/src/ErrorBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/ErrorBoundary.js -------------------------------------------------------------------------------- /examples/for-tests/src/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/Footer.js -------------------------------------------------------------------------------- /examples/for-tests/src/OAuth2Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/OAuth2Page.js -------------------------------------------------------------------------------- /examples/for-tests/src/Themes/Dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/Themes/Dark.js -------------------------------------------------------------------------------- /examples/for-tests/src/Themes/Helium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/Themes/Helium.js -------------------------------------------------------------------------------- /examples/for-tests/src/Themes/Hydrogen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/Themes/Hydrogen.js -------------------------------------------------------------------------------- /examples/for-tests/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/config.js -------------------------------------------------------------------------------- /examples/for-tests/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/index.css -------------------------------------------------------------------------------- /examples/for-tests/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/index.js -------------------------------------------------------------------------------- /examples/for-tests/src/logWithPrefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/logWithPrefix.js -------------------------------------------------------------------------------- /examples/for-tests/src/testContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/for-tests/src/testContext.js -------------------------------------------------------------------------------- /examples/with-account-linking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-account-linking/README.md -------------------------------------------------------------------------------- /examples/with-account-linking/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-account-linking/backend/index.ts -------------------------------------------------------------------------------- /examples/with-account-linking/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-account-linking/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-account-linking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-account-linking/package.json -------------------------------------------------------------------------------- /examples/with-aws-lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-aws-lambda/README.md -------------------------------------------------------------------------------- /examples/with-cli-login/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/.gitignore -------------------------------------------------------------------------------- /examples/with-cli-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/README.md -------------------------------------------------------------------------------- /examples/with-cli-login/api-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/api-server/index.ts -------------------------------------------------------------------------------- /examples/with-cli-login/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/cli.js -------------------------------------------------------------------------------- /examples/with-cli-login/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/package.json -------------------------------------------------------------------------------- /examples/with-cli-login/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/public/favicon.ico -------------------------------------------------------------------------------- /examples/with-cli-login/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/public/index.html -------------------------------------------------------------------------------- /examples/with-cli-login/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/public/logo192.png -------------------------------------------------------------------------------- /examples/with-cli-login/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/public/logo512.png -------------------------------------------------------------------------------- /examples/with-cli-login/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/public/manifest.json -------------------------------------------------------------------------------- /examples/with-cli-login/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/public/robots.txt -------------------------------------------------------------------------------- /examples/with-cli-login/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/App.css -------------------------------------------------------------------------------- /examples/with-cli-login/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/App.test.tsx -------------------------------------------------------------------------------- /examples/with-cli-login/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/App.tsx -------------------------------------------------------------------------------- /examples/with-cli-login/src/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/Footer/index.tsx -------------------------------------------------------------------------------- /examples/with-cli-login/src/Home/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/Home/Logout.tsx -------------------------------------------------------------------------------- /examples/with-cli-login/src/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/Home/index.tsx -------------------------------------------------------------------------------- /examples/with-cli-login/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/index.css -------------------------------------------------------------------------------- /examples/with-cli-login/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/index.tsx -------------------------------------------------------------------------------- /examples/with-cli-login/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/logo.svg -------------------------------------------------------------------------------- /examples/with-cli-login/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-cli-login/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/reportWebVitals.ts -------------------------------------------------------------------------------- /examples/with-cli-login/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/src/setupTests.ts -------------------------------------------------------------------------------- /examples/with-cli-login/test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/test/basic.test.js -------------------------------------------------------------------------------- /examples/with-cli-login/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-cli-login/tsconfig.json -------------------------------------------------------------------------------- /examples/with-emailpassword-vercel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-emailpassword-vercel/.gitignore -------------------------------------------------------------------------------- /examples/with-emailpassword-vercel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-emailpassword-vercel/Dockerfile -------------------------------------------------------------------------------- /examples/with-emailpassword-vercel/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-emailpassword-vercel/LICENSE.md -------------------------------------------------------------------------------- /examples/with-emailpassword-vercel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-emailpassword-vercel/README.md -------------------------------------------------------------------------------- /examples/with-emailpassword-vercel/pm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-emailpassword-vercel/pm2.json -------------------------------------------------------------------------------- /examples/with-emailpassword-vercel/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-emailpassword-vercel/src/App.css -------------------------------------------------------------------------------- /examples/with-emailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-emailpassword/README.md -------------------------------------------------------------------------------- /examples/with-emailverification-with-otp/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-hash-router/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /examples/with-hash-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-hash-router/README.md -------------------------------------------------------------------------------- /examples/with-hash-router/backend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-hash-router/backend/config.ts -------------------------------------------------------------------------------- /examples/with-hash-router/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-hash-router/backend/index.ts -------------------------------------------------------------------------------- /examples/with-hash-router/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-hash-router/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-hash-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-hash-router/package.json -------------------------------------------------------------------------------- /examples/with-hash-router/test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-hash-router/test/basic.test.js -------------------------------------------------------------------------------- /examples/with-i18next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/.gitignore -------------------------------------------------------------------------------- /examples/with-i18next/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/Dockerfile -------------------------------------------------------------------------------- /examples/with-i18next/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/LICENSE.md -------------------------------------------------------------------------------- /examples/with-i18next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/README.md -------------------------------------------------------------------------------- /examples/with-i18next/api-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/api-server.js -------------------------------------------------------------------------------- /examples/with-i18next/ignore_this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/ignore_this.js -------------------------------------------------------------------------------- /examples/with-i18next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/package.json -------------------------------------------------------------------------------- /examples/with-i18next/pm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/pm2.json -------------------------------------------------------------------------------- /examples/with-i18next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/public/favicon.ico -------------------------------------------------------------------------------- /examples/with-i18next/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/public/index.html -------------------------------------------------------------------------------- /examples/with-i18next/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/public/logo192.png -------------------------------------------------------------------------------- /examples/with-i18next/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/public/logo512.png -------------------------------------------------------------------------------- /examples/with-i18next/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/public/manifest.json -------------------------------------------------------------------------------- /examples/with-i18next/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/public/robots.txt -------------------------------------------------------------------------------- /examples/with-i18next/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/App.css -------------------------------------------------------------------------------- /examples/with-i18next/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/App.js -------------------------------------------------------------------------------- /examples/with-i18next/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/App.test.js -------------------------------------------------------------------------------- /examples/with-i18next/src/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/Footer/index.js -------------------------------------------------------------------------------- /examples/with-i18next/src/Home/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/Home/Logout.js -------------------------------------------------------------------------------- /examples/with-i18next/src/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/Home/index.js -------------------------------------------------------------------------------- /examples/with-i18next/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/index.css -------------------------------------------------------------------------------- /examples/with-i18next/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/index.js -------------------------------------------------------------------------------- /examples/with-i18next/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/logo.svg -------------------------------------------------------------------------------- /examples/with-i18next/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/reportWebVitals.js -------------------------------------------------------------------------------- /examples/with-i18next/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/src/setupTests.js -------------------------------------------------------------------------------- /examples/with-i18next/test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-i18next/test/basic.test.js -------------------------------------------------------------------------------- /examples/with-legacy-2fa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/.gitignore -------------------------------------------------------------------------------- /examples/with-legacy-2fa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/README.md -------------------------------------------------------------------------------- /examples/with-legacy-2fa/api-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/api-server/index.ts -------------------------------------------------------------------------------- /examples/with-legacy-2fa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/package.json -------------------------------------------------------------------------------- /examples/with-legacy-2fa/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/public/favicon.ico -------------------------------------------------------------------------------- /examples/with-legacy-2fa/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/public/index.html -------------------------------------------------------------------------------- /examples/with-legacy-2fa/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/public/logo192.png -------------------------------------------------------------------------------- /examples/with-legacy-2fa/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/public/logo512.png -------------------------------------------------------------------------------- /examples/with-legacy-2fa/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/public/robots.txt -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/App.css -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/App.test.tsx -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/App.tsx -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/Home/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/Home/Logout.tsx -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/Home/index.tsx -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/index.css -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/index.tsx -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/logo.svg -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-legacy-2fa/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/src/setupTests.ts -------------------------------------------------------------------------------- /examples/with-legacy-2fa/test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/test/basic.test.js -------------------------------------------------------------------------------- /examples/with-legacy-2fa/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-legacy-2fa/tsconfig.json -------------------------------------------------------------------------------- /examples/with-localstorage/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /examples/with-localstorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-localstorage/README.md -------------------------------------------------------------------------------- /examples/with-localstorage/backend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-localstorage/backend/config.ts -------------------------------------------------------------------------------- /examples/with-localstorage/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-localstorage/backend/index.ts -------------------------------------------------------------------------------- /examples/with-localstorage/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-localstorage/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-localstorage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-localstorage/package.json -------------------------------------------------------------------------------- /examples/with-multifactorauth-phone-chooser/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-multifactorauth-phone-chooser/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-multifactorauth-recovery-codes/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-multifactorauth-recovery-codes/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-multifactorauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-multifactorauth/README.md -------------------------------------------------------------------------------- /examples/with-multiple-email-sign-in/api-server/.gitignore: -------------------------------------------------------------------------------- 1 | primaryUserStore.json -------------------------------------------------------------------------------- /examples/with-multiple-email-sign-in/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-netlify/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-netlify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/.gitignore -------------------------------------------------------------------------------- /examples/with-netlify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/README.md -------------------------------------------------------------------------------- /examples/with-netlify/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/netlify.toml -------------------------------------------------------------------------------- /examples/with-netlify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/package.json -------------------------------------------------------------------------------- /examples/with-netlify/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /examples/with-netlify/public/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/public/background.svg -------------------------------------------------------------------------------- /examples/with-netlify/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/public/favicon.ico -------------------------------------------------------------------------------- /examples/with-netlify/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/public/index.html -------------------------------------------------------------------------------- /examples/with-netlify/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/public/logo192.png -------------------------------------------------------------------------------- /examples/with-netlify/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/public/logo512.png -------------------------------------------------------------------------------- /examples/with-netlify/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/public/manifest.json -------------------------------------------------------------------------------- /examples/with-netlify/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/public/robots.txt -------------------------------------------------------------------------------- /examples/with-netlify/server-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/server-local.js -------------------------------------------------------------------------------- /examples/with-netlify/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/App.css -------------------------------------------------------------------------------- /examples/with-netlify/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/App.test.tsx -------------------------------------------------------------------------------- /examples/with-netlify/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/App.tsx -------------------------------------------------------------------------------- /examples/with-netlify/src/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/Footer/index.tsx -------------------------------------------------------------------------------- /examples/with-netlify/src/Home/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/Home/Logout.tsx -------------------------------------------------------------------------------- /examples/with-netlify/src/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/Home/index.tsx -------------------------------------------------------------------------------- /examples/with-netlify/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/index.css -------------------------------------------------------------------------------- /examples/with-netlify/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/index.tsx -------------------------------------------------------------------------------- /examples/with-netlify/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/logo.svg -------------------------------------------------------------------------------- /examples/with-netlify/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-netlify/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/reportWebVitals.ts -------------------------------------------------------------------------------- /examples/with-netlify/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/src/setupTests.ts -------------------------------------------------------------------------------- /examples/with-netlify/test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/test/basic.test.js -------------------------------------------------------------------------------- /examples/with-netlify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-netlify/tsconfig.json -------------------------------------------------------------------------------- /examples/with-next-iframe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/.gitignore -------------------------------------------------------------------------------- /examples/with-next-iframe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/README.md -------------------------------------------------------------------------------- /examples/with-next-iframe/config/appInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/config/appInfo.js -------------------------------------------------------------------------------- /examples/with-next-iframe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/package.json -------------------------------------------------------------------------------- /examples/with-next-iframe/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/pages/_app.js -------------------------------------------------------------------------------- /examples/with-next-iframe/pages/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/pages/api/user.js -------------------------------------------------------------------------------- /examples/with-next-iframe/pages/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/pages/iframe.js -------------------------------------------------------------------------------- /examples/with-next-iframe/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/pages/index.js -------------------------------------------------------------------------------- /examples/with-next-iframe/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/public/favicon.ico -------------------------------------------------------------------------------- /examples/with-next-iframe/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/public/vercel.svg -------------------------------------------------------------------------------- /examples/with-next-iframe/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next-iframe/styles/globals.css -------------------------------------------------------------------------------- /examples/with-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-next/README.md -------------------------------------------------------------------------------- /examples/with-one-login-many-subdomains/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | HOST='example.com' -------------------------------------------------------------------------------- /examples/with-one-login-per-subdomain/.env: -------------------------------------------------------------------------------- 1 | HOST='tenant1.example.com' 2 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-passwordless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-passwordless/README.md -------------------------------------------------------------------------------- /examples/with-phone-password-mfa/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-phone-password-mfa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password-mfa/.gitignore -------------------------------------------------------------------------------- /examples/with-phone-password-mfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password-mfa/README.md -------------------------------------------------------------------------------- /examples/with-phone-password-mfa/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password-mfa/src/App.css -------------------------------------------------------------------------------- /examples/with-phone-password-mfa/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password-mfa/src/App.tsx -------------------------------------------------------------------------------- /examples/with-phone-password-mfa/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-phone-password/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-phone-password/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/.gitignore -------------------------------------------------------------------------------- /examples/with-phone-password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/README.md -------------------------------------------------------------------------------- /examples/with-phone-password/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/package.json -------------------------------------------------------------------------------- /examples/with-phone-password/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/src/App.css -------------------------------------------------------------------------------- /examples/with-phone-password/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/src/App.tsx -------------------------------------------------------------------------------- /examples/with-phone-password/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/src/index.css -------------------------------------------------------------------------------- /examples/with-phone-password/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/src/index.tsx -------------------------------------------------------------------------------- /examples/with-phone-password/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/src/logo.svg -------------------------------------------------------------------------------- /examples/with-phone-password/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-phone-password/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-phone-password/tsconfig.json -------------------------------------------------------------------------------- /examples/with-remix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-remix/README.md -------------------------------------------------------------------------------- /examples/with-supabase/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/.env -------------------------------------------------------------------------------- /examples/with-supabase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/.gitignore -------------------------------------------------------------------------------- /examples/with-supabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/README.md -------------------------------------------------------------------------------- /examples/with-supabase/config/appInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/config/appInfo.ts -------------------------------------------------------------------------------- /examples/with-supabase/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/next-env.d.ts -------------------------------------------------------------------------------- /examples/with-supabase/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/next.config.js -------------------------------------------------------------------------------- /examples/with-supabase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/package.json -------------------------------------------------------------------------------- /examples/with-supabase/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/pages/_app.tsx -------------------------------------------------------------------------------- /examples/with-supabase/pages/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/pages/api/user.ts -------------------------------------------------------------------------------- /examples/with-supabase/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/pages/index.tsx -------------------------------------------------------------------------------- /examples/with-supabase/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/public/favicon.ico -------------------------------------------------------------------------------- /examples/with-supabase/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/public/vercel.svg -------------------------------------------------------------------------------- /examples/with-supabase/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/styles/globals.css -------------------------------------------------------------------------------- /examples/with-supabase/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/tsconfig.json -------------------------------------------------------------------------------- /examples/with-supabase/utils/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-supabase/utils/supabase.ts -------------------------------------------------------------------------------- /examples/with-svelte-react-thirdpartyemailpassword/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /examples/with-svelte-react-thirdpartyemailpassword/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-thirdparty-google-onetap/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /examples/with-thirdparty-google-onetap/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-thirdparty-google-onetap/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-thirdparty-popup/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-thirdparty-popup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-thirdparty-popup/.gitignore -------------------------------------------------------------------------------- /examples/with-thirdparty-popup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-thirdparty-popup/README.md -------------------------------------------------------------------------------- /examples/with-thirdparty-popup/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-thirdparty-popup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-thirdparty-popup/package.json -------------------------------------------------------------------------------- /examples/with-thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/examples/with-thirdparty/README.md -------------------------------------------------------------------------------- /examples/with-thirdpartyemailpassword-passwordless/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/with-update-email-post-verification/frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/with-update-email-post-verification/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontendDriverInterfaceSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/frontendDriverInterfaceSupported.json -------------------------------------------------------------------------------- /hooks/populate-hook-constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/hooks/populate-hook-constants.sh -------------------------------------------------------------------------------- /hooks/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/hooks/pre-commit.sh -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/index.js -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/init.sh -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/.eslintignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /lib/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/.eslintrc.js -------------------------------------------------------------------------------- /lib/build/arrowLeftIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/arrowLeftIcon.js -------------------------------------------------------------------------------- /lib/build/authCompWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/authCompWrapper.js -------------------------------------------------------------------------------- /lib/build/authRecipe-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/authRecipe-shared.js -------------------------------------------------------------------------------- /lib/build/authRecipe-shared2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/authRecipe-shared2.js -------------------------------------------------------------------------------- /lib/build/claims/booleanClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/claims/booleanClaim.d.ts -------------------------------------------------------------------------------- /lib/build/claims/primitiveArrayClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/claims/primitiveArrayClaim.d.ts -------------------------------------------------------------------------------- /lib/build/claims/primitiveClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/claims/primitiveClaim.d.ts -------------------------------------------------------------------------------- /lib/build/components/assets/blockedIcon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/assets/blockedIcon.d.ts -------------------------------------------------------------------------------- /lib/build/components/assets/checkedIcon.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export default function CheckedIcon(): JSX.Element; 3 | -------------------------------------------------------------------------------- /lib/build/components/assets/errorIcon.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export default function ErrorIcon(): JSX.Element; 3 | -------------------------------------------------------------------------------- /lib/build/components/assets/logoutIcon.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export default function LogoutIcon(): JSX.Element; 3 | -------------------------------------------------------------------------------- /lib/build/components/assets/multipleDevicesIcon.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export default function MultipleDevicesIcon(): JSX.Element; 3 | -------------------------------------------------------------------------------- /lib/build/components/assets/otpSMSIcon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/assets/otpSMSIcon.d.ts -------------------------------------------------------------------------------- /lib/build/components/assets/passkeyIcon.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export default function PasskeyIcon(): JSX.Element; 3 | -------------------------------------------------------------------------------- /lib/build/components/assets/smsLargeIcon.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export default function SMSLargeIcon(): JSX.Element; 3 | -------------------------------------------------------------------------------- /lib/build/components/assets/spinnerIcon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/assets/spinnerIcon.d.ts -------------------------------------------------------------------------------- /lib/build/components/assets/totpIcon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/assets/totpIcon.d.ts -------------------------------------------------------------------------------- /lib/build/components/authCompWrapper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/authCompWrapper.d.ts -------------------------------------------------------------------------------- /lib/build/components/featureWrapper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/featureWrapper.d.ts -------------------------------------------------------------------------------- /lib/build/components/routingComponent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/routingComponent.d.ts -------------------------------------------------------------------------------- /lib/build/components/superTokensRoute.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/superTokensRoute.d.ts -------------------------------------------------------------------------------- /lib/build/components/superTokensRouteV6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/superTokensRouteV6.d.ts -------------------------------------------------------------------------------- /lib/build/components/supertokensWrapper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/components/supertokensWrapper.d.ts -------------------------------------------------------------------------------- /lib/build/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/constants.d.ts -------------------------------------------------------------------------------- /lib/build/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/constants.js -------------------------------------------------------------------------------- /lib/build/dateProvider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/dateProvider/index.d.ts -------------------------------------------------------------------------------- /lib/build/dateProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/dateProvider/types.d.ts -------------------------------------------------------------------------------- /lib/build/emailLargeIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailLargeIcon.js -------------------------------------------------------------------------------- /lib/build/emailpassword-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpassword-shared.js -------------------------------------------------------------------------------- /lib/build/emailpassword-shared2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpassword-shared2.js -------------------------------------------------------------------------------- /lib/build/emailpassword-shared3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpassword-shared3.js -------------------------------------------------------------------------------- /lib/build/emailpassword-shared4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpassword-shared4.js -------------------------------------------------------------------------------- /lib/build/emailpassword-shared5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpassword-shared5.js -------------------------------------------------------------------------------- /lib/build/emailpassword-shared6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpassword-shared6.js -------------------------------------------------------------------------------- /lib/build/emailpassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpassword.js -------------------------------------------------------------------------------- /lib/build/emailpasswordprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailpasswordprebuiltui.js -------------------------------------------------------------------------------- /lib/build/emailverification-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailverification-shared.js -------------------------------------------------------------------------------- /lib/build/emailverification-shared2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailverification-shared2.js -------------------------------------------------------------------------------- /lib/build/emailverification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailverification.js -------------------------------------------------------------------------------- /lib/build/emailverificationprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/emailverificationprebuiltui.js -------------------------------------------------------------------------------- /lib/build/genericComponentOverrideContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/genericComponentOverrideContext.js -------------------------------------------------------------------------------- /lib/build/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/index.d.ts -------------------------------------------------------------------------------- /lib/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/index.js -------------------------------------------------------------------------------- /lib/build/index2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/index2.js -------------------------------------------------------------------------------- /lib/build/logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/logger.d.ts -------------------------------------------------------------------------------- /lib/build/multifactorauth-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/multifactorauth-shared.js -------------------------------------------------------------------------------- /lib/build/multifactorauth-shared2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/multifactorauth-shared2.js -------------------------------------------------------------------------------- /lib/build/multifactorauth-shared3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/multifactorauth-shared3.js -------------------------------------------------------------------------------- /lib/build/multifactorauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/multifactorauth.js -------------------------------------------------------------------------------- /lib/build/multifactorauthprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/multifactorauthprebuiltui.js -------------------------------------------------------------------------------- /lib/build/multitenancy-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/multitenancy-shared.js -------------------------------------------------------------------------------- /lib/build/multitenancy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/multitenancy.js -------------------------------------------------------------------------------- /lib/build/nextjs/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/nextjs/constants.d.ts -------------------------------------------------------------------------------- /lib/build/nextjs/middleware.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/nextjs/middleware.d.ts -------------------------------------------------------------------------------- /lib/build/nextjs/ssr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/nextjs/ssr.d.ts -------------------------------------------------------------------------------- /lib/build/nextjs/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/nextjs/types.d.ts -------------------------------------------------------------------------------- /lib/build/nextjs/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/nextjs/utils.d.ts -------------------------------------------------------------------------------- /lib/build/nextjsmiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/nextjsmiddleware.js -------------------------------------------------------------------------------- /lib/build/nextjsssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/nextjsssr.js -------------------------------------------------------------------------------- /lib/build/oauth2provider-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/oauth2provider-shared.js -------------------------------------------------------------------------------- /lib/build/oauth2provider-shared2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/oauth2provider-shared2.js -------------------------------------------------------------------------------- /lib/build/oauth2provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/oauth2provider.js -------------------------------------------------------------------------------- /lib/build/oauth2providerprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/oauth2providerprebuiltui.js -------------------------------------------------------------------------------- /lib/build/passwordless-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/passwordless-shared.js -------------------------------------------------------------------------------- /lib/build/passwordless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/passwordless.js -------------------------------------------------------------------------------- /lib/build/passwordlessprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/passwordlessprebuiltui.js -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/authRecipe/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/authRecipe/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/authRecipe/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/emailpassword/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/emailpassword/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/emailpassword/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/emailpassword/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const DEFAULT_VERIFY_EMAIL_PATH = "/verify-email"; 2 | -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multifactorauth/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multifactorauth/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multifactorauth/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multifactorauth/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multitenancy/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multitenancy/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multitenancy/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/multitenancy/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/oauth2provider/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/oauth2provider/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/oauth2provider/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/oauth2provider/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/passwordless/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/passwordless/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/passwordless/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/passwordless/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/recipeModule/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/recipeModule/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/recipeModule/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/recipeRouter/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/recipeRouter/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/prebuiltui.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/sessionAuth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/sessionAuth.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/sessionContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/sessionContext.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/useClaimValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/useClaimValue.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/session/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/thirdparty/constants.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/thirdparty/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/thirdparty/prebuiltui.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/thirdparty/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/thirdparty/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/thirdparty/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const DEFAULT_TOTP_PATH = "/mfa/totp"; 2 | -------------------------------------------------------------------------------- /lib/build/recipe/totp/functionOverrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/totp/functionOverrides.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/totp/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/totp/prebuiltui.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/totp/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/totp/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/totp/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/userroles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/userroles/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/webauthn/constants.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/webauthn/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/webauthn/prebuiltui.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/webauthn/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/webauthn/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipe/webauthn/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipeModule-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/recipeModule-shared.js -------------------------------------------------------------------------------- /lib/build/session-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/session-shared.js -------------------------------------------------------------------------------- /lib/build/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/session.js -------------------------------------------------------------------------------- /lib/build/sessionprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/sessionprebuiltui.js -------------------------------------------------------------------------------- /lib/build/superTokens.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/superTokens.d.ts -------------------------------------------------------------------------------- /lib/build/superTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/superTokens.js -------------------------------------------------------------------------------- /lib/build/thirdparty-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/thirdparty-shared.js -------------------------------------------------------------------------------- /lib/build/thirdparty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/thirdparty.js -------------------------------------------------------------------------------- /lib/build/thirdpartyprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/thirdpartyprebuiltui.js -------------------------------------------------------------------------------- /lib/build/totp-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/totp-shared.js -------------------------------------------------------------------------------- /lib/build/totp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/totp.js -------------------------------------------------------------------------------- /lib/build/totpprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/totpprebuiltui.js -------------------------------------------------------------------------------- /lib/build/translation/translations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/translation/translations.d.ts -------------------------------------------------------------------------------- /lib/build/translationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/translationContext.js -------------------------------------------------------------------------------- /lib/build/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/types.d.ts -------------------------------------------------------------------------------- /lib/build/ui-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/ui-entry.js -------------------------------------------------------------------------------- /lib/build/ui/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/ui/index.d.ts -------------------------------------------------------------------------------- /lib/build/ui/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/ui/types.d.ts -------------------------------------------------------------------------------- /lib/build/usercontext/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/usercontext/index.d.ts -------------------------------------------------------------------------------- /lib/build/userroles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/userroles.js -------------------------------------------------------------------------------- /lib/build/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/utils.d.ts -------------------------------------------------------------------------------- /lib/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/utils.js -------------------------------------------------------------------------------- /lib/build/utils2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/utils2.js -------------------------------------------------------------------------------- /lib/build/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const package_version = "0.51.0"; 2 | -------------------------------------------------------------------------------- /lib/build/versionChecker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/versionChecker.d.ts -------------------------------------------------------------------------------- /lib/build/webauthn-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/webauthn-shared.js -------------------------------------------------------------------------------- /lib/build/webauthn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/webauthn.js -------------------------------------------------------------------------------- /lib/build/webauthnprebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/build/webauthnprebuiltui.js -------------------------------------------------------------------------------- /lib/ts/claims/booleanClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/claims/booleanClaim.ts -------------------------------------------------------------------------------- /lib/ts/claims/primitiveArrayClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/claims/primitiveArrayClaim.ts -------------------------------------------------------------------------------- /lib/ts/claims/primitiveClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/claims/primitiveClaim.ts -------------------------------------------------------------------------------- /lib/ts/components/SuperTokensBranding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/SuperTokensBranding.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/arrowLeftIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/arrowLeftIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/arrowRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/arrowRightIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/blockedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/blockedIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/checkedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/checkedIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/emailLargeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/emailLargeIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/errorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/errorIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/errorLargeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/errorLargeIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/errorRoundIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/errorRoundIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/fingerPrintIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/fingerPrintIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/logoutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/logoutIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/otpEmailIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/otpEmailIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/otpSMSIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/otpSMSIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/passkeyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/passkeyIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/securityIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/securityIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/smsLargeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/smsLargeIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/spinnerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/spinnerIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/assets/totpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/assets/totpIcon.tsx -------------------------------------------------------------------------------- /lib/ts/components/authCompWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/authCompWrapper.tsx -------------------------------------------------------------------------------- /lib/ts/components/featureWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/featureWrapper.tsx -------------------------------------------------------------------------------- /lib/ts/components/routingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/routingComponent.tsx -------------------------------------------------------------------------------- /lib/ts/components/superTokensRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/superTokensRoute.tsx -------------------------------------------------------------------------------- /lib/ts/components/superTokensRouteV6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/superTokensRouteV6.tsx -------------------------------------------------------------------------------- /lib/ts/components/supertokensWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/components/supertokensWrapper.tsx -------------------------------------------------------------------------------- /lib/ts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/constants.ts -------------------------------------------------------------------------------- /lib/ts/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/css.d.ts -------------------------------------------------------------------------------- /lib/ts/dateProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/dateProvider/index.ts -------------------------------------------------------------------------------- /lib/ts/dateProvider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/dateProvider/types.ts -------------------------------------------------------------------------------- /lib/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/index.ts -------------------------------------------------------------------------------- /lib/ts/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/logger.ts -------------------------------------------------------------------------------- /lib/ts/nextjs/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/nextjs/constants.ts -------------------------------------------------------------------------------- /lib/ts/nextjs/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/nextjs/middleware.ts -------------------------------------------------------------------------------- /lib/ts/nextjs/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/nextjs/ssr.ts -------------------------------------------------------------------------------- /lib/ts/nextjs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/nextjs/types.ts -------------------------------------------------------------------------------- /lib/ts/nextjs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/nextjs/utils.ts -------------------------------------------------------------------------------- /lib/ts/react-dom.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-dom"; 2 | -------------------------------------------------------------------------------- /lib/ts/recipe/authRecipe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/authRecipe/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/authRecipe/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/authRecipe/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/authRecipe/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/authRecipe/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailpassword/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailpassword/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailpassword/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailpassword/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailpassword/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailpassword/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailpassword/validators.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailverification/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailverification/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailverification/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailverification/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/emailverification/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multifactorauth/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multifactorauth/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multifactorauth/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multifactorauth/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multifactorauth/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multifactorauth/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multitenancy/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multitenancy/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multitenancy/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/multitenancy/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/oauth2provider/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/oauth2provider/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/oauth2provider/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/oauth2provider/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/oauth2provider/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/oauth2provider/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/passwordless/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/passwordless/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/passwordless/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/passwordless/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/passwordless/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/passwordless/validators.ts -------------------------------------------------------------------------------- /lib/ts/recipe/recipeModule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/recipeModule/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/recipeModule/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/recipeModule/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/recipeModule/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/recipeModule/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/recipeRouter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/recipeRouter/index.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/session/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/session/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/session/sessionAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/sessionAuth.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/session/sessionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/sessionContext.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/useClaimValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/useClaimValue.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/useSessionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/useSessionContext.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/session/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/constants.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/providers/apple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/providers/apple.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/providers/index.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/providers/okta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/providers/okta.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/providers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/providers/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/thirdparty/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/totp/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/functionOverrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/totp/functionOverrides.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/totp/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/totp/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/totp/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/totp/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/totp/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/totp/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/totp/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/userroles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/userroles/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/webauthn/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/functionOverrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/webauthn/functionOverrides.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/webauthn/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/prebuiltui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/webauthn/prebuiltui.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/webauthn/recipe.tsx -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/webauthn/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/recipe/webauthn/utils.ts -------------------------------------------------------------------------------- /lib/ts/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/styles/styles.css -------------------------------------------------------------------------------- /lib/ts/superTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/superTokens.tsx -------------------------------------------------------------------------------- /lib/ts/translation/translationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/translation/translationContext.tsx -------------------------------------------------------------------------------- /lib/ts/translation/translationHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/translation/translationHelpers.ts -------------------------------------------------------------------------------- /lib/ts/translation/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/translation/translations.ts -------------------------------------------------------------------------------- /lib/ts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/types.ts -------------------------------------------------------------------------------- /lib/ts/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/ui/index.tsx -------------------------------------------------------------------------------- /lib/ts/ui/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/ui/types.ts -------------------------------------------------------------------------------- /lib/ts/usercontext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/usercontext/index.tsx -------------------------------------------------------------------------------- /lib/ts/usercontext/userContextWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/usercontext/userContextWrapper.tsx -------------------------------------------------------------------------------- /lib/ts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/utils.ts -------------------------------------------------------------------------------- /lib/ts/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/version.ts -------------------------------------------------------------------------------- /lib/ts/versionChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/ts/versionChecker.ts -------------------------------------------------------------------------------- /lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/tsconfig_dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/tsconfig_dev.json -------------------------------------------------------------------------------- /lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/lib/tslint.json -------------------------------------------------------------------------------- /mocha-multi-reporters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/mocha-multi-reporters.json -------------------------------------------------------------------------------- /nextjs/middleware.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/nextjs/middleware.d.ts -------------------------------------------------------------------------------- /nextjs/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/nextjs/middleware.js -------------------------------------------------------------------------------- /nextjs/ssr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/nextjs/ssr.d.ts -------------------------------------------------------------------------------- /nextjs/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/nextjs/ssr.js -------------------------------------------------------------------------------- /other/checkTranslationKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/other/checkTranslationKeys.js -------------------------------------------------------------------------------- /other/page.screen.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/other/page.screen.code-snippets -------------------------------------------------------------------------------- /other/rollup-plugin-css-string-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/other/rollup-plugin-css-string-import.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/package.json -------------------------------------------------------------------------------- /recipe/emailpassword/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailpassword/index.d.ts -------------------------------------------------------------------------------- /recipe/emailpassword/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailpassword/index.js -------------------------------------------------------------------------------- /recipe/emailpassword/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailpassword/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/emailpassword/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailpassword/prebuiltui.js -------------------------------------------------------------------------------- /recipe/emailverification/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailverification/index.d.ts -------------------------------------------------------------------------------- /recipe/emailverification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailverification/index.js -------------------------------------------------------------------------------- /recipe/emailverification/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailverification/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/emailverification/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/emailverification/prebuiltui.js -------------------------------------------------------------------------------- /recipe/multifactorauth/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/multifactorauth/index.d.ts -------------------------------------------------------------------------------- /recipe/multifactorauth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/multifactorauth/index.js -------------------------------------------------------------------------------- /recipe/multifactorauth/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/multifactorauth/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/multifactorauth/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/multifactorauth/prebuiltui.js -------------------------------------------------------------------------------- /recipe/multitenancy/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/multitenancy/index.d.ts -------------------------------------------------------------------------------- /recipe/multitenancy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/multitenancy/index.js -------------------------------------------------------------------------------- /recipe/oauth2provider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/oauth2provider/index.d.ts -------------------------------------------------------------------------------- /recipe/oauth2provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/oauth2provider/index.js -------------------------------------------------------------------------------- /recipe/oauth2provider/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/oauth2provider/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/oauth2provider/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/oauth2provider/prebuiltui.js -------------------------------------------------------------------------------- /recipe/passwordless/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/passwordless/index.d.ts -------------------------------------------------------------------------------- /recipe/passwordless/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/passwordless/index.js -------------------------------------------------------------------------------- /recipe/passwordless/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/passwordless/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/passwordless/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/passwordless/prebuiltui.js -------------------------------------------------------------------------------- /recipe/session/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/session/index.d.ts -------------------------------------------------------------------------------- /recipe/session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/session/index.js -------------------------------------------------------------------------------- /recipe/session/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/session/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/session/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/session/prebuiltui.js -------------------------------------------------------------------------------- /recipe/thirdparty/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/thirdparty/index.d.ts -------------------------------------------------------------------------------- /recipe/thirdparty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/thirdparty/index.js -------------------------------------------------------------------------------- /recipe/thirdparty/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/thirdparty/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/thirdparty/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/thirdparty/prebuiltui.js -------------------------------------------------------------------------------- /recipe/totp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/totp/index.d.ts -------------------------------------------------------------------------------- /recipe/totp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/totp/index.js -------------------------------------------------------------------------------- /recipe/totp/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/totp/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/totp/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/totp/prebuiltui.js -------------------------------------------------------------------------------- /recipe/userroles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/userroles/index.d.ts -------------------------------------------------------------------------------- /recipe/userroles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/userroles/index.js -------------------------------------------------------------------------------- /recipe/webauthn/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/webauthn/index.d.ts -------------------------------------------------------------------------------- /recipe/webauthn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/webauthn/index.js -------------------------------------------------------------------------------- /recipe/webauthn/prebuiltui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/webauthn/prebuiltui.d.ts -------------------------------------------------------------------------------- /recipe/webauthn/prebuiltui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/recipe/webauthn/prebuiltui.js -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /runExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/runExample.sh -------------------------------------------------------------------------------- /stories/allrecipes.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/allrecipes.stories.tsx -------------------------------------------------------------------------------- /stories/authPage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/authPage.stories.tsx -------------------------------------------------------------------------------- /stories/emailpassword.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/emailpassword.stories.tsx -------------------------------------------------------------------------------- /stories/emailverification.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/emailverification.stories.tsx -------------------------------------------------------------------------------- /stories/errorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/errorBoundary.tsx -------------------------------------------------------------------------------- /stories/factorChooser.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/factorChooser.stories.tsx -------------------------------------------------------------------------------- /stories/oauth2provider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/oauth2provider.stories.tsx -------------------------------------------------------------------------------- /stories/otpMFA.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/otpMFA.stories.tsx -------------------------------------------------------------------------------- /stories/passwordless.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/passwordless.stories.tsx -------------------------------------------------------------------------------- /stories/thirdparty.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/thirdparty.stories.tsx -------------------------------------------------------------------------------- /stories/thirdpartyemailpassword.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/thirdpartyemailpassword.stories.tsx -------------------------------------------------------------------------------- /stories/thirdpartypasswordless.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/thirdpartypasswordless.stories.tsx -------------------------------------------------------------------------------- /stories/totpMFA.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/totpMFA.stories.tsx -------------------------------------------------------------------------------- /stories/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/utils.ts -------------------------------------------------------------------------------- /stories/webauthn.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/stories/webauthn.stories.tsx -------------------------------------------------------------------------------- /test/.env.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/.env.example.js -------------------------------------------------------------------------------- /test/.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/.env.js -------------------------------------------------------------------------------- /test/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/constants.js -------------------------------------------------------------------------------- /test/end-to-end/accountlinking.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/accountlinking.test.js -------------------------------------------------------------------------------- /test/end-to-end/emailverification.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/emailverification.test.js -------------------------------------------------------------------------------- /test/end-to-end/embed.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/embed.test.js -------------------------------------------------------------------------------- /test/end-to-end/generalerror.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/generalerror.test.js -------------------------------------------------------------------------------- /test/end-to-end/getRedirectionURL.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/getRedirectionURL.test.js -------------------------------------------------------------------------------- /test/end-to-end/mfa.chooserscreen.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/mfa.chooserscreen.test.js -------------------------------------------------------------------------------- /test/end-to-end/mfa.default_reqs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/mfa.default_reqs.test.js -------------------------------------------------------------------------------- /test/end-to-end/mfa.factorscreen.otp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/mfa.factorscreen.otp.test.js -------------------------------------------------------------------------------- /test/end-to-end/mfa.firstFactors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/mfa.firstFactors.test.js -------------------------------------------------------------------------------- /test/end-to-end/mfa.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/mfa.helpers.js -------------------------------------------------------------------------------- /test/end-to-end/mfa.signin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/mfa.signin.test.js -------------------------------------------------------------------------------- /test/end-to-end/multitenancy.mock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/multitenancy.mock.test.js -------------------------------------------------------------------------------- /test/end-to-end/oauth2provider.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/oauth2provider.test.js -------------------------------------------------------------------------------- /test/end-to-end/pages/AuthPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/pages/AuthPage.js -------------------------------------------------------------------------------- /test/end-to-end/pages/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/pages/Page.js -------------------------------------------------------------------------------- /test/end-to-end/pages/ResetPasswordPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/pages/ResetPasswordPage.js -------------------------------------------------------------------------------- /test/end-to-end/passwordless.email.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/passwordless.email.test.js -------------------------------------------------------------------------------- /test/end-to-end/passwordless.phone.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/passwordless.phone.test.js -------------------------------------------------------------------------------- /test/end-to-end/passwordless.test_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/passwordless.test_gen.js -------------------------------------------------------------------------------- /test/end-to-end/refresherrors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/refresherrors.test.js -------------------------------------------------------------------------------- /test/end-to-end/routing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/routing.test.js -------------------------------------------------------------------------------- /test/end-to-end/signin-rrdv5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/signin-rrdv5.test.js -------------------------------------------------------------------------------- /test/end-to-end/signin-rrdv6.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/signin-rrdv6.test.js -------------------------------------------------------------------------------- /test/end-to-end/signin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/signin.test.js -------------------------------------------------------------------------------- /test/end-to-end/signup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/signup.test.js -------------------------------------------------------------------------------- /test/end-to-end/ssr.nextjs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/ssr.nextjs.test.js -------------------------------------------------------------------------------- /test/end-to-end/thirdparty.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/thirdparty.test.js -------------------------------------------------------------------------------- /test/end-to-end/userContext.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/userContext.test.js -------------------------------------------------------------------------------- /test/end-to-end/userroles.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/userroles.test.js -------------------------------------------------------------------------------- /test/end-to-end/webauthn.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/webauthn.helpers.js -------------------------------------------------------------------------------- /test/end-to-end/webauthn.signin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/webauthn.signin.test.js -------------------------------------------------------------------------------- /test/end-to-end/webauthn.signup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/end-to-end/webauthn.signup.test.js -------------------------------------------------------------------------------- /test/exampleTestHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/exampleTestHelpers.js -------------------------------------------------------------------------------- /test/findExamplesWithTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/findExamplesWithTests.sh -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/prepTestApp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/prepTestApp.sh -------------------------------------------------------------------------------- /test/server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/.env -------------------------------------------------------------------------------- /test/server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/.env.example -------------------------------------------------------------------------------- /test/server/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /test/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/index.js -------------------------------------------------------------------------------- /test/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/package-lock.json -------------------------------------------------------------------------------- /test/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/package.json -------------------------------------------------------------------------------- /test/server/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/utils.js -------------------------------------------------------------------------------- /test/server/webauthn/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/webauthn/wasm_exec.js -------------------------------------------------------------------------------- /test/server/webauthn/webauthn.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/server/webauthn/webauthn.wasm -------------------------------------------------------------------------------- /test/startTestApp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/startTestApp.sh -------------------------------------------------------------------------------- /test/test.mocha.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/test.mocha.env.js -------------------------------------------------------------------------------- /test/unit/authPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/authPage.test.tsx -------------------------------------------------------------------------------- /test/unit/componentOverrides.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/componentOverrides.test.tsx -------------------------------------------------------------------------------- /test/unit/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/css.d.ts -------------------------------------------------------------------------------- /test/unit/dateProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/dateProvider.test.ts -------------------------------------------------------------------------------- /test/unit/exports.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/exports.test.tsx -------------------------------------------------------------------------------- /test/unit/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/index.test.ts -------------------------------------------------------------------------------- /test/unit/jwtVerify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/jwtVerify.test.ts -------------------------------------------------------------------------------- /test/unit/mockStyle.js: -------------------------------------------------------------------------------- 1 | module.exports = ""; 2 | -------------------------------------------------------------------------------- /test/unit/recipe/emailpassword/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/recipe/emailpassword/utils.test.ts -------------------------------------------------------------------------------- /test/unit/recipe/session/utils.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/recipe/session/utils.unit.test.ts -------------------------------------------------------------------------------- /test/unit/ssr.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/ssr.test.tsx -------------------------------------------------------------------------------- /test/unit/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/tsconfig.test.json -------------------------------------------------------------------------------- /test/unit/utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/utils.test.tsx -------------------------------------------------------------------------------- /test/unit/versionChecker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/unit/versionChecker.test.ts -------------------------------------------------------------------------------- /test/updateExampleAppDeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/updateExampleAppDeps.sh -------------------------------------------------------------------------------- /test/waitForServerStartup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/waitForServerStartup.sh -------------------------------------------------------------------------------- /test/with-typescript/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /test/with-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/.gitignore -------------------------------------------------------------------------------- /test/with-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/README.md -------------------------------------------------------------------------------- /test/with-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/package-lock.json -------------------------------------------------------------------------------- /test/with-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/package.json -------------------------------------------------------------------------------- /test/with-typescript/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /test/with-typescript/public/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/public/background.svg -------------------------------------------------------------------------------- /test/with-typescript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/public/favicon.ico -------------------------------------------------------------------------------- /test/with-typescript/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/public/index.html -------------------------------------------------------------------------------- /test/with-typescript/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/public/logo192.png -------------------------------------------------------------------------------- /test/with-typescript/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/public/logo512.png -------------------------------------------------------------------------------- /test/with-typescript/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/public/manifest.json -------------------------------------------------------------------------------- /test/with-typescript/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/public/robots.txt -------------------------------------------------------------------------------- /test/with-typescript/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/App.css -------------------------------------------------------------------------------- /test/with-typescript/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/App.test.tsx -------------------------------------------------------------------------------- /test/with-typescript/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/App.tsx -------------------------------------------------------------------------------- /test/with-typescript/src/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/Footer/index.tsx -------------------------------------------------------------------------------- /test/with-typescript/src/Home/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/Home/Logout.tsx -------------------------------------------------------------------------------- /test/with-typescript/src/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/Home/index.tsx -------------------------------------------------------------------------------- /test/with-typescript/src/Themes/Dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/Themes/Dark.ts -------------------------------------------------------------------------------- /test/with-typescript/src/Themes/Helium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/Themes/Helium.ts -------------------------------------------------------------------------------- /test/with-typescript/src/Themes/Hydrogen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/Themes/Hydrogen.ts -------------------------------------------------------------------------------- /test/with-typescript/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/index.css -------------------------------------------------------------------------------- /test/with-typescript/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/index.tsx -------------------------------------------------------------------------------- /test/with-typescript/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/logo.svg -------------------------------------------------------------------------------- /test/with-typescript/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test/with-typescript/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/reportWebVitals.ts -------------------------------------------------------------------------------- /test/with-typescript/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/src/setupTests.ts -------------------------------------------------------------------------------- /test/with-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/test/with-typescript/tsconfig.json -------------------------------------------------------------------------------- /ui/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/ui/index.d.ts -------------------------------------------------------------------------------- /ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/ui/index.js -------------------------------------------------------------------------------- /utils/dateProvider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/utils/dateProvider/index.d.ts -------------------------------------------------------------------------------- /utils/dateProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/utils/dateProvider/index.js -------------------------------------------------------------------------------- /utils/dateProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/utils/dateProvider/types.d.ts -------------------------------------------------------------------------------- /utils/dateProvider/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/utils/dateProvider/types.js -------------------------------------------------------------------------------- /webJsInterfaceSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-auth-react/HEAD/webJsInterfaceSupported.json --------------------------------------------------------------------------------