├── .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 │ ├── github-actions-changelog.yml │ ├── lint-pr-title.yml │ ├── pipeline-dev-tag.yml │ ├── pipeline-release-tag.yml │ ├── pre-commit-hook-run.yml │ ├── size-limit.yml │ └── unit-tests.yml ├── .gitignore ├── .mocharc.yml ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── addDevTag ├── addReleaseTag ├── bundle ├── dateprovider.d3b8bc6ba64e37c53277.js ├── emailpassword.9ad12a0b9dfd0097aad2.js ├── emailverification.190d5ed5f0125f3c6ca1.js ├── multifactorauth.e78970215b8afc63de91.js ├── multitenancy.9ec2e04361f295e02385.js ├── oauth2provider.4ed96e8c186722f927f5.js ├── passwordless.06c921a336f28639c49c.js ├── session.1e8cb79cef1389b3f612.js ├── supertokens.a91fb11593adf048be46.js ├── thirdparty.c352306497331759e763.js ├── totp.c58299f1151bf97a8652.js ├── userroles.ecced425742ececfec8b.js └── website.c7860dc40a39421c659b.js ├── 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 │ ├── cookieHandler.CookieHandlerReference.html │ ├── dateProvider.DateProviderReference.html │ ├── index.default.html │ ├── recipe_authRecipe.default.html │ ├── recipe_emailpassword.default.html │ ├── recipe_emailverification.EmailVerificationClaimClass.html │ ├── recipe_emailverification.default.html │ ├── recipe_multifactorauth.MultiFactorAuthClaimClass.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.default.html │ ├── recipe_totp.default.html │ ├── recipe_userroles.default.html │ ├── recipe_webauthn.default.html │ └── windowHandler.WindowHandlerReference.html ├── index.html ├── modules.html └── modules │ ├── cookieHandler.html │ ├── 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 │ └── windowHandler.html ├── examples ├── astro │ └── with-thirdpartyemailpassword │ │ ├── README.md │ │ ├── astro.config.mjs │ │ ├── package.json │ │ ├── public │ │ └── favicon.svg │ │ ├── src │ │ ├── auth │ │ │ ├── Auth.ts │ │ │ ├── STBEConfig.ts │ │ │ ├── STFEConfig.ts │ │ │ ├── appInfo.json │ │ │ └── superTokensHelper.ts │ │ ├── env.d.ts │ │ ├── layouts │ │ │ └── Root.astro │ │ └── pages │ │ │ ├── auth │ │ │ ├── [...path] │ │ │ │ └── [...route].ts │ │ │ ├── [...route].ts │ │ │ ├── callback │ │ │ │ └── [...path].astro │ │ │ └── sessioninfo.ts │ │ │ ├── dashboard.astro │ │ │ ├── index.astro │ │ │ └── nonauth.astro │ │ └── tsconfig.json ├── react │ └── with-thirdpartyemailpassword │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── server.ts │ │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── Auth.tsx │ │ ├── Dashboard.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── config │ │ │ └── supertokens.ts │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts ├── solidjs │ └── with-thirdpartyemailpassword │ │ ├── README.md │ │ ├── index.html │ │ ├── npm │ │ ├── package.json │ │ ├── public │ │ └── vite.svg │ │ ├── server.ts │ │ ├── src │ │ ├── App.css │ │ ├── Auth.tsx │ │ ├── Dashboard.tsx │ │ ├── assets │ │ │ └── solid.svg │ │ ├── config │ │ │ └── supertokens.ts │ │ ├── index.css │ │ ├── index.tsx │ │ └── vite-env.d.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts └── vuejs │ └── with-thirdpartyemailpassword │ ├── .gitignore │ ├── README.md │ ├── api-server │ ├── index.ts │ └── tsconfig.json │ ├── env.d.ts │ ├── index.html │ ├── package.json │ ├── public │ └── favicon.ico │ ├── src │ ├── App.vue │ ├── assets │ │ ├── base.css │ │ └── logo.svg │ ├── css │ │ ├── authview.css │ │ ├── authviewcallback.css │ │ ├── forgotpassword.css │ │ └── homeview.css │ ├── html │ │ ├── authCallbackView.html │ │ ├── authView.html │ │ ├── forgotPassword.html │ │ └── homeView.html │ ├── main.ts │ ├── router │ │ └── index.ts │ └── views │ │ ├── AuthCallbackView.vue │ │ ├── AuthView.vue │ │ ├── ForgotPassword.vue │ │ └── HomeView.vue │ ├── tsconfig.json │ ├── tsconfig.vite-config.json │ └── vite.config.ts ├── frontendDriverInterfaceSupported.json ├── hooks ├── populate-hook-constants.sh └── pre-commit.sh ├── index.d.ts ├── index.js ├── lib ├── build │ ├── bundleEntry.d.ts │ ├── bundleEntry.js │ ├── constants.d.ts │ ├── constants.js │ ├── cookieHandler │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── types.d.ts │ │ └── types.js │ ├── dateProvider │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── types.d.ts │ │ └── types.js │ ├── error.d.ts │ ├── error.js │ ├── index.d.ts │ ├── index.js │ ├── normalisedURLDomain.d.ts │ ├── normalisedURLDomain.js │ ├── normalisedURLPath.d.ts │ ├── normalisedURLPath.js │ ├── postSuperTokensInitCallbacks.d.ts │ ├── postSuperTokensInitCallbacks.js │ ├── querier.d.ts │ ├── querier.js │ ├── recipe │ │ ├── authRecipe │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── emailpassword │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── emailverification │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── emailVerificationClaim.d.ts │ │ │ ├── emailVerificationClaim.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── multifactorauth │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── multiFactorAuthClaim.d.ts │ │ │ ├── multiFactorAuthClaim.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── multitenancy │ │ │ ├── allowedDomainsClaim.d.ts │ │ │ ├── allowedDomainsClaim.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── oauth2provider │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── passwordless │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── recipeModule │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── session │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── types.d.ts │ │ │ └── types.js │ │ ├── thirdparty │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── totp │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ ├── userroles │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── permissionClaim.d.ts │ │ │ ├── permissionClaim.js │ │ │ ├── userRoleClaim.d.ts │ │ │ └── userRoleClaim.js │ │ └── webauthn │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── recipe.d.ts │ │ │ ├── recipe.js │ │ │ ├── recipeImplementation.d.ts │ │ │ ├── recipeImplementation.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ ├── sdk │ │ ├── paths.d.ts │ │ ├── paths.js │ │ ├── types.d.ts │ │ └── types.js │ ├── sessionClaimValidatorStore.d.ts │ ├── sessionClaimValidatorStore.js │ ├── supertokens.d.ts │ ├── supertokens.js │ ├── types.d.ts │ ├── types.js │ ├── utils.d.ts │ ├── utils.js │ ├── version.d.ts │ ├── version.js │ ├── versionChecker.d.ts │ ├── versionChecker.js │ └── windowHandler │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── types.d.ts │ │ └── types.js ├── ts │ ├── bundleEntry.ts │ ├── constants.ts │ ├── cookieHandler │ │ ├── index.ts │ │ └── types.ts │ ├── dateProvider │ │ ├── index.ts │ │ └── types.ts │ ├── error.ts │ ├── index.ts │ ├── normalisedURLDomain.ts │ ├── normalisedURLPath.ts │ ├── postSuperTokensInitCallbacks.ts │ ├── querier.ts │ ├── recipe │ │ ├── authRecipe │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── emailpassword │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── emailverification │ │ │ ├── constants.ts │ │ │ ├── emailVerificationClaim.ts │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── multifactorauth │ │ │ ├── index.ts │ │ │ ├── multiFactorAuthClaim.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── multitenancy │ │ │ ├── allowedDomainsClaim.ts │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── oauth2provider │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── passwordless │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── recipeModule │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── session │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ └── types.ts │ │ ├── thirdparty │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── totp │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── userroles │ │ │ ├── index.ts │ │ │ ├── permissionClaim.ts │ │ │ └── userRoleClaim.ts │ │ └── webauthn │ │ │ ├── index.ts │ │ │ ├── recipe.ts │ │ │ ├── recipeImplementation.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── sdk │ │ ├── paths.ts │ │ ├── types.ts │ │ └── versions │ │ │ ├── 3.1 │ │ │ └── schema.d.ts │ │ │ ├── 4.0 │ │ │ └── schema.d.ts │ │ │ ├── 4.1 │ │ │ └── schema.d.ts │ │ │ └── 4.2 │ │ │ └── schema.d.ts │ ├── sessionClaimValidatorStore.ts │ ├── supertokens.ts │ ├── types.ts │ ├── utils.ts │ ├── version.ts │ ├── versionChecker.ts │ └── windowHandler │ │ ├── index.ts │ │ └── types.ts ├── tsconfig.json └── tslint.json ├── package.json ├── recipe ├── authRecipe │ ├── index.d.ts │ ├── index.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── authRecipeWithEmailVerification │ ├── index.d.ts │ ├── index.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── emailpassword │ ├── index.d.ts │ ├── index.js │ ├── recipe.d.ts │ ├── recipe.js │ ├── recipeImplementation.d.ts │ ├── recipeImplementation.js │ ├── types │ │ ├── index.d.ts │ │ └── index.js │ ├── utils.d.ts │ └── utils.js ├── emailverification │ ├── index.d.ts │ ├── index.js │ ├── recipe.d.ts │ ├── recipe.js │ ├── recipeImplementation.d.ts │ ├── recipeImplementation.js │ ├── types │ │ ├── index.d.ts │ │ └── index.js │ ├── utils.d.ts │ └── utils.js ├── multifactorauth │ ├── index.d.ts │ ├── index.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── multitenancy │ ├── index.d.ts │ ├── index.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── oauth2provider │ ├── index.d.ts │ ├── index.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── passwordless │ ├── index.d.ts │ ├── index.js │ ├── recipe.d.ts │ ├── recipe.js │ ├── recipeImplementation.d.ts │ ├── recipeImplementation.js │ ├── types │ │ ├── index.d.ts │ │ └── index.js │ ├── utils.d.ts │ └── utils.js ├── recipeModule │ ├── index.d.ts │ ├── index.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── session │ ├── index.d.ts │ ├── index.js │ ├── recipe.d.ts │ ├── recipe.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── thirdparty │ ├── index.d.ts │ ├── index.js │ ├── recipe.d.ts │ ├── recipe.js │ ├── recipeImplementation.d.ts │ ├── recipeImplementation.js │ ├── types │ │ ├── index.d.ts │ │ └── index.js │ ├── utils.d.ts │ └── utils.js ├── totp │ ├── index.d.ts │ ├── index.js │ └── types │ │ ├── index.d.ts │ │ └── index.js ├── userroles │ ├── index.d.ts │ └── index.js └── webauthn │ ├── index.d.ts │ ├── index.js │ └── types │ ├── index.d.ts │ └── index.js ├── scripts └── generate-schema.js ├── test ├── unit │ ├── dateProvider.test.js │ ├── emailverificationclaim.test.js │ ├── exports.test.js │ ├── init.test.js │ ├── querier.test.js │ └── windowHandlers.test.js └── with-typescript │ ├── .gitignore │ ├── index.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── tslint-rules ├── index.js ├── noDirectWindowRule.js └── noDirectWindowRule.ts ├── types ├── index.d.ts └── index.js ├── utils ├── cookieHandler │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ └── types.js ├── dateProvider │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ └── types.js ├── error.d.ts ├── error.js ├── index.d.ts ├── index.js ├── normalisedURLDomain.d.ts ├── normalisedURLDomain.js ├── normalisedURLPath.d.ts ├── normalisedURLPath.js ├── postSuperTokensInitCallbacks.d.ts ├── postSuperTokensInitCallbacks.js ├── querier.d.ts ├── querier.js ├── sessionClaimValidatorStore.d.ts ├── sessionClaimValidatorStore.js └── windowHandler │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ └── types.js ├── webJsInterfaceSupported.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/config_continue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/config_continue.yml -------------------------------------------------------------------------------- /.circleci/doTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/doTests.sh -------------------------------------------------------------------------------- /.circleci/generateConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/generateConfig.sh -------------------------------------------------------------------------------- /.circleci/installJava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/installJava.sh -------------------------------------------------------------------------------- /.circleci/markPassed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/markPassed.sh -------------------------------------------------------------------------------- /.circleci/markTesting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/markTesting.sh -------------------------------------------------------------------------------- /.circleci/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/publish.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFreeCore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/setupAndTestWithFreeCore.sh -------------------------------------------------------------------------------- /.circleci/updateDocsInWebsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.circleci/updateDocsInWebsite.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | lib/build/**/* linguist-generated=true -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/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-web-js/HEAD/.github/helpers/package.json -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/auth-react-test-1.yml -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/auth-react-test-2.yml -------------------------------------------------------------------------------- /.github/workflows/github-actions-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/github-actions-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-dev-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/pipeline-dev-tag.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-release-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/pipeline-release-tag.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-hook-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/pre-commit-hook-run.yml -------------------------------------------------------------------------------- /.github/workflows/size-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/size-limit.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/README.md -------------------------------------------------------------------------------- /addDevTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/addDevTag -------------------------------------------------------------------------------- /addReleaseTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/addReleaseTag -------------------------------------------------------------------------------- /bundle/dateprovider.d3b8bc6ba64e37c53277.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/dateprovider.d3b8bc6ba64e37c53277.js -------------------------------------------------------------------------------- /bundle/emailpassword.9ad12a0b9dfd0097aad2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/emailpassword.9ad12a0b9dfd0097aad2.js -------------------------------------------------------------------------------- /bundle/emailverification.190d5ed5f0125f3c6ca1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/emailverification.190d5ed5f0125f3c6ca1.js -------------------------------------------------------------------------------- /bundle/multifactorauth.e78970215b8afc63de91.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/multifactorauth.e78970215b8afc63de91.js -------------------------------------------------------------------------------- /bundle/multitenancy.9ec2e04361f295e02385.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/multitenancy.9ec2e04361f295e02385.js -------------------------------------------------------------------------------- /bundle/oauth2provider.4ed96e8c186722f927f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/oauth2provider.4ed96e8c186722f927f5.js -------------------------------------------------------------------------------- /bundle/passwordless.06c921a336f28639c49c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/passwordless.06c921a336f28639c49c.js -------------------------------------------------------------------------------- /bundle/session.1e8cb79cef1389b3f612.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/session.1e8cb79cef1389b3f612.js -------------------------------------------------------------------------------- /bundle/supertokens.a91fb11593adf048be46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/supertokens.a91fb11593adf048be46.js -------------------------------------------------------------------------------- /bundle/thirdparty.c352306497331759e763.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/thirdparty.c352306497331759e763.js -------------------------------------------------------------------------------- /bundle/totp.c58299f1151bf97a8652.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/totp.c58299f1151bf97a8652.js -------------------------------------------------------------------------------- /bundle/userroles.ecced425742ececfec8b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/userroles.ecced425742ececfec8b.js -------------------------------------------------------------------------------- /bundle/website.c7860dc40a39421c659b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/bundle/website.c7860dc40a39421c659b.js -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/compose.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/icons.css -------------------------------------------------------------------------------- /docs/assets/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/icons.png -------------------------------------------------------------------------------- /docs/assets/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/widgets.png -------------------------------------------------------------------------------- /docs/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/classes/cookieHandler.CookieHandlerReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/cookieHandler.CookieHandlerReference.html -------------------------------------------------------------------------------- /docs/classes/dateProvider.DateProviderReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/dateProvider.DateProviderReference.html -------------------------------------------------------------------------------- /docs/classes/index.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/index.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_authRecipe.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_authRecipe.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_emailpassword.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_emailpassword.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_emailverification.EmailVerificationClaimClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_emailverification.EmailVerificationClaimClass.html -------------------------------------------------------------------------------- /docs/classes/recipe_emailverification.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_emailverification.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_multifactorauth.MultiFactorAuthClaimClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_multifactorauth.MultiFactorAuthClaimClass.html -------------------------------------------------------------------------------- /docs/classes/recipe_multifactorauth.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_multifactorauth.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_multitenancy.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_multitenancy.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_oauth2provider.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_oauth2provider.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_passwordless.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_passwordless.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_recipeModule.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_recipeModule.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_session.BooleanClaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_session.BooleanClaim.html -------------------------------------------------------------------------------- /docs/classes/recipe_session.PrimitiveArrayClaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_session.PrimitiveArrayClaim.html -------------------------------------------------------------------------------- /docs/classes/recipe_session.PrimitiveClaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_session.PrimitiveClaim.html -------------------------------------------------------------------------------- /docs/classes/recipe_session.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_session.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_thirdparty.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_thirdparty.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_totp.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_totp.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_userroles.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_userroles.default.html -------------------------------------------------------------------------------- /docs/classes/recipe_webauthn.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/recipe_webauthn.default.html -------------------------------------------------------------------------------- /docs/classes/windowHandler.WindowHandlerReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/classes/windowHandler.WindowHandlerReference.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/modules/cookieHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/cookieHandler.html -------------------------------------------------------------------------------- /docs/modules/dateProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/dateProvider.html -------------------------------------------------------------------------------- /docs/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/index.html -------------------------------------------------------------------------------- /docs/modules/recipe_authRecipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_authRecipe.html -------------------------------------------------------------------------------- /docs/modules/recipe_emailpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_emailpassword.html -------------------------------------------------------------------------------- /docs/modules/recipe_emailverification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_emailverification.html -------------------------------------------------------------------------------- /docs/modules/recipe_multifactorauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_multifactorauth.html -------------------------------------------------------------------------------- /docs/modules/recipe_multitenancy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_multitenancy.html -------------------------------------------------------------------------------- /docs/modules/recipe_oauth2provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_oauth2provider.html -------------------------------------------------------------------------------- /docs/modules/recipe_passwordless.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_passwordless.html -------------------------------------------------------------------------------- /docs/modules/recipe_recipeModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_recipeModule.html -------------------------------------------------------------------------------- /docs/modules/recipe_session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_session.html -------------------------------------------------------------------------------- /docs/modules/recipe_thirdparty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_thirdparty.html -------------------------------------------------------------------------------- /docs/modules/recipe_totp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_totp.html -------------------------------------------------------------------------------- /docs/modules/recipe_userroles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_userroles.html -------------------------------------------------------------------------------- /docs/modules/recipe_webauthn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/recipe_webauthn.html -------------------------------------------------------------------------------- /docs/modules/windowHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/docs/modules/windowHandler.html -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/README.md -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/astro.config.mjs -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/package.json -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/public/favicon.svg -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/auth/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/auth/Auth.ts -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/auth/STBEConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/auth/STBEConfig.ts -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/auth/STFEConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/auth/STFEConfig.ts -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/auth/appInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/auth/appInfo.json -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/auth/superTokensHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/auth/superTokensHelper.ts -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/layouts/Root.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/layouts/Root.astro -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/pages/auth/[...path]/[...route].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/pages/auth/[...path]/[...route].ts -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/pages/auth/[...route].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/pages/auth/[...route].ts -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/pages/auth/callback/[...path].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/pages/auth/callback/[...path].astro -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/pages/auth/sessioninfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/pages/auth/sessioninfo.ts -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/pages/dashboard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/pages/dashboard.astro -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/pages/index.astro -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/src/pages/nonauth.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/src/pages/nonauth.astro -------------------------------------------------------------------------------- /examples/astro/with-thirdpartyemailpassword/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/astro/with-thirdpartyemailpassword/tsconfig.json -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/.gitignore -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/README.md -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/eslint.config.js -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/index.html -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/package.json -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/public/vite.svg -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/server.ts -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/App.css -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/App.tsx -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/Auth.tsx -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/Dashboard.tsx -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/assets/react.svg -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/config/supertokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/config/supertokens.ts -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/index.css -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/src/main.tsx -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/tsconfig.app.json -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/tsconfig.json -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/tsconfig.node.json -------------------------------------------------------------------------------- /examples/react/with-thirdpartyemailpassword/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/react/with-thirdpartyemailpassword/vite.config.ts -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/README.md -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/index.html -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/npm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/package.json -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/public/vite.svg -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/server.ts -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/src/App.css -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/src/Auth.tsx -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/src/Dashboard.tsx -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/assets/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/src/assets/solid.svg -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/config/supertokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/src/config/supertokens.ts -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/src/index.css -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/src/index.tsx -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/tsconfig.app.json -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/tsconfig.json -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/tsconfig.node.json -------------------------------------------------------------------------------- /examples/solidjs/with-thirdpartyemailpassword/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/solidjs/with-thirdpartyemailpassword/vite.config.ts -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/.gitignore -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/README.md -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/api-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/api-server/index.ts -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/api-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/api-server/tsconfig.json -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/index.html -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/package.json -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/public/favicon.ico -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/App.vue -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/assets/base.css -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/assets/logo.svg -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/css/authview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/css/authview.css -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/css/authviewcallback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/css/authviewcallback.css -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/css/forgotpassword.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/css/forgotpassword.css -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/css/homeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/css/homeview.css -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/html/authCallbackView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/html/authCallbackView.html -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/html/authView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/html/authView.html -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/html/forgotPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/html/forgotPassword.html -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/html/homeView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/html/homeView.html -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/main.ts -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/router/index.ts -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/views/AuthCallbackView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/views/AuthCallbackView.vue -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/views/AuthView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/views/AuthView.vue -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/views/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/views/ForgotPassword.vue -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/src/views/HomeView.vue -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/tsconfig.json -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/tsconfig.vite-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/tsconfig.vite-config.json -------------------------------------------------------------------------------- /examples/vuejs/with-thirdpartyemailpassword/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/examples/vuejs/with-thirdpartyemailpassword/vite.config.ts -------------------------------------------------------------------------------- /frontendDriverInterfaceSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/frontendDriverInterfaceSupported.json -------------------------------------------------------------------------------- /hooks/populate-hook-constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/hooks/populate-hook-constants.sh -------------------------------------------------------------------------------- /hooks/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/hooks/pre-commit.sh -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/index.js -------------------------------------------------------------------------------- /lib/build/bundleEntry.d.ts: -------------------------------------------------------------------------------- 1 | export * from "."; 2 | -------------------------------------------------------------------------------- /lib/build/bundleEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/bundleEntry.js -------------------------------------------------------------------------------- /lib/build/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/constants.d.ts -------------------------------------------------------------------------------- /lib/build/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/constants.js -------------------------------------------------------------------------------- /lib/build/cookieHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/cookieHandler/index.d.ts -------------------------------------------------------------------------------- /lib/build/cookieHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/cookieHandler/index.js -------------------------------------------------------------------------------- /lib/build/cookieHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/cookieHandler/types.d.ts -------------------------------------------------------------------------------- /lib/build/cookieHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/cookieHandler/types.js -------------------------------------------------------------------------------- /lib/build/dateProvider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/dateProvider/index.d.ts -------------------------------------------------------------------------------- /lib/build/dateProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/dateProvider/index.js -------------------------------------------------------------------------------- /lib/build/dateProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/dateProvider/types.d.ts -------------------------------------------------------------------------------- /lib/build/dateProvider/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/dateProvider/types.js -------------------------------------------------------------------------------- /lib/build/error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/error.d.ts -------------------------------------------------------------------------------- /lib/build/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/error.js -------------------------------------------------------------------------------- /lib/build/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/index.d.ts -------------------------------------------------------------------------------- /lib/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/index.js -------------------------------------------------------------------------------- /lib/build/normalisedURLDomain.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/normalisedURLDomain.d.ts -------------------------------------------------------------------------------- /lib/build/normalisedURLDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/normalisedURLDomain.js -------------------------------------------------------------------------------- /lib/build/normalisedURLPath.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/normalisedURLPath.d.ts -------------------------------------------------------------------------------- /lib/build/normalisedURLPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/normalisedURLPath.js -------------------------------------------------------------------------------- /lib/build/postSuperTokensInitCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/postSuperTokensInitCallbacks.d.ts -------------------------------------------------------------------------------- /lib/build/postSuperTokensInitCallbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/postSuperTokensInitCallbacks.js -------------------------------------------------------------------------------- /lib/build/querier.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/querier.d.ts -------------------------------------------------------------------------------- /lib/build/querier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/querier.js -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/authRecipe/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/authRecipe/index.js -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/authRecipe/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/authRecipe/types.js -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/authRecipe/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/authRecipe/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/authRecipe/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/index.js -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/types.js -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailpassword/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailpassword/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const EMAILVERIFICATION_CLAIM_ID = "st-ev"; 2 | -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/constants.js -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/emailVerificationClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/emailVerificationClaim.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/emailVerificationClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/emailVerificationClaim.js -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/index.js -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/emailverification/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/emailverification/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/index.js -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/multiFactorAuthClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/multiFactorAuthClaim.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/multiFactorAuthClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/multiFactorAuthClaim.js -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multifactorauth/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multifactorauth/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/allowedDomainsClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/allowedDomainsClaim.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/allowedDomainsClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/allowedDomainsClaim.js -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/index.js -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/multitenancy/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/multitenancy/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/index.js -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/oauth2provider/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/oauth2provider/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/constants.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/constants.js -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/index.js -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/types.js -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/passwordless/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/passwordless/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/recipeModule/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/recipeModule/index.js -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/recipeModule/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/recipeModule/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/recipeModule/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/recipeModule/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/session/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/session/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/session/index.js -------------------------------------------------------------------------------- /lib/build/recipe/session/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/session/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/session/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/session/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/session/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/session/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/index.js -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/thirdparty/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/thirdparty/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/totp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/index.js -------------------------------------------------------------------------------- /lib/build/recipe/totp/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/totp/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/totp/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/recipe/totp/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/totp/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/totp/utils.js -------------------------------------------------------------------------------- /lib/build/recipe/userroles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/userroles/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/userroles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/userroles/index.js -------------------------------------------------------------------------------- /lib/build/recipe/userroles/permissionClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/userroles/permissionClaim.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/userroles/permissionClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/userroles/permissionClaim.js -------------------------------------------------------------------------------- /lib/build/recipe/userroles/userRoleClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/userroles/userRoleClaim.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/userroles/userRoleClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/userroles/userRoleClaim.js -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/index.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/index.js -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/recipe.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/recipe.js -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/types.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/types.js -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/utils.d.ts -------------------------------------------------------------------------------- /lib/build/recipe/webauthn/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/recipe/webauthn/utils.js -------------------------------------------------------------------------------- /lib/build/sdk/paths.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/sdk/paths.d.ts -------------------------------------------------------------------------------- /lib/build/sdk/paths.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/sdk/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/sdk/types.d.ts -------------------------------------------------------------------------------- /lib/build/sdk/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/sdk/types.js -------------------------------------------------------------------------------- /lib/build/sessionClaimValidatorStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/sessionClaimValidatorStore.d.ts -------------------------------------------------------------------------------- /lib/build/sessionClaimValidatorStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/sessionClaimValidatorStore.js -------------------------------------------------------------------------------- /lib/build/supertokens.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/supertokens.d.ts -------------------------------------------------------------------------------- /lib/build/supertokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/supertokens.js -------------------------------------------------------------------------------- /lib/build/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/types.d.ts -------------------------------------------------------------------------------- /lib/build/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/types.js -------------------------------------------------------------------------------- /lib/build/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/utils.d.ts -------------------------------------------------------------------------------- /lib/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/utils.js -------------------------------------------------------------------------------- /lib/build/version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/version.d.ts -------------------------------------------------------------------------------- /lib/build/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/version.js -------------------------------------------------------------------------------- /lib/build/versionChecker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/versionChecker.d.ts -------------------------------------------------------------------------------- /lib/build/versionChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/versionChecker.js -------------------------------------------------------------------------------- /lib/build/windowHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/windowHandler/index.d.ts -------------------------------------------------------------------------------- /lib/build/windowHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/windowHandler/index.js -------------------------------------------------------------------------------- /lib/build/windowHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/windowHandler/types.d.ts -------------------------------------------------------------------------------- /lib/build/windowHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/build/windowHandler/types.js -------------------------------------------------------------------------------- /lib/ts/bundleEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/bundleEntry.ts -------------------------------------------------------------------------------- /lib/ts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/constants.ts -------------------------------------------------------------------------------- /lib/ts/cookieHandler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/cookieHandler/index.ts -------------------------------------------------------------------------------- /lib/ts/cookieHandler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/cookieHandler/types.ts -------------------------------------------------------------------------------- /lib/ts/dateProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/dateProvider/index.ts -------------------------------------------------------------------------------- /lib/ts/dateProvider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/dateProvider/types.ts -------------------------------------------------------------------------------- /lib/ts/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/error.ts -------------------------------------------------------------------------------- /lib/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/index.ts -------------------------------------------------------------------------------- /lib/ts/normalisedURLDomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/normalisedURLDomain.ts -------------------------------------------------------------------------------- /lib/ts/normalisedURLPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/normalisedURLPath.ts -------------------------------------------------------------------------------- /lib/ts/postSuperTokensInitCallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/postSuperTokensInitCallbacks.ts -------------------------------------------------------------------------------- /lib/ts/querier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/querier.ts -------------------------------------------------------------------------------- /lib/ts/recipe/authRecipe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/authRecipe/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/authRecipe/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/authRecipe/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/authRecipe/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/authRecipe/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailpassword/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailpassword/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailpassword/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailpassword/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailpassword/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailpassword/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailverification/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/emailVerificationClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailverification/emailVerificationClaim.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailverification/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailverification/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailverification/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailverification/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/emailverification/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/emailverification/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multifactorauth/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/multiFactorAuthClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multifactorauth/multiFactorAuthClaim.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multifactorauth/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multifactorauth/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multifactorauth/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multifactorauth/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multifactorauth/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/allowedDomainsClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multitenancy/allowedDomainsClaim.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multitenancy/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multitenancy/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multitenancy/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multitenancy/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/multitenancy/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/multitenancy/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/oauth2provider/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/oauth2provider/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/oauth2provider/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/oauth2provider/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/oauth2provider/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/oauth2provider/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/passwordless/constants.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/passwordless/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/passwordless/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/passwordless/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/passwordless/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/passwordless/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/passwordless/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/recipeModule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/recipeModule/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/recipeModule/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/recipeModule/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/recipeModule/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/recipeModule/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/session/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/session/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/session/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/session/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/thirdparty/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/thirdparty/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/thirdparty/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/thirdparty/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/thirdparty/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/thirdparty/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/totp/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/totp/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/totp/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/totp/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/totp/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/totp/utils.ts -------------------------------------------------------------------------------- /lib/ts/recipe/userroles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/userroles/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/userroles/permissionClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/userroles/permissionClaim.ts -------------------------------------------------------------------------------- /lib/ts/recipe/userroles/userRoleClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/userroles/userRoleClaim.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/webauthn/index.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/webauthn/recipe.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/webauthn/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/webauthn/types.ts -------------------------------------------------------------------------------- /lib/ts/recipe/webauthn/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/recipe/webauthn/utils.ts -------------------------------------------------------------------------------- /lib/ts/sdk/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/sdk/paths.ts -------------------------------------------------------------------------------- /lib/ts/sdk/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/sdk/types.ts -------------------------------------------------------------------------------- /lib/ts/sdk/versions/3.1/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/sdk/versions/3.1/schema.d.ts -------------------------------------------------------------------------------- /lib/ts/sdk/versions/4.0/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/sdk/versions/4.0/schema.d.ts -------------------------------------------------------------------------------- /lib/ts/sdk/versions/4.1/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/sdk/versions/4.1/schema.d.ts -------------------------------------------------------------------------------- /lib/ts/sdk/versions/4.2/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/sdk/versions/4.2/schema.d.ts -------------------------------------------------------------------------------- /lib/ts/sessionClaimValidatorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/sessionClaimValidatorStore.ts -------------------------------------------------------------------------------- /lib/ts/supertokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/supertokens.ts -------------------------------------------------------------------------------- /lib/ts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/types.ts -------------------------------------------------------------------------------- /lib/ts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/utils.ts -------------------------------------------------------------------------------- /lib/ts/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/version.ts -------------------------------------------------------------------------------- /lib/ts/versionChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/versionChecker.ts -------------------------------------------------------------------------------- /lib/ts/windowHandler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/windowHandler/index.ts -------------------------------------------------------------------------------- /lib/ts/windowHandler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/ts/windowHandler/types.ts -------------------------------------------------------------------------------- /lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/lib/tslint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/package.json -------------------------------------------------------------------------------- /recipe/authRecipe/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipe/index.d.ts -------------------------------------------------------------------------------- /recipe/authRecipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipe/index.js -------------------------------------------------------------------------------- /recipe/authRecipe/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipe/types/index.d.ts -------------------------------------------------------------------------------- /recipe/authRecipe/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipe/types/index.js -------------------------------------------------------------------------------- /recipe/authRecipeWithEmailVerification/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipeWithEmailVerification/index.d.ts -------------------------------------------------------------------------------- /recipe/authRecipeWithEmailVerification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipeWithEmailVerification/index.js -------------------------------------------------------------------------------- /recipe/authRecipeWithEmailVerification/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipeWithEmailVerification/types/index.d.ts -------------------------------------------------------------------------------- /recipe/authRecipeWithEmailVerification/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/authRecipeWithEmailVerification/types/index.js -------------------------------------------------------------------------------- /recipe/emailpassword/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/index.d.ts -------------------------------------------------------------------------------- /recipe/emailpassword/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/index.js -------------------------------------------------------------------------------- /recipe/emailpassword/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/recipe.d.ts -------------------------------------------------------------------------------- /recipe/emailpassword/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/recipe.js -------------------------------------------------------------------------------- /recipe/emailpassword/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/recipeImplementation.d.ts -------------------------------------------------------------------------------- /recipe/emailpassword/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/recipeImplementation.js -------------------------------------------------------------------------------- /recipe/emailpassword/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/types/index.d.ts -------------------------------------------------------------------------------- /recipe/emailpassword/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/types/index.js -------------------------------------------------------------------------------- /recipe/emailpassword/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/utils.d.ts -------------------------------------------------------------------------------- /recipe/emailpassword/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailpassword/utils.js -------------------------------------------------------------------------------- /recipe/emailverification/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/index.d.ts -------------------------------------------------------------------------------- /recipe/emailverification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/index.js -------------------------------------------------------------------------------- /recipe/emailverification/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/recipe.d.ts -------------------------------------------------------------------------------- /recipe/emailverification/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/recipe.js -------------------------------------------------------------------------------- /recipe/emailverification/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/recipeImplementation.d.ts -------------------------------------------------------------------------------- /recipe/emailverification/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/recipeImplementation.js -------------------------------------------------------------------------------- /recipe/emailverification/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/types/index.d.ts -------------------------------------------------------------------------------- /recipe/emailverification/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/types/index.js -------------------------------------------------------------------------------- /recipe/emailverification/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/utils.d.ts -------------------------------------------------------------------------------- /recipe/emailverification/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/emailverification/utils.js -------------------------------------------------------------------------------- /recipe/multifactorauth/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multifactorauth/index.d.ts -------------------------------------------------------------------------------- /recipe/multifactorauth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multifactorauth/index.js -------------------------------------------------------------------------------- /recipe/multifactorauth/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multifactorauth/types/index.d.ts -------------------------------------------------------------------------------- /recipe/multifactorauth/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multifactorauth/types/index.js -------------------------------------------------------------------------------- /recipe/multitenancy/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multitenancy/index.d.ts -------------------------------------------------------------------------------- /recipe/multitenancy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multitenancy/index.js -------------------------------------------------------------------------------- /recipe/multitenancy/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multitenancy/types/index.d.ts -------------------------------------------------------------------------------- /recipe/multitenancy/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/multitenancy/types/index.js -------------------------------------------------------------------------------- /recipe/oauth2provider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/oauth2provider/index.d.ts -------------------------------------------------------------------------------- /recipe/oauth2provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/oauth2provider/index.js -------------------------------------------------------------------------------- /recipe/oauth2provider/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/oauth2provider/types/index.d.ts -------------------------------------------------------------------------------- /recipe/oauth2provider/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/oauth2provider/types/index.js -------------------------------------------------------------------------------- /recipe/passwordless/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/index.d.ts -------------------------------------------------------------------------------- /recipe/passwordless/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/index.js -------------------------------------------------------------------------------- /recipe/passwordless/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/recipe.d.ts -------------------------------------------------------------------------------- /recipe/passwordless/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/recipe.js -------------------------------------------------------------------------------- /recipe/passwordless/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/recipeImplementation.d.ts -------------------------------------------------------------------------------- /recipe/passwordless/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/recipeImplementation.js -------------------------------------------------------------------------------- /recipe/passwordless/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/types/index.d.ts -------------------------------------------------------------------------------- /recipe/passwordless/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/types/index.js -------------------------------------------------------------------------------- /recipe/passwordless/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/utils.d.ts -------------------------------------------------------------------------------- /recipe/passwordless/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/passwordless/utils.js -------------------------------------------------------------------------------- /recipe/recipeModule/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/recipeModule/index.d.ts -------------------------------------------------------------------------------- /recipe/recipeModule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/recipeModule/index.js -------------------------------------------------------------------------------- /recipe/recipeModule/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/recipeModule/types/index.d.ts -------------------------------------------------------------------------------- /recipe/recipeModule/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/recipeModule/types/index.js -------------------------------------------------------------------------------- /recipe/session/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/session/index.d.ts -------------------------------------------------------------------------------- /recipe/session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/session/index.js -------------------------------------------------------------------------------- /recipe/session/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/session/recipe.d.ts -------------------------------------------------------------------------------- /recipe/session/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/session/recipe.js -------------------------------------------------------------------------------- /recipe/session/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/session/types/index.d.ts -------------------------------------------------------------------------------- /recipe/session/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/session/types/index.js -------------------------------------------------------------------------------- /recipe/thirdparty/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/index.d.ts -------------------------------------------------------------------------------- /recipe/thirdparty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/index.js -------------------------------------------------------------------------------- /recipe/thirdparty/recipe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/recipe.d.ts -------------------------------------------------------------------------------- /recipe/thirdparty/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/recipe.js -------------------------------------------------------------------------------- /recipe/thirdparty/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/recipeImplementation.d.ts -------------------------------------------------------------------------------- /recipe/thirdparty/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/recipeImplementation.js -------------------------------------------------------------------------------- /recipe/thirdparty/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/types/index.d.ts -------------------------------------------------------------------------------- /recipe/thirdparty/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/types/index.js -------------------------------------------------------------------------------- /recipe/thirdparty/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/utils.d.ts -------------------------------------------------------------------------------- /recipe/thirdparty/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/thirdparty/utils.js -------------------------------------------------------------------------------- /recipe/totp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/totp/index.d.ts -------------------------------------------------------------------------------- /recipe/totp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/totp/index.js -------------------------------------------------------------------------------- /recipe/totp/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/totp/types/index.d.ts -------------------------------------------------------------------------------- /recipe/totp/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/totp/types/index.js -------------------------------------------------------------------------------- /recipe/userroles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/userroles/index.d.ts -------------------------------------------------------------------------------- /recipe/userroles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/userroles/index.js -------------------------------------------------------------------------------- /recipe/webauthn/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/webauthn/index.d.ts -------------------------------------------------------------------------------- /recipe/webauthn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/webauthn/index.js -------------------------------------------------------------------------------- /recipe/webauthn/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/webauthn/types/index.d.ts -------------------------------------------------------------------------------- /recipe/webauthn/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/recipe/webauthn/types/index.js -------------------------------------------------------------------------------- /scripts/generate-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/scripts/generate-schema.js -------------------------------------------------------------------------------- /test/unit/dateProvider.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/unit/dateProvider.test.js -------------------------------------------------------------------------------- /test/unit/emailverificationclaim.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/unit/emailverificationclaim.test.js -------------------------------------------------------------------------------- /test/unit/exports.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/unit/exports.test.js -------------------------------------------------------------------------------- /test/unit/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/unit/init.test.js -------------------------------------------------------------------------------- /test/unit/querier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/unit/querier.test.js -------------------------------------------------------------------------------- /test/unit/windowHandlers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/unit/windowHandlers.test.js -------------------------------------------------------------------------------- /test/with-typescript/.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /test/with-typescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/with-typescript/index.ts -------------------------------------------------------------------------------- /test/with-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/with-typescript/package-lock.json -------------------------------------------------------------------------------- /test/with-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/with-typescript/package.json -------------------------------------------------------------------------------- /test/with-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/test/with-typescript/tsconfig.json -------------------------------------------------------------------------------- /tslint-rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/tslint-rules/index.js -------------------------------------------------------------------------------- /tslint-rules/noDirectWindowRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/tslint-rules/noDirectWindowRule.js -------------------------------------------------------------------------------- /tslint-rules/noDirectWindowRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/tslint-rules/noDirectWindowRule.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/types/index.js -------------------------------------------------------------------------------- /utils/cookieHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/cookieHandler/index.d.ts -------------------------------------------------------------------------------- /utils/cookieHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/cookieHandler/index.js -------------------------------------------------------------------------------- /utils/cookieHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/cookieHandler/types.d.ts -------------------------------------------------------------------------------- /utils/cookieHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/cookieHandler/types.js -------------------------------------------------------------------------------- /utils/dateProvider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/dateProvider/index.d.ts -------------------------------------------------------------------------------- /utils/dateProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/dateProvider/index.js -------------------------------------------------------------------------------- /utils/dateProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/dateProvider/types.d.ts -------------------------------------------------------------------------------- /utils/dateProvider/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/dateProvider/types.js -------------------------------------------------------------------------------- /utils/error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/error.d.ts -------------------------------------------------------------------------------- /utils/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/error.js -------------------------------------------------------------------------------- /utils/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/index.d.ts -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/index.js -------------------------------------------------------------------------------- /utils/normalisedURLDomain.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/normalisedURLDomain.d.ts -------------------------------------------------------------------------------- /utils/normalisedURLDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/normalisedURLDomain.js -------------------------------------------------------------------------------- /utils/normalisedURLPath.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/normalisedURLPath.d.ts -------------------------------------------------------------------------------- /utils/normalisedURLPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/normalisedURLPath.js -------------------------------------------------------------------------------- /utils/postSuperTokensInitCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/postSuperTokensInitCallbacks.d.ts -------------------------------------------------------------------------------- /utils/postSuperTokensInitCallbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/postSuperTokensInitCallbacks.js -------------------------------------------------------------------------------- /utils/querier.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/querier.d.ts -------------------------------------------------------------------------------- /utils/querier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/querier.js -------------------------------------------------------------------------------- /utils/sessionClaimValidatorStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/sessionClaimValidatorStore.d.ts -------------------------------------------------------------------------------- /utils/sessionClaimValidatorStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/sessionClaimValidatorStore.js -------------------------------------------------------------------------------- /utils/windowHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/windowHandler/index.d.ts -------------------------------------------------------------------------------- /utils/windowHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/windowHandler/index.js -------------------------------------------------------------------------------- /utils/windowHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/windowHandler/types.d.ts -------------------------------------------------------------------------------- /utils/windowHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/utils/windowHandler/types.js -------------------------------------------------------------------------------- /webJsInterfaceSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/webJsInterfaceSupported.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-web-js/HEAD/webpack.config.js --------------------------------------------------------------------------------