├── .babelrc ├── .circleci ├── config.yml ├── config_continue.yml ├── doTests.sh ├── generateConfig.sh ├── markAsSuccess.sh ├── markDevTagAsTestNotPassed.sh ├── publish.sh ├── setupAndTestWithFreeCore.sh └── updateDocsInWebsite.sh ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── github-actions-changelog.yml │ ├── lint-pr-title.yml │ ├── pre-commit-hook-run.yml │ └── size-limit.yml ├── .gitignore ├── .mocharc.yml ├── .npmignore ├── .prettierignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── addDevTag ├── addReleaseTag ├── bundle └── bundle.js ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── icons.css │ ├── icons.png │ ├── icons@2x.png │ ├── main.js │ ├── search.js │ ├── style.css │ ├── widgets.png │ └── widgets@2x.png ├── classes │ ├── BooleanClaim.html │ ├── PrimitiveArrayClaim.html │ ├── PrimitiveClaim.html │ └── default.html ├── index.html └── modules.html ├── frontendDriverInterfaceSupported.json ├── hooks └── pre-commit.sh ├── index.d.ts ├── index.js ├── lib ├── .prettierrc ├── build │ ├── axios.d.ts │ ├── axios.js │ ├── axiosError.d.ts │ ├── axiosError.js │ ├── bundleEntry.d.ts │ ├── bundleEntry.js │ ├── claims │ │ ├── booleanClaim.d.ts │ │ ├── booleanClaim.js │ │ ├── primitiveArrayClaim.d.ts │ │ ├── primitiveArrayClaim.js │ │ ├── primitiveClaim.d.ts │ │ └── primitiveClaim.js │ ├── error.d.ts │ ├── error.js │ ├── fetch.d.ts │ ├── fetch.js │ ├── index.d.ts │ ├── index.js │ ├── logger.d.ts │ ├── logger.js │ ├── normalisedURLDomain.d.ts │ ├── normalisedURLDomain.js │ ├── normalisedURLPath.d.ts │ ├── normalisedURLPath.js │ ├── processState.d.ts │ ├── processState.js │ ├── recipeImplementation.d.ts │ ├── recipeImplementation.js │ ├── types.d.ts │ ├── types.js │ ├── utils │ │ ├── cookieHandler │ │ │ ├── defaultImplementation.d.ts │ │ │ ├── defaultImplementation.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ └── types.js │ │ ├── dateProvider │ │ │ ├── defaultImplementation.d.ts │ │ │ ├── defaultImplementation.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ └── types.js │ │ ├── globalClaimValidators.d.ts │ │ ├── globalClaimValidators.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lockFactory │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ └── types.js │ │ ├── sessionClaimValidatorStore.d.ts │ │ ├── sessionClaimValidatorStore.js │ │ └── windowHandler │ │ │ ├── defaultImplementation.d.ts │ │ │ ├── defaultImplementation.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ └── types.js │ ├── version.d.ts │ ├── version.js │ ├── xmlhttprequest.d.ts │ └── xmlhttprequest.js ├── ts │ ├── axios.ts │ ├── axiosError.ts │ ├── bundleEntry.ts │ ├── claims │ │ ├── booleanClaim.ts │ │ ├── primitiveArrayClaim.ts │ │ └── primitiveClaim.ts │ ├── error.ts │ ├── fetch.ts │ ├── index.ts │ ├── logger.ts │ ├── normalisedURLDomain.ts │ ├── normalisedURLPath.ts │ ├── processState.ts │ ├── recipeImplementation.ts │ ├── types.ts │ ├── utils │ │ ├── cookieHandler │ │ │ ├── defaultImplementation.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── dateProvider │ │ │ ├── defaultImplementation.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── globalClaimValidators.ts │ │ ├── index.ts │ │ ├── lockFactory │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── sessionClaimValidatorStore.ts │ │ └── windowHandler │ │ │ ├── defaultImplementation.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ ├── version.ts │ └── xmlhttprequest.ts ├── tsconfig.json └── tslint.json ├── package.json ├── test ├── accessToken.test.js ├── attemptRefreshingSession.test.js ├── axios.headers.test.js ├── axios.test.js ├── axios2.test.js ├── config.test.js ├── cookie.handler.test.js ├── cross.auto_refresh.test.js ├── cross.basic_jwt.test.js ├── cross.cross_domain.test.js ├── cross.disable_interception.test.js ├── cross.resp_error.test.js ├── cross.token_migration.test.js ├── cross.unauthorised_event.test.js ├── docker │ ├── node14 │ │ └── Dockerfile │ └── node16 │ │ └── Dockerfile ├── doesSessionExist.test.js ├── fetch.headers.test.js ├── fetch.test.js ├── general.error.test.js ├── getAccessToken.test.js ├── interception.basic1.test.js ├── interception.claims.test.js ├── interception.manual_auth_header.test.js ├── interception.testgen.js ├── server │ ├── .gitignore │ ├── angular │ │ ├── main.js │ │ ├── polyfills.js │ │ ├── runtime.js │ │ └── vendor.js │ ├── index.html │ ├── index.js │ ├── package.json │ └── utils.js ├── sessionClaimValidatorRefresh.test.js ├── sessionClaims.test.js ├── startServer ├── tsconfig.json ├── utils.js ├── window.handler.test.js ├── with-typescript.ts └── xmlhttprequest.test.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 │ ├── index.d.ts │ └── index.js ├── globalClaimValidators │ ├── index.d.ts │ └── index.js ├── lockFactory │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ └── types.js ├── sessionClaimValidatorStore │ ├── index.d.ts │ └── index.js └── windowHandler │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ └── types.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/config_continue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/config_continue.yml -------------------------------------------------------------------------------- /.circleci/doTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/doTests.sh -------------------------------------------------------------------------------- /.circleci/generateConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/generateConfig.sh -------------------------------------------------------------------------------- /.circleci/markAsSuccess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/markAsSuccess.sh -------------------------------------------------------------------------------- /.circleci/markDevTagAsTestNotPassed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/markDevTagAsTestNotPassed.sh -------------------------------------------------------------------------------- /.circleci/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/publish.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFreeCore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/setupAndTestWithFreeCore.sh -------------------------------------------------------------------------------- /.circleci/updateDocsInWebsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.circleci/updateDocsInWebsite.sh -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | lib/build/**/* linguist-generated=true -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/github-actions-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.github/workflows/github-actions-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-hook-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.github/workflows/pre-commit-hook-run.yml -------------------------------------------------------------------------------- /.github/workflows/size-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.github/workflows/size-limit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | docs/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/README.md -------------------------------------------------------------------------------- /addDevTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/addDevTag -------------------------------------------------------------------------------- /addReleaseTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/addReleaseTag -------------------------------------------------------------------------------- /bundle/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/bundle/bundle.js -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/icons.css -------------------------------------------------------------------------------- /docs/assets/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/icons.png -------------------------------------------------------------------------------- /docs/assets/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/widgets.png -------------------------------------------------------------------------------- /docs/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/classes/BooleanClaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/classes/BooleanClaim.html -------------------------------------------------------------------------------- /docs/classes/PrimitiveArrayClaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/classes/PrimitiveArrayClaim.html -------------------------------------------------------------------------------- /docs/classes/PrimitiveClaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/classes/PrimitiveClaim.html -------------------------------------------------------------------------------- /docs/classes/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/classes/default.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/docs/modules.html -------------------------------------------------------------------------------- /frontendDriverInterfaceSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/frontendDriverInterfaceSupported.json -------------------------------------------------------------------------------- /hooks/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/hooks/pre-commit.sh -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/index.js -------------------------------------------------------------------------------- /lib/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/.prettierrc -------------------------------------------------------------------------------- /lib/build/axios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/axios.d.ts -------------------------------------------------------------------------------- /lib/build/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/axios.js -------------------------------------------------------------------------------- /lib/build/axiosError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/axiosError.d.ts -------------------------------------------------------------------------------- /lib/build/axiosError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/axiosError.js -------------------------------------------------------------------------------- /lib/build/bundleEntry.d.ts: -------------------------------------------------------------------------------- 1 | export * from "."; 2 | -------------------------------------------------------------------------------- /lib/build/bundleEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/bundleEntry.js -------------------------------------------------------------------------------- /lib/build/claims/booleanClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/claims/booleanClaim.d.ts -------------------------------------------------------------------------------- /lib/build/claims/booleanClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/claims/booleanClaim.js -------------------------------------------------------------------------------- /lib/build/claims/primitiveArrayClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/claims/primitiveArrayClaim.d.ts -------------------------------------------------------------------------------- /lib/build/claims/primitiveArrayClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/claims/primitiveArrayClaim.js -------------------------------------------------------------------------------- /lib/build/claims/primitiveClaim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/claims/primitiveClaim.d.ts -------------------------------------------------------------------------------- /lib/build/claims/primitiveClaim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/claims/primitiveClaim.js -------------------------------------------------------------------------------- /lib/build/error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/error.d.ts -------------------------------------------------------------------------------- /lib/build/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/error.js -------------------------------------------------------------------------------- /lib/build/fetch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/fetch.d.ts -------------------------------------------------------------------------------- /lib/build/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/fetch.js -------------------------------------------------------------------------------- /lib/build/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/index.d.ts -------------------------------------------------------------------------------- /lib/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/index.js -------------------------------------------------------------------------------- /lib/build/logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/logger.d.ts -------------------------------------------------------------------------------- /lib/build/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/logger.js -------------------------------------------------------------------------------- /lib/build/normalisedURLDomain.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/normalisedURLDomain.d.ts -------------------------------------------------------------------------------- /lib/build/normalisedURLDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/normalisedURLDomain.js -------------------------------------------------------------------------------- /lib/build/normalisedURLPath.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/normalisedURLPath.d.ts -------------------------------------------------------------------------------- /lib/build/normalisedURLPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/normalisedURLPath.js -------------------------------------------------------------------------------- /lib/build/processState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/processState.d.ts -------------------------------------------------------------------------------- /lib/build/processState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/processState.js -------------------------------------------------------------------------------- /lib/build/recipeImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/recipeImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/recipeImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/recipeImplementation.js -------------------------------------------------------------------------------- /lib/build/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/types.d.ts -------------------------------------------------------------------------------- /lib/build/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/types.js -------------------------------------------------------------------------------- /lib/build/utils/cookieHandler/defaultImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/cookieHandler/defaultImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/utils/cookieHandler/defaultImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/cookieHandler/defaultImplementation.js -------------------------------------------------------------------------------- /lib/build/utils/cookieHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/cookieHandler/index.d.ts -------------------------------------------------------------------------------- /lib/build/utils/cookieHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/cookieHandler/index.js -------------------------------------------------------------------------------- /lib/build/utils/cookieHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/cookieHandler/types.d.ts -------------------------------------------------------------------------------- /lib/build/utils/cookieHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/cookieHandler/types.js -------------------------------------------------------------------------------- /lib/build/utils/dateProvider/defaultImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/dateProvider/defaultImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/utils/dateProvider/defaultImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/dateProvider/defaultImplementation.js -------------------------------------------------------------------------------- /lib/build/utils/dateProvider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/dateProvider/index.d.ts -------------------------------------------------------------------------------- /lib/build/utils/dateProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/dateProvider/index.js -------------------------------------------------------------------------------- /lib/build/utils/dateProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/dateProvider/types.d.ts -------------------------------------------------------------------------------- /lib/build/utils/dateProvider/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/dateProvider/types.js -------------------------------------------------------------------------------- /lib/build/utils/globalClaimValidators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/globalClaimValidators.d.ts -------------------------------------------------------------------------------- /lib/build/utils/globalClaimValidators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/globalClaimValidators.js -------------------------------------------------------------------------------- /lib/build/utils/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/index.d.ts -------------------------------------------------------------------------------- /lib/build/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/index.js -------------------------------------------------------------------------------- /lib/build/utils/lockFactory/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/lockFactory/index.d.ts -------------------------------------------------------------------------------- /lib/build/utils/lockFactory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/lockFactory/index.js -------------------------------------------------------------------------------- /lib/build/utils/lockFactory/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/lockFactory/types.d.ts -------------------------------------------------------------------------------- /lib/build/utils/lockFactory/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /lib/build/utils/sessionClaimValidatorStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/sessionClaimValidatorStore.d.ts -------------------------------------------------------------------------------- /lib/build/utils/sessionClaimValidatorStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/sessionClaimValidatorStore.js -------------------------------------------------------------------------------- /lib/build/utils/windowHandler/defaultImplementation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/windowHandler/defaultImplementation.d.ts -------------------------------------------------------------------------------- /lib/build/utils/windowHandler/defaultImplementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/windowHandler/defaultImplementation.js -------------------------------------------------------------------------------- /lib/build/utils/windowHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/windowHandler/index.d.ts -------------------------------------------------------------------------------- /lib/build/utils/windowHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/windowHandler/index.js -------------------------------------------------------------------------------- /lib/build/utils/windowHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/windowHandler/types.d.ts -------------------------------------------------------------------------------- /lib/build/utils/windowHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/utils/windowHandler/types.js -------------------------------------------------------------------------------- /lib/build/version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/version.d.ts -------------------------------------------------------------------------------- /lib/build/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/version.js -------------------------------------------------------------------------------- /lib/build/xmlhttprequest.d.ts: -------------------------------------------------------------------------------- 1 | export declare function addInterceptorsToXMLHttpRequest(): void; 2 | -------------------------------------------------------------------------------- /lib/build/xmlhttprequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/build/xmlhttprequest.js -------------------------------------------------------------------------------- /lib/ts/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/axios.ts -------------------------------------------------------------------------------- /lib/ts/axiosError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/axiosError.ts -------------------------------------------------------------------------------- /lib/ts/bundleEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/bundleEntry.ts -------------------------------------------------------------------------------- /lib/ts/claims/booleanClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/claims/booleanClaim.ts -------------------------------------------------------------------------------- /lib/ts/claims/primitiveArrayClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/claims/primitiveArrayClaim.ts -------------------------------------------------------------------------------- /lib/ts/claims/primitiveClaim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/claims/primitiveClaim.ts -------------------------------------------------------------------------------- /lib/ts/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/error.ts -------------------------------------------------------------------------------- /lib/ts/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/fetch.ts -------------------------------------------------------------------------------- /lib/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/index.ts -------------------------------------------------------------------------------- /lib/ts/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/logger.ts -------------------------------------------------------------------------------- /lib/ts/normalisedURLDomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/normalisedURLDomain.ts -------------------------------------------------------------------------------- /lib/ts/normalisedURLPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/normalisedURLPath.ts -------------------------------------------------------------------------------- /lib/ts/processState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/processState.ts -------------------------------------------------------------------------------- /lib/ts/recipeImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/recipeImplementation.ts -------------------------------------------------------------------------------- /lib/ts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/types.ts -------------------------------------------------------------------------------- /lib/ts/utils/cookieHandler/defaultImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/cookieHandler/defaultImplementation.ts -------------------------------------------------------------------------------- /lib/ts/utils/cookieHandler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/cookieHandler/index.ts -------------------------------------------------------------------------------- /lib/ts/utils/cookieHandler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/cookieHandler/types.ts -------------------------------------------------------------------------------- /lib/ts/utils/dateProvider/defaultImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/dateProvider/defaultImplementation.ts -------------------------------------------------------------------------------- /lib/ts/utils/dateProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/dateProvider/index.ts -------------------------------------------------------------------------------- /lib/ts/utils/dateProvider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/dateProvider/types.ts -------------------------------------------------------------------------------- /lib/ts/utils/globalClaimValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/globalClaimValidators.ts -------------------------------------------------------------------------------- /lib/ts/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/index.ts -------------------------------------------------------------------------------- /lib/ts/utils/lockFactory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/lockFactory/index.ts -------------------------------------------------------------------------------- /lib/ts/utils/lockFactory/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/lockFactory/types.ts -------------------------------------------------------------------------------- /lib/ts/utils/sessionClaimValidatorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/sessionClaimValidatorStore.ts -------------------------------------------------------------------------------- /lib/ts/utils/windowHandler/defaultImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/windowHandler/defaultImplementation.ts -------------------------------------------------------------------------------- /lib/ts/utils/windowHandler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/windowHandler/index.ts -------------------------------------------------------------------------------- /lib/ts/utils/windowHandler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/utils/windowHandler/types.ts -------------------------------------------------------------------------------- /lib/ts/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/version.ts -------------------------------------------------------------------------------- /lib/ts/xmlhttprequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/ts/xmlhttprequest.ts -------------------------------------------------------------------------------- /lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/lib/tslint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/package.json -------------------------------------------------------------------------------- /test/accessToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/accessToken.test.js -------------------------------------------------------------------------------- /test/attemptRefreshingSession.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/attemptRefreshingSession.test.js -------------------------------------------------------------------------------- /test/axios.headers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/axios.headers.test.js -------------------------------------------------------------------------------- /test/axios.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/axios.test.js -------------------------------------------------------------------------------- /test/axios2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/axios2.test.js -------------------------------------------------------------------------------- /test/config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/config.test.js -------------------------------------------------------------------------------- /test/cookie.handler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cookie.handler.test.js -------------------------------------------------------------------------------- /test/cross.auto_refresh.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cross.auto_refresh.test.js -------------------------------------------------------------------------------- /test/cross.basic_jwt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cross.basic_jwt.test.js -------------------------------------------------------------------------------- /test/cross.cross_domain.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cross.cross_domain.test.js -------------------------------------------------------------------------------- /test/cross.disable_interception.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cross.disable_interception.test.js -------------------------------------------------------------------------------- /test/cross.resp_error.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cross.resp_error.test.js -------------------------------------------------------------------------------- /test/cross.token_migration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cross.token_migration.test.js -------------------------------------------------------------------------------- /test/cross.unauthorised_event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/cross.unauthorised_event.test.js -------------------------------------------------------------------------------- /test/docker/node14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/docker/node14/Dockerfile -------------------------------------------------------------------------------- /test/docker/node16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/docker/node16/Dockerfile -------------------------------------------------------------------------------- /test/doesSessionExist.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/doesSessionExist.test.js -------------------------------------------------------------------------------- /test/fetch.headers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/fetch.headers.test.js -------------------------------------------------------------------------------- /test/fetch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/fetch.test.js -------------------------------------------------------------------------------- /test/general.error.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/general.error.test.js -------------------------------------------------------------------------------- /test/getAccessToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/getAccessToken.test.js -------------------------------------------------------------------------------- /test/interception.basic1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/interception.basic1.test.js -------------------------------------------------------------------------------- /test/interception.claims.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/interception.claims.test.js -------------------------------------------------------------------------------- /test/interception.manual_auth_header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/interception.manual_auth_header.test.js -------------------------------------------------------------------------------- /test/interception.testgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/interception.testgen.js -------------------------------------------------------------------------------- /test/server/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /test/server/angular/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/angular/main.js -------------------------------------------------------------------------------- /test/server/angular/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/angular/polyfills.js -------------------------------------------------------------------------------- /test/server/angular/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/angular/runtime.js -------------------------------------------------------------------------------- /test/server/angular/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/angular/vendor.js -------------------------------------------------------------------------------- /test/server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/index.html -------------------------------------------------------------------------------- /test/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/index.js -------------------------------------------------------------------------------- /test/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/package.json -------------------------------------------------------------------------------- /test/server/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/server/utils.js -------------------------------------------------------------------------------- /test/sessionClaimValidatorRefresh.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/sessionClaimValidatorRefresh.test.js -------------------------------------------------------------------------------- /test/sessionClaims.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/sessionClaims.test.js -------------------------------------------------------------------------------- /test/startServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/startServer -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/utils.js -------------------------------------------------------------------------------- /test/window.handler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/window.handler.test.js -------------------------------------------------------------------------------- /test/with-typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/with-typescript.ts -------------------------------------------------------------------------------- /test/xmlhttprequest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/test/xmlhttprequest.test.js -------------------------------------------------------------------------------- /utils/cookieHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/cookieHandler/index.d.ts -------------------------------------------------------------------------------- /utils/cookieHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/cookieHandler/index.js -------------------------------------------------------------------------------- /utils/cookieHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/cookieHandler/types.d.ts -------------------------------------------------------------------------------- /utils/cookieHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/cookieHandler/types.js -------------------------------------------------------------------------------- /utils/dateProvider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/dateProvider/index.d.ts -------------------------------------------------------------------------------- /utils/dateProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/dateProvider/index.js -------------------------------------------------------------------------------- /utils/dateProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/dateProvider/types.d.ts -------------------------------------------------------------------------------- /utils/dateProvider/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/dateProvider/types.js -------------------------------------------------------------------------------- /utils/error/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/error/index.d.ts -------------------------------------------------------------------------------- /utils/error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/error/index.js -------------------------------------------------------------------------------- /utils/globalClaimValidators/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/globalClaimValidators/index.d.ts -------------------------------------------------------------------------------- /utils/globalClaimValidators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/globalClaimValidators/index.js -------------------------------------------------------------------------------- /utils/lockFactory/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/lockFactory/index.d.ts -------------------------------------------------------------------------------- /utils/lockFactory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/lockFactory/index.js -------------------------------------------------------------------------------- /utils/lockFactory/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/lockFactory/types.d.ts -------------------------------------------------------------------------------- /utils/lockFactory/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/lockFactory/types.js -------------------------------------------------------------------------------- /utils/sessionClaimValidatorStore/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/sessionClaimValidatorStore/index.d.ts -------------------------------------------------------------------------------- /utils/sessionClaimValidatorStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/sessionClaimValidatorStore/index.js -------------------------------------------------------------------------------- /utils/windowHandler/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/windowHandler/index.d.ts -------------------------------------------------------------------------------- /utils/windowHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/windowHandler/index.js -------------------------------------------------------------------------------- /utils/windowHandler/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/windowHandler/types.d.ts -------------------------------------------------------------------------------- /utils/windowHandler/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/utils/windowHandler/types.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-website/HEAD/webpack.config.js --------------------------------------------------------------------------------