├── .babelrc ├── .beachballrc ├── .browserslistrc ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation.yml │ └── feature_request.yml ├── actions │ └── issue_template_bot │ │ ├── README.md │ │ ├── action.yml │ │ ├── dist │ │ └── index.js │ │ ├── main │ │ ├── IssueManager.ts │ │ ├── TemplateEnforcer.ts │ │ └── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── types │ │ ├── HeaderConfig.ts │ │ ├── IssueBotConfig.ts │ │ ├── IssueLabelerConfig.ts │ │ ├── LabelConfig.ts │ │ ├── ProjectConfig.ts │ │ └── RepoParams.ts │ │ └── utils │ │ ├── Constants.ts │ │ ├── IssueBotUtils.ts │ │ ├── StringUtils.ts │ │ └── github_api_utils │ │ ├── IssueAssignees.ts │ │ ├── IssueComments.ts │ │ ├── IssueLabels.ts │ │ ├── ProjectBoard.ts │ │ └── RepoFiles.ts ├── copilot-instructions.md ├── dependabot.yml ├── instructions │ ├── custom_auth_product.instructions.md │ ├── custom_auth_structure.instructions.md │ └── custom_auth_tech.instructions.md ├── issue_template_bot.json ├── labeler.yml ├── policies │ └── resourceManagement.yml └── workflows │ ├── beachball-bump.yml │ ├── beachball-check.yml │ ├── client-credential-benchmark.yml │ ├── issue-template-bot.yml │ ├── label.yml │ ├── metadata-check.yml │ ├── msal-node-confidential-client-benchmarks.yml │ ├── npm-audit.yml │ └── typedoc.yml ├── .gitignore ├── .nojekyll ├── .npmrc ├── .pipelines ├── 1p-build.yml ├── 1p-e2e.yml ├── 3p-e2e.yml ├── nightly-build.yml └── sdl.yml ├── .vscode ├── extensions.json └── settings.json ├── CODEOWNERS ├── LICENSE ├── README.md ├── SECURITY.md ├── api-extractor-base.json ├── change ├── @azure-msal-browser-bdb9bd60-08c2-4532-b0cd-2b9830ffa03f.json ├── @azure-msal-common-c8d42435-3b15-43cc-9cce-19f00d77e61e.json └── @azure-msal-react-73b5ab86-bd91-43d6-92e4-73f11de22120.json ├── codecov.yml ├── contributing.md ├── dev-scripts └── updatePemCert.js ├── docs ├── diagrams │ ├── png │ │ └── PackageStructure.png │ └── visio │ │ └── PackageStructure.vsdx └── images │ ├── beachball-changemessage.png │ └── beachball-changetype.png ├── extensions ├── docs │ ├── diagrams │ │ ├── png │ │ │ ├── msal-node-extensions-persistence-cache-plugin.png │ │ │ └── msal-node-extensions-persistence.png │ │ └── visio │ │ │ ├── msal-node-extensions-persistence-cache-plugin.vsdx │ │ │ └── msal-node-extensions-persistence.vsdm │ ├── faq.md │ └── msal-node-extensions.md ├── msal-node-extensions │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── binding.gyp │ ├── jest.config.cjs │ ├── package.json │ ├── rollup.config.js │ ├── scripts │ │ ├── buildBinaries.cjs │ │ └── checkBinaries.cjs │ ├── src │ │ ├── Dpapi.ts │ │ ├── broker │ │ │ └── NativeBrokerPlugin.ts │ │ ├── dpapi-addon │ │ │ ├── dpapi_addon.h │ │ │ ├── dpapi_not_supported.cpp │ │ │ ├── dpapi_win.cpp │ │ │ └── main.cpp │ │ ├── error │ │ │ └── PersistenceError.ts │ │ ├── index.ts │ │ ├── lock │ │ │ ├── CrossPlatformLock.ts │ │ │ └── CrossPlatformLockOptions.ts │ │ ├── packageMetadata.ts │ │ ├── persistence │ │ │ ├── BasePersistence.ts │ │ │ ├── DataProtectionScope.ts │ │ │ ├── FilePersistence.ts │ │ │ ├── FilePersistenceWithDataProtection.ts │ │ │ ├── IPersistence.ts │ │ │ ├── IPersistenceConfiguration.ts │ │ │ ├── KeychainPersistence.ts │ │ │ ├── LibSecretPersistence.ts │ │ │ ├── PersistenceCachePlugin.ts │ │ │ └── PersistenceCreator.ts │ │ └── utils │ │ │ ├── Constants.ts │ │ │ ├── Environment.ts │ │ │ └── TypeGuards.ts │ ├── test │ │ ├── __mocks__ │ │ │ └── @azure │ │ │ │ └── msal-node-runtime.js │ │ ├── broker │ │ │ └── NativeBrokerPlugin.spec.ts │ │ ├── dpapi-addon │ │ │ └── Dpapi.spec.ts │ │ ├── lock │ │ │ └── CrossPlatformLock.spec.ts │ │ ├── performance-test │ │ │ ├── CachePerformanceTest.spec.ts │ │ │ └── LockAndWriteToStorageScript.cjs │ │ ├── persistence │ │ │ ├── FilePersistence.spec.ts │ │ │ ├── FilePersistenceWithDataProtection.spec.ts │ │ │ ├── KeychainPersistence.spec.ts │ │ │ ├── LibSecretPersistence.spec.ts │ │ │ ├── PersistenceCachePlugin.spec.ts │ │ │ └── PersistenceCreator.spec.ts │ │ ├── util │ │ │ ├── FileSystemUtils.ts │ │ │ └── TestConstants.ts │ │ └── utils │ │ │ └── Environment.spec.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── typedoc.json └── samples │ └── electron-webpack │ ├── .beachballrc │ ├── .gitignore │ ├── .npmrc │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── forge.config.ts │ ├── index.html │ ├── package.json │ ├── src │ ├── AuthProvider.ts │ ├── Preload.ts │ ├── UIManager.ts │ ├── authConfig.ts │ ├── index.scss │ ├── main.ts │ └── renderer.ts │ ├── tsconfig.json │ ├── webpack.main.config.ts │ ├── webpack.plugins.ts │ ├── webpack.renderer.config.ts │ └── webpack.rules.ts ├── gen_env.ps1 ├── gen_env.sh ├── lib ├── msal-angular │ ├── .beachballrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── FAQ.md │ ├── LICENSE │ ├── README.md │ ├── angular.json │ ├── docs │ │ ├── angular-universal.md │ │ ├── configuration.md │ │ ├── errors.md │ │ ├── events.md │ │ ├── initialization.md │ │ ├── known-issues.md │ │ ├── logging.md │ │ ├── msal-guard.md │ │ ├── msal-interceptor.md │ │ ├── multi-tenant.md │ │ ├── performance.md │ │ ├── public-apis.md │ │ ├── redirects.md │ │ ├── security.md │ │ ├── ssosilent.md │ │ ├── v0-v1-upgrade-guide.md │ │ ├── v1-v2-upgrade-guide.md │ │ ├── v2-v3-upgrade-guide.md │ │ └── v3-v4-upgrade-guide.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ │ ├── IMsalService.ts │ │ ├── constants.ts │ │ ├── msal.broadcast.config.ts │ │ ├── msal.broadcast.service.spec.ts │ │ ├── msal.broadcast.service.ts │ │ ├── msal.guard.config.ts │ │ ├── msal.guard.spec.ts │ │ ├── msal.guard.ts │ │ ├── msal.interceptor.config.ts │ │ ├── msal.interceptor.spec.ts │ │ ├── msal.interceptor.ts │ │ ├── msal.module.ts │ │ ├── msal.navigation.client.spec.ts │ │ ├── msal.navigation.client.ts │ │ ├── msal.redirect.component.spec.ts │ │ ├── msal.redirect.component.ts │ │ ├── msal.service.spec.ts │ │ ├── msal.service.ts │ │ ├── packageMetadata.ts │ │ ├── public-api.ts │ │ └── test.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── typedoc.json ├── msal-browser │ ├── .babelrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── FAQ.md │ ├── LICENSE │ ├── README.md │ ├── api-extractor.json │ ├── apiReview │ │ └── msal-browser.api.md │ ├── docs │ │ ├── access-token-proof-of-possession.md │ │ ├── accounts.md │ │ ├── acquire-token.md │ │ ├── caching.md │ │ ├── cdn-usage.md │ │ ├── configuration.md │ │ ├── device-bound-tokens.md │ │ ├── errors.md │ │ ├── events.md │ │ ├── iframe-usage.md │ │ ├── images │ │ │ ├── BrowserLogEnablement.png │ │ │ ├── clientTypeRegistrationUpdate.png │ │ │ ├── msaljs-boot-flow.png │ │ │ └── redirectURIRegistrationUpdate.png │ │ ├── initialization.md │ │ ├── instance-aware.md │ │ ├── logging.md │ │ ├── login-user.md │ │ ├── logout.md │ │ ├── navigation.md │ │ ├── performance.md │ │ ├── request-response-object.md │ │ ├── resources-and-scopes.md │ │ ├── response.md │ │ ├── shr-client-claims.md │ │ ├── shr-server-nonce.md │ │ ├── signed-http-request.md │ │ ├── ssh-certificates.md │ │ ├── testing.md │ │ ├── token-lifetimes.md │ │ ├── v1-migration.md │ │ ├── v2-migration.md │ │ ├── v3-migration.md │ │ └── working-with-b2c.md │ ├── jest.config.cjs │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── app │ │ │ ├── IPublicClientApplication.ts │ │ │ ├── PublicClientApplication.ts │ │ │ └── PublicClientNext.ts │ │ ├── broker │ │ │ └── nativeBroker │ │ │ │ ├── IPlatformAuthHandler.ts │ │ │ │ ├── NativeStatusCodes.ts │ │ │ │ ├── PlatformAuthDOMHandler.ts │ │ │ │ ├── PlatformAuthExtensionHandler.ts │ │ │ │ ├── PlatformAuthProvider.ts │ │ │ │ ├── PlatformAuthRequest.ts │ │ │ │ └── PlatformAuthResponse.ts │ │ ├── cache │ │ │ ├── AccountManager.ts │ │ │ ├── AsyncMemoryStorage.ts │ │ │ ├── BrowserCacheManager.ts │ │ │ ├── CacheHelpers.ts │ │ │ ├── CacheKeys.ts │ │ │ ├── CookieStorage.ts │ │ │ ├── DatabaseStorage.ts │ │ │ ├── EncryptedData.ts │ │ │ ├── IAsyncStorage.ts │ │ │ ├── ITokenCache.ts │ │ │ ├── IWindowStorage.ts │ │ │ ├── LocalStorage.ts │ │ │ ├── MemoryStorage.ts │ │ │ ├── SessionStorage.ts │ │ │ └── TokenCache.ts │ │ ├── config │ │ │ └── Configuration.ts │ │ ├── controllers │ │ │ ├── ControllerFactory.ts │ │ │ ├── IController.ts │ │ │ ├── NestedAppAuthController.ts │ │ │ ├── StandardController.ts │ │ │ └── UnknownOperatingContextController.ts │ │ ├── crypto │ │ │ ├── BrowserCrypto.ts │ │ │ ├── CryptoOps.ts │ │ │ ├── PkceGenerator.ts │ │ │ └── SignedHttpRequest.ts │ │ ├── custom_auth │ │ │ ├── CustomAuthActionInputs.ts │ │ │ ├── CustomAuthConstants.ts │ │ │ ├── CustomAuthPublicClientApplication.ts │ │ │ ├── ICustomAuthPublicClientApplication.ts │ │ │ ├── UserAccountAttributes.ts │ │ │ ├── configuration │ │ │ │ └── CustomAuthConfiguration.ts │ │ │ ├── controller │ │ │ │ ├── CustomAuthStandardController.ts │ │ │ │ └── ICustomAuthStandardController.ts │ │ │ ├── core │ │ │ │ ├── CustomAuthAuthority.ts │ │ │ │ ├── auth_flow │ │ │ │ │ ├── AuthFlowErrorBase.ts │ │ │ │ │ ├── AuthFlowResultBase.ts │ │ │ │ │ ├── AuthFlowState.ts │ │ │ │ │ ├── AuthFlowStateTypes.ts │ │ │ │ │ ├── jit │ │ │ │ │ │ ├── AuthMethodDetails.ts │ │ │ │ │ │ ├── error_type │ │ │ │ │ │ │ └── AuthMethodRegistrationError.ts │ │ │ │ │ │ ├── result │ │ │ │ │ │ │ ├── AuthMethodRegistrationChallengeMethodResult.ts │ │ │ │ │ │ │ └── AuthMethodRegistrationSubmitChallengeResult.ts │ │ │ │ │ │ └── state │ │ │ │ │ │ │ ├── AuthMethodRegistrationCompletedState.ts │ │ │ │ │ │ │ ├── AuthMethodRegistrationFailedState.ts │ │ │ │ │ │ │ ├── AuthMethodRegistrationState.ts │ │ │ │ │ │ │ └── AuthMethodRegistrationStateParameters.ts │ │ │ │ │ └── mfa │ │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── MfaError.ts │ │ │ │ │ │ ├── result │ │ │ │ │ │ ├── MfaRequestChallengeResult.ts │ │ │ │ │ │ └── MfaSubmitChallengeResult.ts │ │ │ │ │ │ └── state │ │ │ │ │ │ ├── MfaCompletedState.ts │ │ │ │ │ │ ├── MfaFailedState.ts │ │ │ │ │ │ ├── MfaState.ts │ │ │ │ │ │ └── MfaStateParameters.ts │ │ │ │ ├── error │ │ │ │ │ ├── CustomAuthApiError.ts │ │ │ │ │ ├── CustomAuthError.ts │ │ │ │ │ ├── HttpError.ts │ │ │ │ │ ├── HttpErrorCodes.ts │ │ │ │ │ ├── InvalidArgumentError.ts │ │ │ │ │ ├── InvalidConfigurationError.ts │ │ │ │ │ ├── InvalidConfigurationErrorCodes.ts │ │ │ │ │ ├── MethodNotImplementedError.ts │ │ │ │ │ ├── MsalCustomAuthError.ts │ │ │ │ │ ├── NoCachedAccountFoundError.ts │ │ │ │ │ ├── ParsedUrlError.ts │ │ │ │ │ ├── ParsedUrlErrorCodes.ts │ │ │ │ │ ├── UnexpectedError.ts │ │ │ │ │ ├── UnsupportedEnvironmentError.ts │ │ │ │ │ ├── UserAccountAttributeError.ts │ │ │ │ │ ├── UserAccountAttributeErrorCodes.ts │ │ │ │ │ └── UserAlreadySignedInError.ts │ │ │ │ ├── interaction_client │ │ │ │ │ ├── CustomAuthInteractionClientBase.ts │ │ │ │ │ ├── CustomAuthInterationClientFactory.ts │ │ │ │ │ ├── jit │ │ │ │ │ │ ├── JitClient.ts │ │ │ │ │ │ ├── parameter │ │ │ │ │ │ │ └── JitParams.ts │ │ │ │ │ │ └── result │ │ │ │ │ │ │ └── JitActionResult.ts │ │ │ │ │ └── mfa │ │ │ │ │ │ ├── MfaClient.ts │ │ │ │ │ │ ├── parameter │ │ │ │ │ │ └── MfaClientParameters.ts │ │ │ │ │ │ └── result │ │ │ │ │ │ └── MfaActionResult.ts │ │ │ │ ├── network_client │ │ │ │ │ ├── custom_auth_api │ │ │ │ │ │ ├── BaseApiClient.ts │ │ │ │ │ │ ├── CustomAuthApiClient.ts │ │ │ │ │ │ ├── CustomAuthApiEndpoint.ts │ │ │ │ │ │ ├── ICustomAuthApiClient.ts │ │ │ │ │ │ ├── RegisterApiClient.ts │ │ │ │ │ │ ├── ResetPasswordApiClient.ts │ │ │ │ │ │ ├── SignInApiClient.ts │ │ │ │ │ │ ├── SignupApiClient.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── ApiErrorCodes.ts │ │ │ │ │ │ │ ├── ApiErrorResponseTypes.ts │ │ │ │ │ │ │ ├── ApiRequestTypes.ts │ │ │ │ │ │ │ ├── ApiResponseTypes.ts │ │ │ │ │ │ │ ├── ApiSuberrors.ts │ │ │ │ │ │ │ └── ApiTypesBase.ts │ │ │ │ │ └── http_client │ │ │ │ │ │ ├── FetchHttpClient.ts │ │ │ │ │ │ └── IHttpClient.ts │ │ │ │ ├── telemetry │ │ │ │ │ └── PublicApiId.ts │ │ │ │ └── utils │ │ │ │ │ ├── ArgumentValidator.ts │ │ │ │ │ └── UrlUtils.ts │ │ │ ├── get_account │ │ │ │ ├── auth_flow │ │ │ │ │ ├── CustomAuthAccountData.ts │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── GetAccountError.ts │ │ │ │ │ ├── result │ │ │ │ │ │ ├── GetAccessTokenResult.ts │ │ │ │ │ │ ├── GetAccountResult.ts │ │ │ │ │ │ └── SignOutResult.ts │ │ │ │ │ └── state │ │ │ │ │ │ ├── GetAccessTokenState.ts │ │ │ │ │ │ ├── GetAccountState.ts │ │ │ │ │ │ └── SignOutState.ts │ │ │ │ └── interaction_client │ │ │ │ │ └── CustomAuthSilentCacheClient.ts │ │ │ ├── index.ts │ │ │ ├── operating_context │ │ │ │ └── CustomAuthOperatingContext.ts │ │ │ ├── reset_password │ │ │ │ ├── auth_flow │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── ResetPasswordError.ts │ │ │ │ │ ├── result │ │ │ │ │ │ ├── ResetPasswordResendCodeResult.ts │ │ │ │ │ │ ├── ResetPasswordStartResult.ts │ │ │ │ │ │ ├── ResetPasswordSubmitCodeResult.ts │ │ │ │ │ │ └── ResetPasswordSubmitPasswordResult.ts │ │ │ │ │ └── state │ │ │ │ │ │ ├── ResetPasswordCodeRequiredState.ts │ │ │ │ │ │ ├── ResetPasswordCompletedState.ts │ │ │ │ │ │ ├── ResetPasswordFailedState.ts │ │ │ │ │ │ ├── ResetPasswordPasswordRequiredState.ts │ │ │ │ │ │ ├── ResetPasswordState.ts │ │ │ │ │ │ └── ResetPasswordStateParameters.ts │ │ │ │ └── interaction_client │ │ │ │ │ ├── ResetPasswordClient.ts │ │ │ │ │ ├── parameter │ │ │ │ │ └── ResetPasswordParams.ts │ │ │ │ │ └── result │ │ │ │ │ └── ResetPasswordActionResult.ts │ │ │ ├── sign_in │ │ │ │ ├── auth_flow │ │ │ │ │ ├── SignInScenario.ts │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── SignInError.ts │ │ │ │ │ ├── result │ │ │ │ │ │ ├── SignInResendCodeResult.ts │ │ │ │ │ │ ├── SignInResult.ts │ │ │ │ │ │ ├── SignInSubmitCodeResult.ts │ │ │ │ │ │ └── SignInSubmitPasswordResult.ts │ │ │ │ │ └── state │ │ │ │ │ │ ├── SignInCodeRequiredState.ts │ │ │ │ │ │ ├── SignInCompletedState.ts │ │ │ │ │ │ ├── SignInContinuationState.ts │ │ │ │ │ │ ├── SignInFailedState.ts │ │ │ │ │ │ ├── SignInPasswordRequiredState.ts │ │ │ │ │ │ ├── SignInState.ts │ │ │ │ │ │ └── SignInStateParameters.ts │ │ │ │ └── interaction_client │ │ │ │ │ ├── SignInClient.ts │ │ │ │ │ ├── parameter │ │ │ │ │ └── SignInParams.ts │ │ │ │ │ └── result │ │ │ │ │ └── SignInActionResult.ts │ │ │ └── sign_up │ │ │ │ ├── auth_flow │ │ │ │ ├── error_type │ │ │ │ │ └── SignUpError.ts │ │ │ │ ├── result │ │ │ │ │ ├── SignUpResendCodeResult.ts │ │ │ │ │ ├── SignUpResult.ts │ │ │ │ │ ├── SignUpSubmitAttributesResult.ts │ │ │ │ │ ├── SignUpSubmitCodeResult.ts │ │ │ │ │ └── SignUpSubmitPasswordResult.ts │ │ │ │ └── state │ │ │ │ │ ├── SignUpAttributesRequiredState.ts │ │ │ │ │ ├── SignUpCodeRequiredState.ts │ │ │ │ │ ├── SignUpCompletedState.ts │ │ │ │ │ ├── SignUpFailedState.ts │ │ │ │ │ ├── SignUpPasswordRequiredState.ts │ │ │ │ │ ├── SignUpState.ts │ │ │ │ │ └── SignUpStateParameters.ts │ │ │ │ └── interaction_client │ │ │ │ ├── SignUpClient.ts │ │ │ │ ├── parameter │ │ │ │ └── SignUpParams.ts │ │ │ │ └── result │ │ │ │ └── SignUpActionResult.ts │ │ ├── encode │ │ │ ├── Base64Decode.ts │ │ │ └── Base64Encode.ts │ │ ├── error │ │ │ ├── BrowserAuthError.ts │ │ │ ├── BrowserAuthErrorCodes.ts │ │ │ ├── BrowserConfigurationAuthError.ts │ │ │ ├── BrowserConfigurationAuthErrorCodes.ts │ │ │ ├── NativeAuthError.ts │ │ │ ├── NativeAuthErrorCodes.ts │ │ │ └── NestedAppAuthError.ts │ │ ├── event │ │ │ ├── EventHandler.ts │ │ │ ├── EventMessage.ts │ │ │ └── EventType.ts │ │ ├── index.ts │ │ ├── interaction_client │ │ │ ├── BaseInteractionClient.ts │ │ │ ├── HybridSpaAuthorizationCodeClient.ts │ │ │ ├── PlatformAuthInteractionClient.ts │ │ │ ├── PopupClient.ts │ │ │ ├── RedirectClient.ts │ │ │ ├── SilentAuthCodeClient.ts │ │ │ ├── SilentCacheClient.ts │ │ │ ├── SilentIframeClient.ts │ │ │ ├── SilentRefreshClient.ts │ │ │ └── StandardInteractionClient.ts │ │ ├── interaction_handler │ │ │ ├── InteractionHandler.ts │ │ │ └── SilentHandler.ts │ │ ├── naa │ │ │ ├── AccountInfo.ts │ │ │ ├── AuthBridge.ts │ │ │ ├── AuthResult.ts │ │ │ ├── BridgeAccountContext.ts │ │ │ ├── BridgeCapabilities.ts │ │ │ ├── BridgeError.ts │ │ │ ├── BridgeProxy.ts │ │ │ ├── BridgeRequest.ts │ │ │ ├── BridgeRequestEnvelope.ts │ │ │ ├── BridgeResponseEnvelope.ts │ │ │ ├── BridgeStatusCode.ts │ │ │ ├── IBridgeProxy.ts │ │ │ ├── InitContext.ts │ │ │ ├── TokenRequest.ts │ │ │ ├── TokenResponse.ts │ │ │ └── mapping │ │ │ │ └── NestedAppAuthAdapter.ts │ │ ├── navigation │ │ │ ├── INavigationClient.ts │ │ │ ├── NavigationClient.ts │ │ │ └── NavigationOptions.ts │ │ ├── network │ │ │ └── FetchClient.ts │ │ ├── operatingcontext │ │ │ ├── BaseOperatingContext.ts │ │ │ ├── NestedAppOperatingContext.ts │ │ │ ├── StandardOperatingContext.ts │ │ │ └── UnknownOperatingContext.ts │ │ ├── packageMetadata.ts │ │ ├── protocol │ │ │ └── Authorize.ts │ │ ├── request │ │ │ ├── AuthorizationCodeRequest.ts │ │ │ ├── AuthorizationUrlRequest.ts │ │ │ ├── ClearCacheRequest.ts │ │ │ ├── EndSessionPopupRequest.ts │ │ │ ├── EndSessionRequest.ts │ │ │ ├── InitializeApplicationRequest.ts │ │ │ ├── PopupRequest.ts │ │ │ ├── PopupWindowAttributes.ts │ │ │ ├── RedirectRequest.ts │ │ │ ├── RequestHelpers.ts │ │ │ ├── SilentRequest.ts │ │ │ └── SsoSilentRequest.ts │ │ ├── response │ │ │ ├── AuthenticationResult.ts │ │ │ └── ResponseHandler.ts │ │ ├── telemetry │ │ │ ├── BrowserPerformanceClient.ts │ │ │ └── BrowserPerformanceMeasurement.ts │ │ └── utils │ │ │ ├── BrowserConstants.ts │ │ │ ├── BrowserProtocolUtils.ts │ │ │ ├── BrowserUtils.ts │ │ │ ├── Helpers.ts │ │ │ └── MsalFrameStatsUtils.ts │ ├── test │ │ ├── app │ │ │ ├── IPublicClientApplication.spec.ts │ │ │ ├── PCANonBrowser.spec.ts │ │ │ └── PublicClientApplication.spec.ts │ │ ├── broker │ │ │ ├── PlatformAuthDOMHandler.spec.ts │ │ │ ├── PlatformAuthExtensionHandler.spec.ts │ │ │ └── PlatformAuthProvider.spec.ts │ │ ├── cache │ │ │ ├── AsyncMemoryStorage.spec.ts │ │ │ ├── BrowserCacheManager.spec.ts │ │ │ ├── CookieStorage.spec.ts │ │ │ ├── DatabaseStorage.spec.ts │ │ │ ├── LocalStorage.spec.ts │ │ │ ├── TestStorageManager.ts │ │ │ └── TokenCache.spec.ts │ │ ├── config │ │ │ └── Configuration.spec.ts │ │ ├── controllers │ │ │ └── NestedAppAuthController.spec.ts │ │ ├── crypto │ │ │ ├── BrowserCrypto.spec.ts │ │ │ ├── CryptoOps.spec.ts │ │ │ ├── PkceGenerator.spec.ts │ │ │ └── SignedHttpRequest.spec.ts │ │ ├── custom_auth │ │ │ ├── CustomAuthPublicClientApplication.spec.ts │ │ │ ├── controller │ │ │ │ └── CustomAuthStandardController.spec.ts │ │ │ ├── core │ │ │ │ ├── CustomAuthAuthority.spec.ts │ │ │ │ ├── auth_flow │ │ │ │ │ ├── AuthFlowResultBase.spec.ts │ │ │ │ │ ├── jit │ │ │ │ │ │ ├── error_type │ │ │ │ │ │ │ └── AuthMethodRegistrationError.spec.ts │ │ │ │ │ │ └── state │ │ │ │ │ │ │ └── AuthMethodRegistrationState.spec.ts │ │ │ │ │ └── mfa │ │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── MfaError.spec.ts │ │ │ │ │ │ └── state │ │ │ │ │ │ └── MfaState.spec.ts │ │ │ │ ├── error │ │ │ │ │ └── CustomAuthApiError.spec.ts │ │ │ │ ├── interaction_client │ │ │ │ │ ├── CustomAuthInteractionClientBase.spec.ts │ │ │ │ │ ├── jit │ │ │ │ │ │ ├── JitClient.spec.ts │ │ │ │ │ │ └── result │ │ │ │ │ │ │ └── JitActionResult.spec.ts │ │ │ │ │ └── mfa │ │ │ │ │ │ └── MfaClient.spec.ts │ │ │ │ ├── network_client │ │ │ │ │ ├── custom_auth_api │ │ │ │ │ │ ├── CustomAuthApiClient.spec.ts │ │ │ │ │ │ ├── RegisterApiClient.spec.ts │ │ │ │ │ │ └── SignInApiClient.spec.ts │ │ │ │ │ └── http_client │ │ │ │ │ │ └── FetchClient.spec.ts │ │ │ │ └── utils │ │ │ │ │ ├── ArgumentValidator.spec.ts │ │ │ │ │ └── UrlUtils.spec.ts │ │ │ ├── get_account │ │ │ │ ├── auth_flow │ │ │ │ │ ├── CustomAuthAccountData.spec.ts │ │ │ │ │ └── error_type │ │ │ │ │ │ └── GetAccountError.spec.ts │ │ │ │ └── interaction_client │ │ │ │ │ └── CustomAuthSilentCacheClient.spec.ts │ │ │ ├── integration_tests │ │ │ │ ├── GetAccount.spec.ts │ │ │ │ ├── ResetPassword.spec.ts │ │ │ │ ├── SignIn.spec.ts │ │ │ │ └── SignUp.spec.ts │ │ │ ├── reset_password │ │ │ │ ├── auth_flow │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── ResetPasswordError.spec.ts │ │ │ │ │ └── state │ │ │ │ │ │ ├── ResetPasswordCodeRequiredState.spec.ts │ │ │ │ │ │ └── ResetPasswordPasswordRequiredState.spec.ts │ │ │ │ └── interaction_client │ │ │ │ │ └── ResetPasswordClient.spec.ts │ │ │ ├── sign_in │ │ │ │ ├── auth_flow │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── SignInError.spec.ts │ │ │ │ │ └── state │ │ │ │ │ │ ├── SignInCodeRequiredState.spec.ts │ │ │ │ │ │ ├── SignInContinuationState.spec.ts │ │ │ │ │ │ └── SignInPasswordRequiredState.spec.ts │ │ │ │ └── interaction_client │ │ │ │ │ └── SignInClient.spec.ts │ │ │ ├── sign_up │ │ │ │ ├── auth_flow │ │ │ │ │ ├── error_type │ │ │ │ │ │ └── SignUpError.spec.ts │ │ │ │ │ └── state │ │ │ │ │ │ ├── SignUpAttributesRequiredState.spec.ts │ │ │ │ │ │ ├── SignUpCodeRequiredState.spec.ts │ │ │ │ │ │ └── SignUpPasswordRequiredState.spec.ts │ │ │ │ └── interaction_client │ │ │ │ │ └── SignUpClient.spec.ts │ │ │ └── test_resources │ │ │ │ ├── CustomAuthConfig.ts │ │ │ │ ├── TestConstants.ts │ │ │ │ └── TestModules.ts │ │ ├── encode │ │ │ ├── Base64Decode.spec.ts │ │ │ └── Base64Encode.spec.ts │ │ ├── error │ │ │ ├── BrowserAuthError.spec.ts │ │ │ ├── BrowserConfigurationAuthError.spec.ts │ │ │ └── NativeAuthError.spec.ts │ │ ├── event │ │ │ ├── EventHandler.spec.ts │ │ │ └── EventMessage.spec.ts │ │ ├── interaction_client │ │ │ ├── BaseInteractionClient.spec.ts │ │ │ ├── PlatformAuthInteractionClient.spec.ts │ │ │ ├── PopupClient.spec.ts │ │ │ ├── RedirectClient.spec.ts │ │ │ ├── SilentAuthCodeClient.spec.ts │ │ │ ├── SilentCacheClient.spec.ts │ │ │ ├── SilentIframeClient.spec.ts │ │ │ ├── SilentRefreshClient.spec.ts │ │ │ └── StandardInteractionClient.spec.ts │ │ ├── interaction_handler │ │ │ ├── InteractionHandler.spec.ts │ │ │ └── SilentHandler.spec.ts │ │ ├── naa │ │ │ ├── BridgeProxy.spec.ts │ │ │ ├── BridgeProxyConstants.ts │ │ │ ├── JSRuntime.spec.ts │ │ │ ├── MockBridge.ts │ │ │ └── NestedAppAuthAdapter.spec.ts │ │ ├── navigation │ │ │ └── NavigationClient.spec.ts │ │ ├── network │ │ │ └── FetchClient.spec.ts │ │ ├── protocol │ │ │ └── Authorize.spec.ts │ │ ├── response │ │ │ └── ResponseHandler.spec.ts │ │ ├── telemetry │ │ │ ├── BrowserPerformanceClient.spec.ts │ │ │ └── BrowserPerformanceMeasurement.spec.ts │ │ └── utils │ │ │ ├── BridgeSetup.ts │ │ │ ├── BrowserCrypto.spec.ts │ │ │ ├── BrowserProtocolUtils.spec.ts │ │ │ ├── BrowserUtils.spec.ts │ │ │ ├── StringConstants.ts │ │ │ └── TelemetryUtils.ts │ ├── tsconfig.base.json │ ├── tsconfig.build.json │ ├── tsconfig.custom-auth.build.json │ ├── tsconfig.json │ └── typedoc.json ├── msal-common │ ├── .babelrc │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── FAQ.md │ ├── LICENSE │ ├── README.md │ ├── api-extractor.json │ ├── apiReview │ │ └── msal-common.api.md │ ├── browser │ │ ├── README.md │ │ └── package.json │ ├── docs │ │ ├── ADFS.md │ │ ├── Accounts.md │ │ ├── Response.md │ │ ├── Throttling.md │ │ ├── authority.md │ │ ├── claims-challenge.md │ │ ├── client-capability.md │ │ ├── diagrams │ │ │ ├── png │ │ │ │ └── msal-common-uml.png │ │ │ └── visio │ │ │ │ └── msal-common-uml.vsdx │ │ ├── multi-tenant-accounts.md │ │ └── performance.md │ ├── jest.config.cjs │ ├── node │ │ ├── README.md │ │ └── package.json │ ├── package.json │ ├── rollup.config.js │ ├── scripts │ │ └── metadata.ts │ ├── src │ │ ├── account │ │ │ ├── AccountInfo.ts │ │ │ ├── AuthToken.ts │ │ │ ├── CcsCredential.ts │ │ │ ├── ClientCredentials.ts │ │ │ ├── ClientInfo.ts │ │ │ └── TokenClaims.ts │ │ ├── authority │ │ │ ├── Authority.ts │ │ │ ├── AuthorityFactory.ts │ │ │ ├── AuthorityMetadata.ts │ │ │ ├── AuthorityOptions.ts │ │ │ ├── AuthorityType.ts │ │ │ ├── AzureRegion.ts │ │ │ ├── AzureRegionConfiguration.ts │ │ │ ├── CloudDiscoveryMetadata.ts │ │ │ ├── CloudInstanceDiscoveryErrorResponse.ts │ │ │ ├── CloudInstanceDiscoveryResponse.ts │ │ │ ├── ImdsOptions.ts │ │ │ ├── OIDCOptions.ts │ │ │ ├── OpenIdConfigResponse.ts │ │ │ ├── ProtocolMode.ts │ │ │ ├── RegionDiscovery.ts │ │ │ └── RegionDiscoveryMetadata.ts │ │ ├── broker │ │ │ └── nativeBroker │ │ │ │ └── INativeBrokerPlugin.ts │ │ ├── cache │ │ │ ├── CacheManager.ts │ │ │ ├── entities │ │ │ │ ├── AccessTokenEntity.ts │ │ │ │ ├── AccountEntity.ts │ │ │ │ ├── AppMetadataEntity.ts │ │ │ │ ├── AuthorityMetadataEntity.ts │ │ │ │ ├── CacheRecord.ts │ │ │ │ ├── CredentialEntity.ts │ │ │ │ ├── IdTokenEntity.ts │ │ │ │ ├── RefreshTokenEntity.ts │ │ │ │ ├── ServerTelemetryEntity.ts │ │ │ │ └── ThrottlingEntity.ts │ │ │ ├── interface │ │ │ │ ├── ICacheManager.ts │ │ │ │ ├── ICachePlugin.ts │ │ │ │ └── ISerializableTokenCache.ts │ │ │ ├── persistence │ │ │ │ └── TokenCacheContext.ts │ │ │ └── utils │ │ │ │ ├── CacheHelpers.ts │ │ │ │ └── CacheTypes.ts │ │ ├── client │ │ │ ├── AuthorizationCodeClient.ts │ │ │ ├── BaseClient.ts │ │ │ ├── RefreshTokenClient.ts │ │ │ └── SilentFlowClient.ts │ │ ├── config │ │ │ ├── AppTokenProvider.ts │ │ │ └── ClientConfiguration.ts │ │ ├── constants │ │ │ └── AADServerParamKeys.ts │ │ ├── crypto │ │ │ ├── ICrypto.ts │ │ │ ├── IGuidGenerator.ts │ │ │ ├── JoseHeader.ts │ │ │ ├── PopTokenGenerator.ts │ │ │ └── SignedHttpRequest.ts │ │ ├── error │ │ │ ├── AuthError.ts │ │ │ ├── AuthErrorCodes.ts │ │ │ ├── CacheError.ts │ │ │ ├── CacheErrorCodes.ts │ │ │ ├── ClientAuthError.ts │ │ │ ├── ClientAuthErrorCodes.ts │ │ │ ├── ClientConfigurationError.ts │ │ │ ├── ClientConfigurationErrorCodes.ts │ │ │ ├── InteractionRequiredAuthError.ts │ │ │ ├── InteractionRequiredAuthErrorCodes.ts │ │ │ ├── JoseHeaderError.ts │ │ │ ├── JoseHeaderErrorCodes.ts │ │ │ ├── NetworkError.ts │ │ │ ├── PlatformBrokerError.ts │ │ │ └── ServerError.ts │ │ ├── exports-browser-only.ts │ │ ├── exports-common.ts │ │ ├── exports-node-only.ts │ │ ├── index-browser.ts │ │ ├── index-node.ts │ │ ├── index.ts │ │ ├── logger │ │ │ └── Logger.ts │ │ ├── network │ │ │ ├── INetworkModule.ts │ │ │ ├── NetworkResponse.ts │ │ │ ├── RequestThumbprint.ts │ │ │ └── ThrottlingUtils.ts │ │ ├── packageMetadata.ts │ │ ├── protocol │ │ │ └── Authorize.ts │ │ ├── request │ │ │ ├── AuthenticationHeaderParser.ts │ │ │ ├── BaseAuthRequest.ts │ │ │ ├── CommonAuthorizationCodeRequest.ts │ │ │ ├── CommonAuthorizationUrlRequest.ts │ │ │ ├── CommonClientCredentialRequest.ts │ │ │ ├── CommonDeviceCodeRequest.ts │ │ │ ├── CommonEndSessionRequest.ts │ │ │ ├── CommonOnBehalfOfRequest.ts │ │ │ ├── CommonRefreshTokenRequest.ts │ │ │ ├── CommonSilentFlowRequest.ts │ │ │ ├── CommonUsernamePasswordRequest.ts │ │ │ ├── NativeRequest.ts │ │ │ ├── NativeSignOutRequest.ts │ │ │ ├── RequestParameterBuilder.ts │ │ │ ├── ScopeSet.ts │ │ │ └── StoreInCache.ts │ │ ├── response │ │ │ ├── AuthenticationResult.ts │ │ │ ├── AuthorizationCodePayload.ts │ │ │ ├── AuthorizeResponse.ts │ │ │ ├── DeviceCodeResponse.ts │ │ │ ├── ExternalTokenResponse.ts │ │ │ ├── IMDSBadResponse.ts │ │ │ ├── ResponseHandler.ts │ │ │ └── ServerAuthorizationTokenResponse.ts │ │ ├── telemetry │ │ │ ├── performance │ │ │ │ ├── IPerformanceClient.ts │ │ │ │ ├── IPerformanceMeasurement.ts │ │ │ │ ├── PerformanceClient.ts │ │ │ │ ├── PerformanceEvent.ts │ │ │ │ └── StubPerformanceClient.ts │ │ │ └── server │ │ │ │ ├── ServerTelemetryManager.ts │ │ │ │ └── ServerTelemetryRequest.ts │ │ ├── url │ │ │ ├── IUri.ts │ │ │ └── UrlString.ts │ │ └── utils │ │ │ ├── ClientAssertionUtils.ts │ │ │ ├── Constants.ts │ │ │ ├── FunctionWrappers.ts │ │ │ ├── MsalTypes.ts │ │ │ ├── ProtocolUtils.ts │ │ │ ├── StringUtils.ts │ │ │ ├── TimeUtils.ts │ │ │ └── UrlUtils.ts │ ├── test │ │ ├── account │ │ │ ├── AccountInfo.spec.ts │ │ │ ├── AuthToken.spec.ts │ │ │ ├── ClientInfo.spec.ts │ │ │ └── TokenClaims.spec.ts │ │ ├── authority │ │ │ ├── Authority.spec.ts │ │ │ ├── AuthorityFactory.spec.ts │ │ │ └── AuthorityMetadata.spec.ts │ │ ├── cache │ │ │ ├── CacheManager.spec.ts │ │ │ ├── MockCache.ts │ │ │ ├── cacheStore.json │ │ │ └── entities │ │ │ │ ├── AccessTokenEntity.spec.ts │ │ │ │ ├── AccountEntity.spec.ts │ │ │ │ ├── AppMetadataEntity.spec.ts │ │ │ │ ├── AuthorityMetadataEntity.spec.ts │ │ │ │ ├── IdTokenEntity.spec.ts │ │ │ │ ├── RefreshTokenEntity.spec.ts │ │ │ │ ├── ServerTelemetryEntity.spec.ts │ │ │ │ ├── ThrottlingEntity.spec.ts │ │ │ │ └── cacheConstants.ts │ │ ├── client │ │ │ ├── AuthorizationCodeClient.spec.ts │ │ │ ├── BaseClient.spec.ts │ │ │ ├── ClientTestUtils.ts │ │ │ ├── RefreshTokenClient.spec.ts │ │ │ └── SilentFlowClient.spec.ts │ │ ├── config │ │ │ └── ClientConfiguration.spec.ts │ │ ├── crypto │ │ │ ├── JoseHeader.spec.ts │ │ │ └── PopTokenGenerator.spec.ts │ │ ├── error │ │ │ ├── AuthError.spec.ts │ │ │ ├── ClientAuthError.spec.ts │ │ │ ├── ClientConfigurationError.spec.ts │ │ │ ├── InteractionRequiredAuthError.spec.ts │ │ │ ├── JoseHeaderError.spec.ts │ │ │ └── ServerError.spec.ts │ │ ├── logger │ │ │ └── Logger.spec.ts │ │ ├── network │ │ │ └── ThrottlingUtils.spec.ts │ │ ├── protocol │ │ │ └── Authorize.spec.ts │ │ ├── request │ │ │ ├── AuthenticationHeaderParser.spec.ts │ │ │ ├── RequestParameterBuilder.spec.ts │ │ │ └── ScopeSet.spec.ts │ │ ├── response │ │ │ └── ResponseHandler.spec.ts │ │ ├── telemetry │ │ │ ├── PerformanceClient.spec.ts │ │ │ └── ServerTelemetryManager.spec.ts │ │ ├── test_kit │ │ │ ├── StringConstants.ts │ │ │ └── TestErrors.ts │ │ ├── url │ │ │ └── UrlString.spec.ts │ │ └── utils │ │ │ ├── FunctionWrappers.spec.ts │ │ │ ├── ProtocolUtils.spec.ts │ │ │ ├── StringUtils.spec.ts │ │ │ ├── TimeUtils.spec.ts │ │ │ └── UrlUtils.spec.ts │ ├── tsconfig.base.json │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── typedoc.json ├── msal-node │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── NodeCache.txt │ ├── README.md │ ├── api-extractor.json │ ├── apiReview │ │ └── msal-node.api.md │ ├── cache.json │ ├── docs │ │ ├── accounts.md │ │ ├── brokering.md │ │ ├── caching.md │ │ ├── certificate-credentials.md │ │ ├── configuration.md │ │ ├── faq.md │ │ ├── initialize-confidential-client-application.md │ │ ├── initialize-public-client-application.md │ │ ├── key-vault-managed-identity.md │ │ ├── managed-identity.md │ │ ├── migration.md │ │ ├── performance.md │ │ ├── regional-authorities.md │ │ ├── request.md │ │ ├── sni.md │ │ └── v2-migration.md │ ├── jest.config.cjs │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── cache │ │ │ ├── CacheHelpers.ts │ │ │ ├── ITokenCache.ts │ │ │ ├── NodeStorage.ts │ │ │ ├── TokenCache.ts │ │ │ ├── distributed │ │ │ │ ├── DistributedCachePlugin.ts │ │ │ │ ├── ICacheClient.ts │ │ │ │ └── IPartitionManager.ts │ │ │ └── serializer │ │ │ │ ├── Deserializer.ts │ │ │ │ ├── Serializer.ts │ │ │ │ └── SerializerTypes.ts │ │ ├── client │ │ │ ├── ClientApplication.ts │ │ │ ├── ClientAssertion.ts │ │ │ ├── ClientCredentialClient.ts │ │ │ ├── ConfidentialClientApplication.ts │ │ │ ├── DeviceCodeClient.ts │ │ │ ├── IConfidentialClientApplication.ts │ │ │ ├── IPublicClientApplication.ts │ │ │ ├── ManagedIdentityApplication.ts │ │ │ ├── ManagedIdentityClient.ts │ │ │ ├── ManagedIdentitySources │ │ │ │ ├── AppService.ts │ │ │ │ ├── AzureArc.ts │ │ │ │ ├── BaseManagedIdentitySource.ts │ │ │ │ ├── CloudShell.ts │ │ │ │ ├── Imds.ts │ │ │ │ ├── MachineLearning.ts │ │ │ │ └── ServiceFabric.ts │ │ │ ├── OnBehalfOfClient.ts │ │ │ ├── PublicClientApplication.ts │ │ │ └── UsernamePasswordClient.ts │ │ ├── config │ │ │ ├── Configuration.ts │ │ │ ├── ManagedIdentityId.ts │ │ │ └── ManagedIdentityRequestParameters.ts │ │ ├── crypto │ │ │ ├── CryptoProvider.ts │ │ │ ├── GuidGenerator.ts │ │ │ ├── HashUtils.ts │ │ │ └── PkceGenerator.ts │ │ ├── error │ │ │ ├── ManagedIdentityError.ts │ │ │ ├── ManagedIdentityErrorCodes.ts │ │ │ └── NodeAuthError.ts │ │ ├── index.ts │ │ ├── internals.ts │ │ ├── network │ │ │ ├── HttpClient.ts │ │ │ ├── HttpClientWithRetries.ts │ │ │ ├── ILoopbackClient.ts │ │ │ └── LoopbackClient.ts │ │ ├── packageMetadata.ts │ │ ├── protocol │ │ │ └── Authorize.ts │ │ ├── request │ │ │ ├── AuthorizationCodeRequest.ts │ │ │ ├── AuthorizationUrlRequest.ts │ │ │ ├── ClientCredentialRequest.ts │ │ │ ├── DeviceCodeRequest.ts │ │ │ ├── InteractiveRequest.ts │ │ │ ├── ManagedIdentityRequest.ts │ │ │ ├── ManagedIdentityRequestParams.ts │ │ │ ├── OnBehalfOfRequest.ts │ │ │ ├── RefreshTokenRequest.ts │ │ │ ├── SignOutRequest.ts │ │ │ ├── SilentFlowRequest.ts │ │ │ └── UsernamePasswordRequest.ts │ │ ├── response │ │ │ └── ManagedIdentityTokenResponse.ts │ │ ├── retry │ │ │ ├── DefaultManagedIdentityRetryPolicy.ts │ │ │ ├── ExponentialRetryStrategy.ts │ │ │ ├── IHttpRetryPolicy.ts │ │ │ ├── ImdsRetryPolicy.ts │ │ │ └── LinearRetryStrategy.ts │ │ └── utils │ │ │ ├── Constants.ts │ │ │ ├── EncodingUtils.ts │ │ │ ├── NetworkUtils.ts │ │ │ └── TimeUtils.ts │ ├── test │ │ ├── cache │ │ │ ├── Storage.spec.ts │ │ │ ├── TokenCache.spec.ts │ │ │ ├── cache-test-files │ │ │ │ ├── cache-unrecognized-entities.json │ │ │ │ └── default-cache.json │ │ │ ├── cacheConstants.ts │ │ │ ├── distributed │ │ │ │ └── DistributedCachePlugin.spec.ts │ │ │ └── serializer │ │ │ │ ├── Account.json │ │ │ │ ├── Deserializer.spec.ts │ │ │ │ ├── Serializer.spec.ts │ │ │ │ └── cache.json │ │ ├── client │ │ │ ├── ClientAssertion.spec.ts │ │ │ ├── ClientCredentialClient.spec.ts │ │ │ ├── ClientTestUtils.ts │ │ │ ├── ConfidentialClientApplication.spec.ts │ │ │ ├── DeviceCodeClient.spec.ts │ │ │ ├── ManagedIdentitySources │ │ │ │ ├── AppService.spec.ts │ │ │ │ ├── AzureArc.spec.ts │ │ │ │ ├── CloudShell.spec.ts │ │ │ │ ├── DefaultManagedIdentityRetryPolicy.spec.ts │ │ │ │ ├── Imds.spec.ts │ │ │ │ ├── MachineLearning.spec.ts │ │ │ │ └── ServiceFabric.spec.ts │ │ │ ├── OnBehalfOfClient.spec.ts │ │ │ ├── PublicClientApplication.spec.ts │ │ │ └── UsernamePasswordClient.spec.ts │ │ ├── config │ │ │ └── ClientConfiguration.spec.ts │ │ ├── crypto │ │ │ ├── CryptoProvider.spec.ts │ │ │ ├── GuidGenerator.spec.ts │ │ │ └── PkceGenerator.spec.ts │ │ ├── network │ │ │ └── HttpClient.spec.ts │ │ ├── test_kit │ │ │ ├── ManagedIdentityTestUtils.ts │ │ │ └── StringConstants.ts │ │ └── utils │ │ │ ├── CryptoKeys.ts │ │ │ ├── EncodingUtils.spec.ts │ │ │ ├── MockNativeBrokerPlugin.ts │ │ │ ├── MockNetworkClient.ts │ │ │ ├── MockUtils.ts │ │ │ └── TestConstants.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── typedoc.json └── msal-react │ ├── .eslintrc.json │ ├── .gitignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── FAQ.md │ ├── LICENSE │ ├── README.md │ ├── api-extractor.json │ ├── apiReview │ └── msal-react.api.md │ ├── docs │ ├── class-components.md │ ├── errors.md │ ├── events.md │ ├── getting-started.md │ ├── hooks.md │ ├── migration-guide.md │ └── performance.md │ ├── jest.config.cjs │ ├── package.json │ ├── rollup.config.js │ ├── src │ ├── MsalContext.ts │ ├── MsalProvider.tsx │ ├── components │ │ ├── AuthenticatedTemplate.tsx │ │ ├── MsalAuthenticationTemplate.tsx │ │ ├── UnauthenticatedTemplate.tsx │ │ └── withMsal.tsx │ ├── error │ │ └── ReactAuthError.ts │ ├── hooks │ │ ├── useAccount.ts │ │ ├── useIsAuthenticated.ts │ │ ├── useMsal.ts │ │ └── useMsalAuthentication.ts │ ├── index.ts │ ├── packageMetadata.ts │ ├── types │ │ └── AccountIdentifiers.ts │ └── utils │ │ └── utilities.ts │ ├── test │ ├── MsalProvider.spec.tsx │ ├── TestConstants.ts │ ├── components │ │ ├── AuthenticatedTemplate.spec.tsx │ │ ├── MsalAuthenticationTemplate.spec.tsx │ │ ├── UnauthenticatedTemplate.spec.tsx │ │ └── withMsal.spec.tsx │ ├── hooks │ │ └── useIsAuthenticated.spec.tsx │ └── utils │ │ └── utilities.spec.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── typedoc.json ├── package.json ├── regression-tests └── msal-node │ ├── Constants.js │ └── client-credential │ ├── .gitignore │ ├── index.js │ └── package.json ├── release-scripts ├── getReleaseDate.js ├── getUpdatedVersions.js └── updateVersion.js ├── roadmap.md ├── samples ├── e2eTestUtils │ ├── jest-puppeteer-utils │ │ ├── jest-preset-no-setup.js │ │ ├── jest-preset.js │ │ ├── jestSetup.js │ │ ├── jestTeardown.js │ │ ├── puppeteer_environment.js │ │ └── serverUtils.js │ ├── package.json │ └── src │ │ ├── BrowserCacheTestUtils.ts │ │ ├── CertificateUtils.ts │ │ ├── Constants.ts │ │ ├── ElectronPlaywrightTestUtils.ts │ │ ├── KeyVaultUtils.ts │ │ ├── LabApiQueryParams.ts │ │ ├── LabClient.ts │ │ ├── LabConfig.ts │ │ ├── MsidApp.ts │ │ ├── MsidLab.ts │ │ ├── MsidUser.ts │ │ ├── NodeCacheTestUtils.ts │ │ ├── TestUtils.ts │ │ └── index.ts ├── msal-angular-samples │ ├── README.md │ ├── angular-b2c-sample │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── angular.json │ │ ├── jest.config.cjs │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── failed │ │ │ │ │ ├── failed.component.css │ │ │ │ │ ├── failed.component.html │ │ │ │ │ ├── failed.component.spec.ts │ │ │ │ │ └── failed.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.spec.ts │ │ │ │ │ └── home.component.ts │ │ │ │ └── profile │ │ │ │ │ ├── profile.component.css │ │ │ │ │ ├── profile.component.html │ │ │ │ │ ├── profile.component.spec.ts │ │ │ │ │ └── profile.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.dev.ts │ │ │ │ ├── environment.e2e.ts │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── test │ │ │ ├── local-account.spec.ts │ │ │ └── msa-account.spec.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── angular-modules-sample │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── angular.json │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── failed │ │ │ │ │ ├── failed.component.css │ │ │ │ │ ├── failed.component.html │ │ │ │ │ └── failed.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ └── profile │ │ │ │ │ ├── profile.component.css │ │ │ │ │ ├── profile.component.html │ │ │ │ │ └── profile.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.dev.ts │ │ │ │ ├── environment.e2e.ts │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.css │ │ ├── test │ │ │ ├── home.spec.ts │ │ │ └── profile.spec.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── angular-standalone-sample │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── angular.json │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.ts │ │ │ │ ├── app.routes.ts │ │ │ │ ├── failed │ │ │ │ │ └── failed.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ └── profile │ │ │ │ │ ├── profile.component.html │ │ │ │ │ └── profile.component.ts │ │ │ ├── environments │ │ │ │ ├── environment.dev.ts │ │ │ │ ├── environment.e2e.ts │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.css │ │ ├── test │ │ │ ├── home.spec.ts │ │ │ └── profile.spec.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ └── sample-scripts │ │ └── useMsalAngularTarball.js ├── msal-browser-samples │ ├── ChromiumExtensionSample │ │ ├── README.md │ │ ├── auth.js │ │ ├── index.html │ │ ├── manifest.json │ │ └── msal-browser.min.js │ ├── ExpressSample │ │ ├── .env │ │ ├── .env.e2e │ │ ├── .gitignore │ │ ├── README.md │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── public │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ └── js │ │ │ │ ├── account.js │ │ │ │ ├── app.js │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── navigation.js │ │ │ │ ├── ui.js │ │ │ │ ├── utils.js │ │ │ │ └── versionSwitcher.js │ │ ├── server.js │ │ ├── test │ │ │ ├── test-helpers.ts │ │ │ └── upgrade-downgrade.spec.ts │ │ ├── tsconfig.json │ │ └── views │ │ │ ├── 404.hbs │ │ │ ├── error.hbs │ │ │ ├── home.hbs │ │ │ ├── layouts │ │ │ └── main.hbs │ │ │ ├── logout.hbs │ │ │ ├── partials │ │ │ ├── home-content.hbs │ │ │ └── profile-content.hbs │ │ │ └── profile.hbs │ ├── HybridSample │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── app.js │ │ ├── bin │ │ │ └── www │ │ ├── package.json │ │ ├── public │ │ │ └── stylesheets │ │ │ │ └── style.css │ │ ├── routes │ │ │ ├── auth.js │ │ │ ├── index.js │ │ │ ├── msal.js │ │ │ └── users.js │ │ └── views │ │ │ ├── client-redirect.hbs │ │ │ ├── error.hbs │ │ │ ├── implicit-redirect.hbs │ │ │ ├── index.hbs │ │ │ ├── layout.hbs │ │ │ └── logout.hbs │ ├── OfficeAddin │ │ ├── .eslintrc.json │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── assets │ │ │ ├── icon-128.png │ │ │ ├── icon-16.png │ │ │ ├── icon-32.png │ │ │ ├── icon-64.png │ │ │ ├── icon-80.png │ │ │ └── logo-filled.png │ │ ├── babel.config.json │ │ ├── manifest.xml │ │ ├── package.json │ │ ├── src │ │ │ ├── commands │ │ │ │ ├── commands.html │ │ │ │ └── commands.js │ │ │ └── taskpane │ │ │ │ ├── taskpane.css │ │ │ │ ├── taskpane.html │ │ │ │ └── taskpane.js │ │ ├── stats.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── TestingSample │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── Readme.md │ │ ├── app │ │ │ ├── auth.js │ │ │ ├── authConfig.js │ │ │ ├── graph.js │ │ │ ├── index.html │ │ │ └── ui.js │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── server.js │ │ └── test │ │ │ └── browser-test.spec.ts │ ├── VanillaJSTestApp2.0 │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── Readme.md │ │ ├── app │ │ │ ├── b2c │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── index.html │ │ │ │ └── ui.js │ │ │ ├── client-capabilities │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ ├── jest.config.cjs │ │ │ │ ├── test │ │ │ │ │ └── browser.spec.ts │ │ │ │ └── ui.js │ │ │ ├── customizable-e2e-test │ │ │ │ ├── auth.js │ │ │ │ ├── authConfigs │ │ │ │ │ ├── aadAuthConfig.json │ │ │ │ │ ├── aadMultiTenantAuthConfig.json │ │ │ │ │ ├── aadTenantedAuthConfig.json │ │ │ │ │ ├── b2cAuthConfig.json │ │ │ │ │ ├── localStorageAuthConfig.json │ │ │ │ │ └── memStorageAuthConfig.json │ │ │ │ ├── index.html │ │ │ │ ├── jest.config.cjs │ │ │ │ ├── test │ │ │ │ │ ├── browserAAD.spec.ts │ │ │ │ │ ├── browserAADMultiTenant.spec.ts │ │ │ │ │ ├── browserAADTenanted.spec.ts │ │ │ │ │ ├── browserB2C.spec.ts │ │ │ │ │ ├── browserMemStorage.spec.ts │ │ │ │ │ └── localStorage.spec.ts │ │ │ │ ├── testConfig.json │ │ │ │ └── ui.js │ │ │ ├── default │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ ├── redirect.html │ │ │ │ └── ui.js │ │ │ ├── facebook-sample │ │ │ │ ├── Readme.md │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ ├── redirect.html │ │ │ │ └── ui.js │ │ │ ├── instanceAware │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ └── ui.js │ │ │ ├── multipleResources │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ ├── jest.config.cjs │ │ │ │ ├── test │ │ │ │ │ └── multiple_resources.spec.ts │ │ │ │ └── ui.js │ │ │ ├── navigateToLoginPage │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ └── ui.js │ │ │ ├── onPageLoad │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ ├── jest.config.cjs │ │ │ │ ├── test │ │ │ │ │ └── browser.spec.ts │ │ │ │ └── ui.js │ │ │ ├── pop │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ ├── jest.config.cjs │ │ │ │ ├── test │ │ │ │ │ └── browser.spec.ts │ │ │ │ └── ui.js │ │ │ ├── sample_template │ │ │ │ ├── index.html │ │ │ │ └── test │ │ │ │ │ └── template.spec.ts │ │ │ ├── ssh │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── index.html │ │ │ │ └── ui.js │ │ │ ├── ssoSilent │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ └── ui.js │ │ │ ├── ssoSilentNoHint │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ └── ui.js │ │ │ └── wamBroker │ │ │ │ ├── README.md │ │ │ │ ├── auth.js │ │ │ │ ├── authConfig.js │ │ │ │ ├── graph.js │ │ │ │ ├── index.html │ │ │ │ └── ui.js │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── server.js │ │ ├── tsconfig.base.json │ │ └── tsconfig.json │ └── vue3-sample-app │ │ ├── .npmrc │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ └── favicon.ico │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── authConfig.ts │ │ ├── components │ │ │ ├── NavBar.vue │ │ │ ├── SignInButton.vue │ │ │ ├── SignOutButton.vue │ │ │ └── WelcomeName.vue │ │ ├── composition-api │ │ │ ├── useIsAuthenticated.ts │ │ │ ├── useMsal.ts │ │ │ └── useMsalAuthentication.ts │ │ ├── env.d.ts │ │ ├── main.ts │ │ ├── plugins │ │ │ └── msalPlugin.ts │ │ ├── router │ │ │ ├── Guard.ts │ │ │ ├── NavigationClient.ts │ │ │ └── router.ts │ │ ├── utils │ │ │ ├── MsGraphApiCall.ts │ │ │ └── UserInfo.ts │ │ └── views │ │ │ ├── Failed.vue │ │ │ ├── Home.vue │ │ │ ├── Profile.vue │ │ │ └── ProfileNoGuard.vue │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── msal-node-samples │ ├── .npmrc │ ├── AGC-README.md │ ├── ElectronSystemBrowserTestApp │ │ ├── .beachballrc │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── ReadmeFiles │ │ │ ├── Screenshot-Sign-in.png │ │ │ ├── Screenshot-browser.png │ │ │ └── Screenshot-profile.png │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── public │ │ │ ├── errorTemplate.html │ │ │ └── successTemplate.html │ │ ├── src │ │ │ ├── App.ts │ │ │ ├── AuthProvider.ts │ │ │ ├── CachePlugin.ts │ │ │ ├── Constants.ts │ │ │ ├── CustomLoopbackClient.ts │ │ │ ├── FetchManager.ts │ │ │ ├── GraphReponseTypes.ts │ │ │ ├── Main.ts │ │ │ ├── Renderer.ts │ │ │ ├── app │ │ │ │ ├── App.tsx │ │ │ │ ├── components │ │ │ │ │ ├── NavigationBar.tsx │ │ │ │ │ ├── PageLayout.tsx │ │ │ │ │ └── ProfileData.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── pages │ │ │ │ │ ├── Home.tsx │ │ │ │ │ └── Profile.tsx │ │ │ │ └── styles │ │ │ │ │ └── App.css │ │ │ ├── config │ │ │ │ ├── AAD.json │ │ │ │ └── customConfig.json │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ └── preload.ts │ │ ├── tests │ │ │ └── electron-code-aad.spec.ts │ │ ├── tsconfig.json │ │ ├── webpack.main.config.js │ │ ├── webpack.plugins.js │ │ ├── webpack.renderer.config.js │ │ └── webpack.rules.js │ ├── ElectronTestApp │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── index.html │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── src │ │ │ ├── App.ts │ │ │ ├── AuthCodeListener.ts │ │ │ ├── AuthProvider.ts │ │ │ ├── CachePlugin.ts │ │ │ ├── Constants.ts │ │ │ ├── CustomProtocolListener.ts │ │ │ ├── FetchManager.ts │ │ │ ├── GraphReponseTypes.ts │ │ │ ├── Main.ts │ │ │ ├── Renderer.ts │ │ │ ├── UIManager.ts │ │ │ ├── config │ │ │ │ ├── AAD.json │ │ │ │ ├── ADFS.json │ │ │ │ └── customConfig.json │ │ │ └── preload.ts │ │ └── tsconfig.json │ ├── Managed-Identity │ │ ├── FIC │ │ │ ├── .npmrc │ │ │ ├── DownstreamApi.ts │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── Imds │ │ │ ├── .npmrc │ │ │ ├── DownstreamApi.ts │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── README.md │ ├── auth-code-cli-app │ │ ├── .npmrc │ │ ├── README.md │ │ ├── config │ │ │ └── AAD.json │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── src │ │ │ ├── authConfig.js │ │ │ ├── data │ │ │ │ └── cache.json │ │ │ ├── graph.js │ │ │ └── index.js │ │ ├── test │ │ │ ├── auth-code-cli.spec.ts │ │ │ └── data │ │ │ │ └── cache.json │ │ └── tsconfig.json │ ├── auth-code-cli-brokered-app │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── authConfig.js │ │ │ ├── graph.js │ │ │ └── index.js │ ├── auth-code-distributed-cache │ │ ├── .beachballrc │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── AuthProvider.ts │ │ │ ├── AxiosHelper.ts │ │ │ ├── PartitionManager.ts │ │ │ ├── RedisClientWrapper.ts │ │ │ ├── UrlUtils.ts │ │ │ ├── app.ts │ │ │ ├── middleware.ts │ │ │ ├── public │ │ │ │ └── style.css │ │ │ └── views │ │ │ │ ├── error.hbs │ │ │ │ ├── index.hbs │ │ │ │ ├── layout.hbs │ │ │ │ └── profile.hbs │ │ └── tsconfig.json │ ├── auth-code-key-vault │ │ ├── .npmrc │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── auth-code-pkce │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── auth-code-with-certs │ │ ├── .npmrc │ │ ├── README.md │ │ ├── certs │ │ │ ├── example.crt │ │ │ └── example.key │ │ ├── index.js │ │ └── package.json │ ├── auth-code │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── CHANGELOG.json │ │ ├── README.md │ │ ├── config │ │ │ ├── AAD-AGC-Confidential.json │ │ │ ├── AAD-AGC-Public.json │ │ │ ├── AAD.json │ │ │ ├── ADFS.json │ │ │ ├── B2C-AAD.json │ │ │ ├── B2C-Local.json │ │ │ ├── B2C-MSA.json │ │ │ └── customConfig.json │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── index.js │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── test │ │ │ ├── auth-code-aad-agc-confidential.spec.ts │ │ │ ├── auth-code-aad-agc-public.spec.ts │ │ │ ├── auth-code-aad.spec.ts │ │ │ ├── auth-code-adfs.spec.ts │ │ │ ├── auth-code-b2c-aad.spec.ts │ │ │ ├── auth-code-b2c-local.spec.ts │ │ │ ├── auth-code-b2c-msa.spec.ts │ │ │ └── data │ │ │ │ └── cacheTemplate.json │ │ └── tsconfig.json │ ├── b2c-user-flows │ │ ├── .npmrc │ │ ├── README.md │ │ ├── config │ │ │ ├── B2C-Local.json │ │ │ ├── B2C-MSA.json │ │ │ └── customConfig.json │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── fetch.js │ │ ├── index.js │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── test │ │ │ ├── user-flows-local.spec.ts │ │ │ └── user-flows-msa.spec.ts │ │ ├── tsconfig.json │ │ └── views │ │ │ ├── api.hbs │ │ │ ├── id.hbs │ │ │ ├── index.hbs │ │ │ └── layouts │ │ │ └── main.hbs │ ├── cachePlugin.js │ ├── cliArgs.js │ ├── client-credentials-distributed-cache │ │ ├── .beachballrc │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── AuthProvider.ts │ │ │ ├── AxiosHelper.ts │ │ │ ├── CustomCachePlugin.ts │ │ │ ├── ProvisionHandler.ts │ │ │ ├── RedisClientWrapper.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── client-credentials-with-cert-from-key-vault │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── app.ts │ │ ├── cliArgs.ts │ │ ├── config │ │ │ └── AAD.json │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── test │ │ │ ├── client-credentials-with-cert-from-key-vault-aad.spec.ts │ │ │ └── data │ │ │ │ └── cacheTemplate.json │ │ └── tsconfig.json │ ├── client-credentials │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── config │ │ │ └── AAD.json │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── index.js │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── test │ │ │ ├── client-credentials-aad-agc.spec.ts │ │ │ ├── client-credentials-aad.spec.ts │ │ │ └── data │ │ │ │ └── cacheTemplate.json │ │ └── tsconfig.json │ ├── custom-INetworkModule-and-network-tracing │ │ ├── .npmrc │ │ ├── HttpClientAxios.ts │ │ ├── HttpClientCurrent.ts │ │ ├── README.md │ │ ├── app.ts │ │ ├── express.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── device-code │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── CHANGELOG.json │ │ ├── README.md │ │ ├── authConfig.json │ │ ├── config │ │ │ ├── AAD-AGC.json │ │ │ ├── AAD.json │ │ │ └── ADFS.json │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── index.js │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── test │ │ │ ├── data │ │ │ │ └── cacheTemplate.json │ │ │ ├── device-code-aad-agc.spec.ts │ │ │ ├── device-code-aad.spec.ts │ │ │ └── device-code-adfs.spec.ts │ │ └── tsconfig.json │ ├── on-behalf-of-distributed-cache │ │ ├── .beachballrc │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── AuthProvider.ts │ │ │ ├── AxiosHelper.ts │ │ │ ├── CustomCachePlugin.ts │ │ │ ├── RedisClientWrapper.ts │ │ │ ├── TokenValidator.ts │ │ │ ├── app.ts │ │ │ └── middleware.ts │ │ └── tsconfig.json │ ├── on-behalf-of │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── README.md │ │ ├── config │ │ │ ├── WEB-API.json │ │ │ └── WEB-APP.json │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── test │ │ │ ├── data │ │ │ │ ├── cacheTemplate.json │ │ │ │ ├── webApiCache.json │ │ │ │ └── webAppCache.json │ │ │ └── obo-aad.spec.ts │ │ ├── tsconfig.json │ │ ├── web-api │ │ │ ├── .npmrc │ │ │ ├── index.js │ │ │ └── package.json │ │ └── web-app │ │ │ ├── .npmrc │ │ │ ├── index.js │ │ │ └── package.json │ ├── refresh-token │ │ ├── .npmrc │ │ ├── README.md │ │ ├── adalApp.js │ │ ├── adalCustomCache.js │ │ ├── config │ │ │ └── customConfig.json │ │ ├── data │ │ │ ├── adal.cacheTemplate.json │ │ │ └── msal.cacheTemplate.json │ │ ├── msalApp.js │ │ ├── msalCachePlugin.js │ │ └── package.json │ ├── silent-flow │ │ ├── .beachballrc │ │ ├── .npmrc │ │ ├── CHANGELOG.json │ │ ├── README.md │ │ ├── config │ │ │ ├── AAD-AGC-Confidential.json │ │ │ ├── AAD-AGC-Public.json │ │ │ ├── AAD.json │ │ │ ├── ADFS.json │ │ │ ├── B2C-AAD.json │ │ │ ├── B2C-Local.json │ │ │ ├── B2C-MSA.json │ │ │ └── customConfig.json │ │ ├── data │ │ │ └── cacheTemplate.json │ │ ├── index.js │ │ ├── jest.config.cjs │ │ ├── package.json │ │ ├── resourceApi.js │ │ ├── test │ │ │ ├── data │ │ │ │ └── cacheTemplate.json │ │ │ ├── silent-flow-aad-agc-confidential.spec.ts │ │ │ ├── silent-flow-aad-agc-public.spec.ts │ │ │ ├── silent-flow-aad.spec.ts │ │ │ ├── silent-flow-adfs.spec.ts │ │ │ ├── silent-flow-b2c-aad.spec.ts │ │ │ ├── silent-flow-b2c-local.spec.ts │ │ │ └── silent-flow-b2c-msa.spec.ts │ │ ├── tsconfig.json │ │ └── views │ │ │ ├── authenticated.hbs │ │ │ ├── layouts │ │ │ └── main.hbs │ │ │ ├── login.hbs │ │ │ └── logout.hbs │ ├── tsconfig.json │ ├── username-password-cca │ │ ├── .npmrc │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── username-password │ │ ├── .npmrc │ │ ├── README.md │ │ ├── data │ │ └── cacheTemplate.json │ │ ├── index.js │ │ └── package.json └── msal-react-samples │ ├── b2c-sample │ ├── .env │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.js │ │ ├── authConfig.js │ │ ├── index.js │ │ ├── pages │ │ │ ├── Home.jsx │ │ │ ├── Logout.jsx │ │ │ └── Profile.jsx │ │ ├── styles │ │ │ └── theme.js │ │ ├── ui-components │ │ │ ├── AccountPicker.jsx │ │ │ ├── EditProfileButton.jsx │ │ │ ├── ErrorComponent.jsx │ │ │ ├── Loading.jsx │ │ │ ├── NavBar.jsx │ │ │ ├── PageLayout.jsx │ │ │ ├── ProfileData.jsx │ │ │ ├── SignInButton.jsx │ │ │ ├── SignInSignOutButton.jsx │ │ │ ├── SignOutButton.jsx │ │ │ ├── TokenClaims.jsx │ │ │ └── WelcomeName.jsx │ │ └── utils │ │ │ ├── ApiCall.js │ │ │ └── NavigationClient.js │ ├── test │ │ ├── local-account.spec.ts │ │ └── msa-account.spec.ts │ └── tsconfig.json │ ├── nextjs-sample │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── jest.config.cjs │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── index.js │ │ └── profile.js │ ├── public │ │ ├── favicon.ico │ │ └── vercel.svg │ ├── src │ │ ├── authConfig.js │ │ ├── styles │ │ │ ├── createEmotionCache.js │ │ │ └── theme.js │ │ ├── ui-components │ │ │ ├── AccountPicker.jsx │ │ │ ├── ErrorComponent.jsx │ │ │ ├── Link.js │ │ │ ├── Loading.jsx │ │ │ ├── NavBar.jsx │ │ │ ├── PageLayout.jsx │ │ │ ├── ProfileData.jsx │ │ │ ├── SignInButton.jsx │ │ │ ├── SignInSignOutButton.jsx │ │ │ ├── SignOutButton.jsx │ │ │ └── WelcomeName.jsx │ │ └── utils │ │ │ ├── MsGraphApiCall.js │ │ │ └── NavigationClient.js │ ├── test │ │ ├── home.spec.ts │ │ └── profile.spec.ts │ └── tsconfig.json │ ├── react-router-sample │ ├── .env │ ├── .env.development │ ├── .env.e2e │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ ├── redirect.html │ │ └── robots.txt │ ├── src │ │ ├── App.js │ │ ├── authConfig.js │ │ ├── index.js │ │ ├── pages │ │ │ ├── Home.jsx │ │ │ ├── Logout.jsx │ │ │ ├── Profile.jsx │ │ │ ├── ProfileRawContext.jsx │ │ │ ├── ProfileUseMsalAuthenticationHook.jsx │ │ │ └── ProfileWithMsal.jsx │ │ ├── styles │ │ │ └── theme.js │ │ ├── ui-components │ │ │ ├── AccountPicker.jsx │ │ │ ├── ErrorComponent.jsx │ │ │ ├── Loading.jsx │ │ │ ├── NavBar.jsx │ │ │ ├── PageLayout.jsx │ │ │ ├── ProfileData.jsx │ │ │ ├── SignInButton.jsx │ │ │ ├── SignInSignOutButton.jsx │ │ │ ├── SignOutButton.jsx │ │ │ └── WelcomeName.jsx │ │ └── utils │ │ │ ├── MsGraphApiCall.js │ │ │ └── NavigationClient.js │ ├── test │ │ ├── home.spec.ts │ │ ├── profile.spec.ts │ │ ├── profileRawContext.spec.ts │ │ └── profileWithMsal.spec.ts │ └── tsconfig.json │ ├── tsconfig.json │ └── typescript-sample │ ├── .env │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.tsx │ ├── authConfig.ts │ ├── graph.tsx │ ├── index.tsx │ ├── pages │ │ ├── Home.tsx │ │ └── Profile.tsx │ ├── react-app-env.d.ts │ ├── styles │ │ └── theme.ts │ ├── ui-components │ │ ├── ErrorComponent.tsx │ │ ├── Loading.tsx │ │ ├── NavBar.tsx │ │ ├── PageLayout.tsx │ │ ├── ProfileData.tsx │ │ ├── SignInButton.tsx │ │ ├── SignInSignOutButton.tsx │ │ ├── SignOutButton.tsx │ │ └── WelcomeName.tsx │ └── utils │ │ ├── MsGraphApiCall.ts │ │ └── NavigationClient.ts │ ├── test │ ├── home.spec.ts │ └── profile.spec.ts │ └── tsconfig.json ├── shared-configs ├── eslint-config-msal │ ├── index.js │ └── package.json ├── eslint-plugin-custom-msal │ ├── index.js │ ├── package.json │ ├── rules │ │ └── no-class-methods-in-constructor.js │ └── test │ │ └── no-class-methods-in-constructor.test.js ├── jest-config │ ├── BroadcastChannelTracker.js │ ├── jest.config.cjs │ └── setupGlobals.cjs └── rollup-msal │ ├── index.js │ └── package.json ├── shared-test-utils ├── package-lock.json ├── package.json └── src │ ├── CredentialGenerators.ts │ ├── TestTimeUtils.ts │ └── index.ts ├── tsconfig.json ├── typedoc.base.json └── typedoc.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.babelrc -------------------------------------------------------------------------------- /.beachballrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.beachballrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/README.md -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/action.yml -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/dist/index.js -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/main/IssueManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/main/IssueManager.ts -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/main/index.ts -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/package-lock.json -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/package.json -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/tsconfig.json -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/types/LabelConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/types/LabelConfig.ts -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/types/RepoParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/types/RepoParams.ts -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/utils/Constants.ts -------------------------------------------------------------------------------- /.github/actions/issue_template_bot/utils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/actions/issue_template_bot/utils/StringUtils.ts -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/instructions/custom_auth_tech.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/instructions/custom_auth_tech.instructions.md -------------------------------------------------------------------------------- /.github/issue_template_bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/issue_template_bot.json -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/beachball-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/beachball-bump.yml -------------------------------------------------------------------------------- /.github/workflows/beachball-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/beachball-check.yml -------------------------------------------------------------------------------- /.github/workflows/client-credential-benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/client-credential-benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/issue-template-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/issue-template-bot.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/metadata-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/metadata-check.yml -------------------------------------------------------------------------------- /.github/workflows/npm-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/npm-audit.yml -------------------------------------------------------------------------------- /.github/workflows/typedoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.github/workflows/typedoc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # //registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN} -------------------------------------------------------------------------------- /.pipelines/1p-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.pipelines/1p-build.yml -------------------------------------------------------------------------------- /.pipelines/1p-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.pipelines/1p-e2e.yml -------------------------------------------------------------------------------- /.pipelines/3p-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.pipelines/3p-e2e.yml -------------------------------------------------------------------------------- /.pipelines/nightly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.pipelines/nightly-build.yml -------------------------------------------------------------------------------- /.pipelines/sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.pipelines/sdl.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api-extractor-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/api-extractor-base.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/codecov.yml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/contributing.md -------------------------------------------------------------------------------- /dev-scripts/updatePemCert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/dev-scripts/updatePemCert.js -------------------------------------------------------------------------------- /docs/diagrams/png/PackageStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/docs/diagrams/png/PackageStructure.png -------------------------------------------------------------------------------- /docs/diagrams/visio/PackageStructure.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/docs/diagrams/visio/PackageStructure.vsdx -------------------------------------------------------------------------------- /docs/images/beachball-changemessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/docs/images/beachball-changemessage.png -------------------------------------------------------------------------------- /docs/images/beachball-changetype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/docs/images/beachball-changetype.png -------------------------------------------------------------------------------- /extensions/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/docs/faq.md -------------------------------------------------------------------------------- /extensions/docs/msal-node-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/docs/msal-node-extensions.md -------------------------------------------------------------------------------- /extensions/msal-node-extensions/.browserslistrc: -------------------------------------------------------------------------------- 1 | maintained node versions -------------------------------------------------------------------------------- /extensions/msal-node-extensions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/.eslintrc.json -------------------------------------------------------------------------------- /extensions/msal-node-extensions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/.gitignore -------------------------------------------------------------------------------- /extensions/msal-node-extensions/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/.npmignore -------------------------------------------------------------------------------- /extensions/msal-node-extensions/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/CHANGELOG.json -------------------------------------------------------------------------------- /extensions/msal-node-extensions/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/CHANGELOG.md -------------------------------------------------------------------------------- /extensions/msal-node-extensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/LICENSE -------------------------------------------------------------------------------- /extensions/msal-node-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/README.md -------------------------------------------------------------------------------- /extensions/msal-node-extensions/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/binding.gyp -------------------------------------------------------------------------------- /extensions/msal-node-extensions/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/jest.config.cjs -------------------------------------------------------------------------------- /extensions/msal-node-extensions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/package.json -------------------------------------------------------------------------------- /extensions/msal-node-extensions/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/rollup.config.js -------------------------------------------------------------------------------- /extensions/msal-node-extensions/src/Dpapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/src/Dpapi.ts -------------------------------------------------------------------------------- /extensions/msal-node-extensions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/src/index.ts -------------------------------------------------------------------------------- /extensions/msal-node-extensions/src/packageMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/src/packageMetadata.ts -------------------------------------------------------------------------------- /extensions/msal-node-extensions/src/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/src/utils/Constants.ts -------------------------------------------------------------------------------- /extensions/msal-node-extensions/src/utils/TypeGuards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/src/utils/TypeGuards.ts -------------------------------------------------------------------------------- /extensions/msal-node-extensions/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/tsconfig.build.json -------------------------------------------------------------------------------- /extensions/msal-node-extensions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/tsconfig.json -------------------------------------------------------------------------------- /extensions/msal-node-extensions/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/msal-node-extensions/typedoc.json -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/.gitignore -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/CHANGELOG.json -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/CHANGELOG.md -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/LICENSE.md -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/README.md -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/forge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/forge.config.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/index.html -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/package.json -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/src/AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/src/AuthProvider.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/src/Preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/src/Preload.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/src/UIManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/src/UIManager.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/src/authConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/src/authConfig.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/src/index.scss -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/src/main.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/src/renderer.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/tsconfig.json -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/webpack.plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/webpack.plugins.ts -------------------------------------------------------------------------------- /extensions/samples/electron-webpack/webpack.rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/extensions/samples/electron-webpack/webpack.rules.ts -------------------------------------------------------------------------------- /gen_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/gen_env.ps1 -------------------------------------------------------------------------------- /gen_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/gen_env.sh -------------------------------------------------------------------------------- /lib/msal-angular/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /lib/msal-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/.editorconfig -------------------------------------------------------------------------------- /lib/msal-angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/.eslintrc.json -------------------------------------------------------------------------------- /lib/msal-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/.gitignore -------------------------------------------------------------------------------- /lib/msal-angular/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/CHANGELOG.json -------------------------------------------------------------------------------- /lib/msal-angular/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/CHANGELOG.md -------------------------------------------------------------------------------- /lib/msal-angular/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/FAQ.md -------------------------------------------------------------------------------- /lib/msal-angular/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/LICENSE -------------------------------------------------------------------------------- /lib/msal-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/README.md -------------------------------------------------------------------------------- /lib/msal-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/angular.json -------------------------------------------------------------------------------- /lib/msal-angular/docs/angular-universal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/angular-universal.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/configuration.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/errors.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/events.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/initialization.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/known-issues.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/logging.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/msal-guard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/msal-guard.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/msal-interceptor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/msal-interceptor.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/multi-tenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/multi-tenant.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/performance.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/public-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/public-apis.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/redirects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/redirects.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/security.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/ssosilent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/ssosilent.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/v0-v1-upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/v0-v1-upgrade-guide.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/v1-v2-upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/v1-v2-upgrade-guide.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/v2-v3-upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/v2-v3-upgrade-guide.md -------------------------------------------------------------------------------- /lib/msal-angular/docs/v3-v4-upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/docs/v3-v4-upgrade-guide.md -------------------------------------------------------------------------------- /lib/msal-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/karma.conf.js -------------------------------------------------------------------------------- /lib/msal-angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/ng-package.json -------------------------------------------------------------------------------- /lib/msal-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/package.json -------------------------------------------------------------------------------- /lib/msal-angular/src/IMsalService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/IMsalService.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/constants.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.broadcast.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.broadcast.config.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.broadcast.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.broadcast.service.spec.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.broadcast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.broadcast.service.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.guard.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.guard.config.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.guard.spec.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.guard.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.interceptor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.interceptor.config.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.interceptor.spec.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.interceptor.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.module.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.navigation.client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.navigation.client.spec.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.navigation.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.navigation.client.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.redirect.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.redirect.component.spec.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.redirect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.redirect.component.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.service.spec.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/msal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/msal.service.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/packageMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/packageMetadata.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/public-api.ts -------------------------------------------------------------------------------- /lib/msal-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/src/test.ts -------------------------------------------------------------------------------- /lib/msal-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/tsconfig.json -------------------------------------------------------------------------------- /lib/msal-angular/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/tsconfig.lib.json -------------------------------------------------------------------------------- /lib/msal-angular/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /lib/msal-angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/tsconfig.spec.json -------------------------------------------------------------------------------- /lib/msal-angular/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-angular/typedoc.json -------------------------------------------------------------------------------- /lib/msal-browser/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/.babelrc -------------------------------------------------------------------------------- /lib/msal-browser/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/.eslintrc.json -------------------------------------------------------------------------------- /lib/msal-browser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/.gitignore -------------------------------------------------------------------------------- /lib/msal-browser/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/.npmignore -------------------------------------------------------------------------------- /lib/msal-browser/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/CHANGELOG.json -------------------------------------------------------------------------------- /lib/msal-browser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/CHANGELOG.md -------------------------------------------------------------------------------- /lib/msal-browser/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/FAQ.md -------------------------------------------------------------------------------- /lib/msal-browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/LICENSE -------------------------------------------------------------------------------- /lib/msal-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/README.md -------------------------------------------------------------------------------- /lib/msal-browser/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/api-extractor.json -------------------------------------------------------------------------------- /lib/msal-browser/apiReview/msal-browser.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/apiReview/msal-browser.api.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/accounts.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/acquire-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/acquire-token.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/caching.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/cdn-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/cdn-usage.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/configuration.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/device-bound-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/device-bound-tokens.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/errors.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/events.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/iframe-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/iframe-usage.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/images/BrowserLogEnablement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/images/BrowserLogEnablement.png -------------------------------------------------------------------------------- /lib/msal-browser/docs/images/msaljs-boot-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/images/msaljs-boot-flow.png -------------------------------------------------------------------------------- /lib/msal-browser/docs/initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/initialization.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/instance-aware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/instance-aware.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/logging.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/login-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/login-user.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/logout.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/navigation.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/performance.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/request-response-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/request-response-object.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/resources-and-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/resources-and-scopes.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/response.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/shr-client-claims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/shr-client-claims.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/shr-server-nonce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/shr-server-nonce.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/signed-http-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/signed-http-request.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/ssh-certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/ssh-certificates.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/testing.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/token-lifetimes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/token-lifetimes.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/v1-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/v1-migration.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/v2-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/v2-migration.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/v3-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/v3-migration.md -------------------------------------------------------------------------------- /lib/msal-browser/docs/working-with-b2c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/docs/working-with-b2c.md -------------------------------------------------------------------------------- /lib/msal-browser/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/jest.config.cjs -------------------------------------------------------------------------------- /lib/msal-browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/package.json -------------------------------------------------------------------------------- /lib/msal-browser/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/rollup.config.js -------------------------------------------------------------------------------- /lib/msal-browser/src/app/IPublicClientApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/app/IPublicClientApplication.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/app/PublicClientApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/app/PublicClientApplication.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/app/PublicClientNext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/app/PublicClientNext.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/AccountManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/AccountManager.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/AsyncMemoryStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/AsyncMemoryStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/BrowserCacheManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/BrowserCacheManager.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/CacheHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/CacheHelpers.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/CacheKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/CacheKeys.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/CookieStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/CookieStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/DatabaseStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/DatabaseStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/EncryptedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/EncryptedData.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/IAsyncStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/IAsyncStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/ITokenCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/ITokenCache.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/IWindowStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/IWindowStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/LocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/LocalStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/MemoryStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/MemoryStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/SessionStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/SessionStorage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/cache/TokenCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/cache/TokenCache.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/config/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/config/Configuration.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/controllers/ControllerFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/controllers/ControllerFactory.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/controllers/IController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/controllers/IController.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/crypto/BrowserCrypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/crypto/BrowserCrypto.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/crypto/CryptoOps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/crypto/CryptoOps.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/crypto/PkceGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/crypto/PkceGenerator.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/crypto/SignedHttpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/crypto/SignedHttpRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/custom_auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/custom_auth/index.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/encode/Base64Decode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/encode/Base64Decode.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/encode/Base64Encode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/encode/Base64Encode.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/error/BrowserAuthError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/error/BrowserAuthError.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/error/BrowserAuthErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/error/BrowserAuthErrorCodes.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/error/NativeAuthError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/error/NativeAuthError.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/error/NativeAuthErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/error/NativeAuthErrorCodes.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/error/NestedAppAuthError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/error/NestedAppAuthError.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/event/EventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/event/EventHandler.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/event/EventMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/event/EventMessage.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/event/EventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/event/EventType.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/index.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/AccountInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/AccountInfo.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/AuthBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/AuthBridge.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/AuthResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/AuthResult.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeAccountContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeAccountContext.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeCapabilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeCapabilities.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeError.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeProxy.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeRequestEnvelope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeRequestEnvelope.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeResponseEnvelope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeResponseEnvelope.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/BridgeStatusCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/BridgeStatusCode.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/IBridgeProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/IBridgeProxy.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/InitContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/InitContext.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/TokenRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/TokenRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/naa/TokenResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/naa/TokenResponse.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/navigation/INavigationClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/navigation/INavigationClient.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/navigation/NavigationClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/navigation/NavigationClient.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/navigation/NavigationOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/navigation/NavigationOptions.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/network/FetchClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/network/FetchClient.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/packageMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/packageMetadata.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/protocol/Authorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/protocol/Authorize.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/request/ClearCacheRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/request/ClearCacheRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/request/EndSessionRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/request/EndSessionRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/request/PopupRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/request/PopupRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/request/RedirectRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/request/RedirectRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/request/RequestHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/request/RequestHelpers.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/request/SilentRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/request/SilentRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/request/SsoSilentRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/request/SsoSilentRequest.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/response/ResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/response/ResponseHandler.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/utils/BrowserConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/utils/BrowserConstants.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/utils/BrowserProtocolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/utils/BrowserProtocolUtils.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/utils/BrowserUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/utils/BrowserUtils.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/utils/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/utils/Helpers.ts -------------------------------------------------------------------------------- /lib/msal-browser/src/utils/MsalFrameStatsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/src/utils/MsalFrameStatsUtils.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/app/PCANonBrowser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/app/PCANonBrowser.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/cache/CookieStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/cache/CookieStorage.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/cache/DatabaseStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/cache/DatabaseStorage.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/cache/LocalStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/cache/LocalStorage.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/cache/TestStorageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/cache/TestStorageManager.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/cache/TokenCache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/cache/TokenCache.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/config/Configuration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/config/Configuration.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/crypto/BrowserCrypto.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/crypto/BrowserCrypto.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/crypto/CryptoOps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/crypto/CryptoOps.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/crypto/PkceGenerator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/crypto/PkceGenerator.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/encode/Base64Decode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/encode/Base64Decode.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/encode/Base64Encode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/encode/Base64Encode.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/error/BrowserAuthError.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/error/BrowserAuthError.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/error/NativeAuthError.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/error/NativeAuthError.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/event/EventHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/event/EventHandler.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/event/EventMessage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/event/EventMessage.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/naa/BridgeProxy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/naa/BridgeProxy.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/naa/BridgeProxyConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/naa/BridgeProxyConstants.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/naa/JSRuntime.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/naa/JSRuntime.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/naa/MockBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/naa/MockBridge.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/network/FetchClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/network/FetchClient.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/protocol/Authorize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/protocol/Authorize.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/utils/BridgeSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/utils/BridgeSetup.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/utils/BrowserCrypto.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/utils/BrowserCrypto.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/utils/BrowserUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/utils/BrowserUtils.spec.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/utils/StringConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/utils/StringConstants.ts -------------------------------------------------------------------------------- /lib/msal-browser/test/utils/TelemetryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/test/utils/TelemetryUtils.ts -------------------------------------------------------------------------------- /lib/msal-browser/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/tsconfig.base.json -------------------------------------------------------------------------------- /lib/msal-browser/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/tsconfig.build.json -------------------------------------------------------------------------------- /lib/msal-browser/tsconfig.custom-auth.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/tsconfig.custom-auth.build.json -------------------------------------------------------------------------------- /lib/msal-browser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/tsconfig.json -------------------------------------------------------------------------------- /lib/msal-browser/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-browser/typedoc.json -------------------------------------------------------------------------------- /lib/msal-common/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/.babelrc -------------------------------------------------------------------------------- /lib/msal-common/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/.browserslistrc -------------------------------------------------------------------------------- /lib/msal-common/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/.eslintrc.json -------------------------------------------------------------------------------- /lib/msal-common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/.gitignore -------------------------------------------------------------------------------- /lib/msal-common/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/.npmignore -------------------------------------------------------------------------------- /lib/msal-common/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/CHANGELOG.json -------------------------------------------------------------------------------- /lib/msal-common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/CHANGELOG.md -------------------------------------------------------------------------------- /lib/msal-common/FAQ.md: -------------------------------------------------------------------------------- 1 | # FAQ 2 | -------------------------------------------------------------------------------- /lib/msal-common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/LICENSE -------------------------------------------------------------------------------- /lib/msal-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/README.md -------------------------------------------------------------------------------- /lib/msal-common/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/api-extractor.json -------------------------------------------------------------------------------- /lib/msal-common/apiReview/msal-common.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/apiReview/msal-common.api.md -------------------------------------------------------------------------------- /lib/msal-common/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/browser/README.md -------------------------------------------------------------------------------- /lib/msal-common/browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/browser/package.json -------------------------------------------------------------------------------- /lib/msal-common/docs/ADFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/ADFS.md -------------------------------------------------------------------------------- /lib/msal-common/docs/Accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/Accounts.md -------------------------------------------------------------------------------- /lib/msal-common/docs/Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/Response.md -------------------------------------------------------------------------------- /lib/msal-common/docs/Throttling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/Throttling.md -------------------------------------------------------------------------------- /lib/msal-common/docs/authority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/authority.md -------------------------------------------------------------------------------- /lib/msal-common/docs/claims-challenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/claims-challenge.md -------------------------------------------------------------------------------- /lib/msal-common/docs/client-capability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/client-capability.md -------------------------------------------------------------------------------- /lib/msal-common/docs/multi-tenant-accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/multi-tenant-accounts.md -------------------------------------------------------------------------------- /lib/msal-common/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/docs/performance.md -------------------------------------------------------------------------------- /lib/msal-common/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/jest.config.cjs -------------------------------------------------------------------------------- /lib/msal-common/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/node/README.md -------------------------------------------------------------------------------- /lib/msal-common/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/node/package.json -------------------------------------------------------------------------------- /lib/msal-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/package.json -------------------------------------------------------------------------------- /lib/msal-common/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/rollup.config.js -------------------------------------------------------------------------------- /lib/msal-common/scripts/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/scripts/metadata.ts -------------------------------------------------------------------------------- /lib/msal-common/src/account/AccountInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/account/AccountInfo.ts -------------------------------------------------------------------------------- /lib/msal-common/src/account/AuthToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/account/AuthToken.ts -------------------------------------------------------------------------------- /lib/msal-common/src/account/CcsCredential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/account/CcsCredential.ts -------------------------------------------------------------------------------- /lib/msal-common/src/account/ClientCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/account/ClientCredentials.ts -------------------------------------------------------------------------------- /lib/msal-common/src/account/ClientInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/account/ClientInfo.ts -------------------------------------------------------------------------------- /lib/msal-common/src/account/TokenClaims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/account/TokenClaims.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/Authority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/Authority.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/AuthorityFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/AuthorityFactory.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/AuthorityMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/AuthorityMetadata.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/AuthorityOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/AuthorityOptions.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/AuthorityType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/AuthorityType.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/AzureRegion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/AzureRegion.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/ImdsOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/ImdsOptions.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/OIDCOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/OIDCOptions.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/ProtocolMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/ProtocolMode.ts -------------------------------------------------------------------------------- /lib/msal-common/src/authority/RegionDiscovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/authority/RegionDiscovery.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/CacheManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/CacheManager.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/entities/AccountEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/entities/AccountEntity.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/entities/CacheRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/entities/CacheRecord.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/entities/IdTokenEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/entities/IdTokenEntity.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/interface/ICacheManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/interface/ICacheManager.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/interface/ICachePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/interface/ICachePlugin.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/utils/CacheHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/utils/CacheHelpers.ts -------------------------------------------------------------------------------- /lib/msal-common/src/cache/utils/CacheTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/cache/utils/CacheTypes.ts -------------------------------------------------------------------------------- /lib/msal-common/src/client/BaseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/client/BaseClient.ts -------------------------------------------------------------------------------- /lib/msal-common/src/client/RefreshTokenClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/client/RefreshTokenClient.ts -------------------------------------------------------------------------------- /lib/msal-common/src/client/SilentFlowClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/client/SilentFlowClient.ts -------------------------------------------------------------------------------- /lib/msal-common/src/config/AppTokenProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/config/AppTokenProvider.ts -------------------------------------------------------------------------------- /lib/msal-common/src/config/ClientConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/config/ClientConfiguration.ts -------------------------------------------------------------------------------- /lib/msal-common/src/constants/AADServerParamKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/constants/AADServerParamKeys.ts -------------------------------------------------------------------------------- /lib/msal-common/src/crypto/ICrypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/crypto/ICrypto.ts -------------------------------------------------------------------------------- /lib/msal-common/src/crypto/IGuidGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/crypto/IGuidGenerator.ts -------------------------------------------------------------------------------- /lib/msal-common/src/crypto/JoseHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/crypto/JoseHeader.ts -------------------------------------------------------------------------------- /lib/msal-common/src/crypto/PopTokenGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/crypto/PopTokenGenerator.ts -------------------------------------------------------------------------------- /lib/msal-common/src/crypto/SignedHttpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/crypto/SignedHttpRequest.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/AuthError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/AuthError.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/AuthErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/AuthErrorCodes.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/CacheError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/CacheError.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/CacheErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/CacheErrorCodes.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/ClientAuthError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/ClientAuthError.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/ClientAuthErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/ClientAuthErrorCodes.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/JoseHeaderError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/JoseHeaderError.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/JoseHeaderErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/JoseHeaderErrorCodes.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/NetworkError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/NetworkError.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/PlatformBrokerError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/PlatformBrokerError.ts -------------------------------------------------------------------------------- /lib/msal-common/src/error/ServerError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/error/ServerError.ts -------------------------------------------------------------------------------- /lib/msal-common/src/exports-browser-only.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/exports-browser-only.ts -------------------------------------------------------------------------------- /lib/msal-common/src/exports-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/exports-common.ts -------------------------------------------------------------------------------- /lib/msal-common/src/exports-node-only.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/exports-node-only.ts -------------------------------------------------------------------------------- /lib/msal-common/src/index-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/index-browser.ts -------------------------------------------------------------------------------- /lib/msal-common/src/index-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/index-node.ts -------------------------------------------------------------------------------- /lib/msal-common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/index.ts -------------------------------------------------------------------------------- /lib/msal-common/src/logger/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/logger/Logger.ts -------------------------------------------------------------------------------- /lib/msal-common/src/network/INetworkModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/network/INetworkModule.ts -------------------------------------------------------------------------------- /lib/msal-common/src/network/NetworkResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/network/NetworkResponse.ts -------------------------------------------------------------------------------- /lib/msal-common/src/network/RequestThumbprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/network/RequestThumbprint.ts -------------------------------------------------------------------------------- /lib/msal-common/src/network/ThrottlingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/network/ThrottlingUtils.ts -------------------------------------------------------------------------------- /lib/msal-common/src/packageMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/packageMetadata.ts -------------------------------------------------------------------------------- /lib/msal-common/src/protocol/Authorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/protocol/Authorize.ts -------------------------------------------------------------------------------- /lib/msal-common/src/request/BaseAuthRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/request/BaseAuthRequest.ts -------------------------------------------------------------------------------- /lib/msal-common/src/request/NativeRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/request/NativeRequest.ts -------------------------------------------------------------------------------- /lib/msal-common/src/request/NativeSignOutRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/request/NativeSignOutRequest.ts -------------------------------------------------------------------------------- /lib/msal-common/src/request/ScopeSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/request/ScopeSet.ts -------------------------------------------------------------------------------- /lib/msal-common/src/request/StoreInCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/request/StoreInCache.ts -------------------------------------------------------------------------------- /lib/msal-common/src/response/AuthenticationResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/response/AuthenticationResult.ts -------------------------------------------------------------------------------- /lib/msal-common/src/response/AuthorizeResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/response/AuthorizeResponse.ts -------------------------------------------------------------------------------- /lib/msal-common/src/response/DeviceCodeResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/response/DeviceCodeResponse.ts -------------------------------------------------------------------------------- /lib/msal-common/src/response/IMDSBadResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/response/IMDSBadResponse.ts -------------------------------------------------------------------------------- /lib/msal-common/src/response/ResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/response/ResponseHandler.ts -------------------------------------------------------------------------------- /lib/msal-common/src/url/IUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/url/IUri.ts -------------------------------------------------------------------------------- /lib/msal-common/src/url/UrlString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/url/UrlString.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/ClientAssertionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/ClientAssertionUtils.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/Constants.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/FunctionWrappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/FunctionWrappers.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/MsalTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/MsalTypes.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/ProtocolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/ProtocolUtils.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/StringUtils.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/TimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/TimeUtils.ts -------------------------------------------------------------------------------- /lib/msal-common/src/utils/UrlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/src/utils/UrlUtils.ts -------------------------------------------------------------------------------- /lib/msal-common/test/account/AccountInfo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/account/AccountInfo.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/account/AuthToken.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/account/AuthToken.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/account/ClientInfo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/account/ClientInfo.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/account/TokenClaims.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/account/TokenClaims.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/authority/Authority.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/authority/Authority.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/cache/CacheManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/cache/CacheManager.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/cache/MockCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/cache/MockCache.ts -------------------------------------------------------------------------------- /lib/msal-common/test/cache/cacheStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/cache/cacheStore.json -------------------------------------------------------------------------------- /lib/msal-common/test/client/BaseClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/client/BaseClient.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/client/ClientTestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/client/ClientTestUtils.ts -------------------------------------------------------------------------------- /lib/msal-common/test/client/SilentFlowClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/client/SilentFlowClient.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/crypto/JoseHeader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/crypto/JoseHeader.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/error/AuthError.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/error/AuthError.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/error/ClientAuthError.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/error/ClientAuthError.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/error/JoseHeaderError.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/error/JoseHeaderError.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/error/ServerError.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/error/ServerError.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/logger/Logger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/logger/Logger.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/network/ThrottlingUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/network/ThrottlingUtils.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/protocol/Authorize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/protocol/Authorize.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/request/ScopeSet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/request/ScopeSet.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/test_kit/StringConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/test_kit/StringConstants.ts -------------------------------------------------------------------------------- /lib/msal-common/test/test_kit/TestErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/test_kit/TestErrors.ts -------------------------------------------------------------------------------- /lib/msal-common/test/url/UrlString.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/url/UrlString.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/utils/FunctionWrappers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/utils/FunctionWrappers.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/utils/ProtocolUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/utils/ProtocolUtils.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/utils/StringUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/utils/StringUtils.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/utils/TimeUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/utils/TimeUtils.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/test/utils/UrlUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/test/utils/UrlUtils.spec.ts -------------------------------------------------------------------------------- /lib/msal-common/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/tsconfig.base.json -------------------------------------------------------------------------------- /lib/msal-common/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/tsconfig.build.json -------------------------------------------------------------------------------- /lib/msal-common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/tsconfig.json -------------------------------------------------------------------------------- /lib/msal-common/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-common/typedoc.json -------------------------------------------------------------------------------- /lib/msal-node/.browserslistrc: -------------------------------------------------------------------------------- 1 | maintained node versions -------------------------------------------------------------------------------- /lib/msal-node/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/.eslintrc.json -------------------------------------------------------------------------------- /lib/msal-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/.gitignore -------------------------------------------------------------------------------- /lib/msal-node/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/.npmignore -------------------------------------------------------------------------------- /lib/msal-node/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/CHANGELOG.json -------------------------------------------------------------------------------- /lib/msal-node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/CHANGELOG.md -------------------------------------------------------------------------------- /lib/msal-node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/LICENSE -------------------------------------------------------------------------------- /lib/msal-node/NodeCache.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/msal-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/README.md -------------------------------------------------------------------------------- /lib/msal-node/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/api-extractor.json -------------------------------------------------------------------------------- /lib/msal-node/apiReview/msal-node.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/apiReview/msal-node.api.md -------------------------------------------------------------------------------- /lib/msal-node/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/cache.json -------------------------------------------------------------------------------- /lib/msal-node/docs/accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/accounts.md -------------------------------------------------------------------------------- /lib/msal-node/docs/brokering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/brokering.md -------------------------------------------------------------------------------- /lib/msal-node/docs/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/caching.md -------------------------------------------------------------------------------- /lib/msal-node/docs/certificate-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/certificate-credentials.md -------------------------------------------------------------------------------- /lib/msal-node/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/configuration.md -------------------------------------------------------------------------------- /lib/msal-node/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/faq.md -------------------------------------------------------------------------------- /lib/msal-node/docs/key-vault-managed-identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/key-vault-managed-identity.md -------------------------------------------------------------------------------- /lib/msal-node/docs/managed-identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/managed-identity.md -------------------------------------------------------------------------------- /lib/msal-node/docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/migration.md -------------------------------------------------------------------------------- /lib/msal-node/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/performance.md -------------------------------------------------------------------------------- /lib/msal-node/docs/regional-authorities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/regional-authorities.md -------------------------------------------------------------------------------- /lib/msal-node/docs/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/request.md -------------------------------------------------------------------------------- /lib/msal-node/docs/sni.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/sni.md -------------------------------------------------------------------------------- /lib/msal-node/docs/v2-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/docs/v2-migration.md -------------------------------------------------------------------------------- /lib/msal-node/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/jest.config.cjs -------------------------------------------------------------------------------- /lib/msal-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/package.json -------------------------------------------------------------------------------- /lib/msal-node/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/rollup.config.js -------------------------------------------------------------------------------- /lib/msal-node/src/cache/CacheHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/cache/CacheHelpers.ts -------------------------------------------------------------------------------- /lib/msal-node/src/cache/ITokenCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/cache/ITokenCache.ts -------------------------------------------------------------------------------- /lib/msal-node/src/cache/NodeStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/cache/NodeStorage.ts -------------------------------------------------------------------------------- /lib/msal-node/src/cache/TokenCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/cache/TokenCache.ts -------------------------------------------------------------------------------- /lib/msal-node/src/cache/distributed/ICacheClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/cache/distributed/ICacheClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/cache/serializer/Deserializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/cache/serializer/Deserializer.ts -------------------------------------------------------------------------------- /lib/msal-node/src/cache/serializer/Serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/cache/serializer/Serializer.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/ClientApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/ClientApplication.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/ClientAssertion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/ClientAssertion.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/ClientCredentialClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/ClientCredentialClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/DeviceCodeClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/DeviceCodeClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/IPublicClientApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/IPublicClientApplication.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/ManagedIdentityClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/ManagedIdentityClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/OnBehalfOfClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/OnBehalfOfClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/PublicClientApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/PublicClientApplication.ts -------------------------------------------------------------------------------- /lib/msal-node/src/client/UsernamePasswordClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/client/UsernamePasswordClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/config/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/config/Configuration.ts -------------------------------------------------------------------------------- /lib/msal-node/src/config/ManagedIdentityId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/config/ManagedIdentityId.ts -------------------------------------------------------------------------------- /lib/msal-node/src/crypto/CryptoProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/crypto/CryptoProvider.ts -------------------------------------------------------------------------------- /lib/msal-node/src/crypto/GuidGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/crypto/GuidGenerator.ts -------------------------------------------------------------------------------- /lib/msal-node/src/crypto/HashUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/crypto/HashUtils.ts -------------------------------------------------------------------------------- /lib/msal-node/src/crypto/PkceGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/crypto/PkceGenerator.ts -------------------------------------------------------------------------------- /lib/msal-node/src/error/ManagedIdentityError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/error/ManagedIdentityError.ts -------------------------------------------------------------------------------- /lib/msal-node/src/error/ManagedIdentityErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/error/ManagedIdentityErrorCodes.ts -------------------------------------------------------------------------------- /lib/msal-node/src/error/NodeAuthError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/error/NodeAuthError.ts -------------------------------------------------------------------------------- /lib/msal-node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/index.ts -------------------------------------------------------------------------------- /lib/msal-node/src/internals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/internals.ts -------------------------------------------------------------------------------- /lib/msal-node/src/network/HttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/network/HttpClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/network/HttpClientWithRetries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/network/HttpClientWithRetries.ts -------------------------------------------------------------------------------- /lib/msal-node/src/network/ILoopbackClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/network/ILoopbackClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/network/LoopbackClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/network/LoopbackClient.ts -------------------------------------------------------------------------------- /lib/msal-node/src/packageMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/packageMetadata.ts -------------------------------------------------------------------------------- /lib/msal-node/src/protocol/Authorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/protocol/Authorize.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/AuthorizationUrlRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/AuthorizationUrlRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/ClientCredentialRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/ClientCredentialRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/DeviceCodeRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/DeviceCodeRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/InteractiveRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/InteractiveRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/ManagedIdentityRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/ManagedIdentityRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/OnBehalfOfRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/OnBehalfOfRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/RefreshTokenRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/RefreshTokenRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/SignOutRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/SignOutRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/SilentFlowRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/SilentFlowRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/request/UsernamePasswordRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/request/UsernamePasswordRequest.ts -------------------------------------------------------------------------------- /lib/msal-node/src/retry/ExponentialRetryStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/retry/ExponentialRetryStrategy.ts -------------------------------------------------------------------------------- /lib/msal-node/src/retry/IHttpRetryPolicy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/retry/IHttpRetryPolicy.ts -------------------------------------------------------------------------------- /lib/msal-node/src/retry/ImdsRetryPolicy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/retry/ImdsRetryPolicy.ts -------------------------------------------------------------------------------- /lib/msal-node/src/retry/LinearRetryStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/retry/LinearRetryStrategy.ts -------------------------------------------------------------------------------- /lib/msal-node/src/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/utils/Constants.ts -------------------------------------------------------------------------------- /lib/msal-node/src/utils/EncodingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/utils/EncodingUtils.ts -------------------------------------------------------------------------------- /lib/msal-node/src/utils/NetworkUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/utils/NetworkUtils.ts -------------------------------------------------------------------------------- /lib/msal-node/src/utils/TimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/src/utils/TimeUtils.ts -------------------------------------------------------------------------------- /lib/msal-node/test/cache/Storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/cache/Storage.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/cache/TokenCache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/cache/TokenCache.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/cache/cacheConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/cache/cacheConstants.ts -------------------------------------------------------------------------------- /lib/msal-node/test/cache/serializer/Account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/cache/serializer/Account.json -------------------------------------------------------------------------------- /lib/msal-node/test/cache/serializer/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/cache/serializer/cache.json -------------------------------------------------------------------------------- /lib/msal-node/test/client/ClientAssertion.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/client/ClientAssertion.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/client/ClientTestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/client/ClientTestUtils.ts -------------------------------------------------------------------------------- /lib/msal-node/test/client/DeviceCodeClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/client/DeviceCodeClient.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/client/OnBehalfOfClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/client/OnBehalfOfClient.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/crypto/CryptoProvider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/crypto/CryptoProvider.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/crypto/GuidGenerator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/crypto/GuidGenerator.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/crypto/PkceGenerator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/crypto/PkceGenerator.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/network/HttpClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/network/HttpClient.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/test_kit/StringConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/test_kit/StringConstants.ts -------------------------------------------------------------------------------- /lib/msal-node/test/utils/CryptoKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/utils/CryptoKeys.ts -------------------------------------------------------------------------------- /lib/msal-node/test/utils/EncodingUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/utils/EncodingUtils.spec.ts -------------------------------------------------------------------------------- /lib/msal-node/test/utils/MockNativeBrokerPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/utils/MockNativeBrokerPlugin.ts -------------------------------------------------------------------------------- /lib/msal-node/test/utils/MockNetworkClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/utils/MockNetworkClient.ts -------------------------------------------------------------------------------- /lib/msal-node/test/utils/MockUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/utils/MockUtils.ts -------------------------------------------------------------------------------- /lib/msal-node/test/utils/TestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/test/utils/TestConstants.ts -------------------------------------------------------------------------------- /lib/msal-node/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/tsconfig.build.json -------------------------------------------------------------------------------- /lib/msal-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/tsconfig.json -------------------------------------------------------------------------------- /lib/msal-node/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-node/typedoc.json -------------------------------------------------------------------------------- /lib/msal-react/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/.eslintrc.json -------------------------------------------------------------------------------- /lib/msal-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/.gitignore -------------------------------------------------------------------------------- /lib/msal-react/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/CHANGELOG.json -------------------------------------------------------------------------------- /lib/msal-react/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/CHANGELOG.md -------------------------------------------------------------------------------- /lib/msal-react/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/FAQ.md -------------------------------------------------------------------------------- /lib/msal-react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/LICENSE -------------------------------------------------------------------------------- /lib/msal-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/README.md -------------------------------------------------------------------------------- /lib/msal-react/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/api-extractor.json -------------------------------------------------------------------------------- /lib/msal-react/apiReview/msal-react.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/apiReview/msal-react.api.md -------------------------------------------------------------------------------- /lib/msal-react/docs/class-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/docs/class-components.md -------------------------------------------------------------------------------- /lib/msal-react/docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/docs/errors.md -------------------------------------------------------------------------------- /lib/msal-react/docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/docs/events.md -------------------------------------------------------------------------------- /lib/msal-react/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/docs/getting-started.md -------------------------------------------------------------------------------- /lib/msal-react/docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/docs/hooks.md -------------------------------------------------------------------------------- /lib/msal-react/docs/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/docs/migration-guide.md -------------------------------------------------------------------------------- /lib/msal-react/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/docs/performance.md -------------------------------------------------------------------------------- /lib/msal-react/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/jest.config.cjs -------------------------------------------------------------------------------- /lib/msal-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/package.json -------------------------------------------------------------------------------- /lib/msal-react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/rollup.config.js -------------------------------------------------------------------------------- /lib/msal-react/src/MsalContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/MsalContext.ts -------------------------------------------------------------------------------- /lib/msal-react/src/MsalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/MsalProvider.tsx -------------------------------------------------------------------------------- /lib/msal-react/src/components/withMsal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/components/withMsal.tsx -------------------------------------------------------------------------------- /lib/msal-react/src/error/ReactAuthError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/error/ReactAuthError.ts -------------------------------------------------------------------------------- /lib/msal-react/src/hooks/useAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/hooks/useAccount.ts -------------------------------------------------------------------------------- /lib/msal-react/src/hooks/useIsAuthenticated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/hooks/useIsAuthenticated.ts -------------------------------------------------------------------------------- /lib/msal-react/src/hooks/useMsal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/hooks/useMsal.ts -------------------------------------------------------------------------------- /lib/msal-react/src/hooks/useMsalAuthentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/hooks/useMsalAuthentication.ts -------------------------------------------------------------------------------- /lib/msal-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/index.ts -------------------------------------------------------------------------------- /lib/msal-react/src/packageMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/packageMetadata.ts -------------------------------------------------------------------------------- /lib/msal-react/src/types/AccountIdentifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/types/AccountIdentifiers.ts -------------------------------------------------------------------------------- /lib/msal-react/src/utils/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/src/utils/utilities.ts -------------------------------------------------------------------------------- /lib/msal-react/test/MsalProvider.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/test/MsalProvider.spec.tsx -------------------------------------------------------------------------------- /lib/msal-react/test/TestConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/test/TestConstants.ts -------------------------------------------------------------------------------- /lib/msal-react/test/components/withMsal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/test/components/withMsal.spec.tsx -------------------------------------------------------------------------------- /lib/msal-react/test/utils/utilities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/test/utils/utilities.spec.ts -------------------------------------------------------------------------------- /lib/msal-react/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/tsconfig.build.json -------------------------------------------------------------------------------- /lib/msal-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/tsconfig.json -------------------------------------------------------------------------------- /lib/msal-react/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/lib/msal-react/typedoc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/package.json -------------------------------------------------------------------------------- /regression-tests/msal-node/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/regression-tests/msal-node/Constants.js -------------------------------------------------------------------------------- /regression-tests/msal-node/client-credential/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /release-scripts/getReleaseDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/release-scripts/getReleaseDate.js -------------------------------------------------------------------------------- /release-scripts/getUpdatedVersions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/release-scripts/getUpdatedVersions.js -------------------------------------------------------------------------------- /release-scripts/updateVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/release-scripts/updateVersion.js -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/roadmap.md -------------------------------------------------------------------------------- /samples/e2eTestUtils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/package.json -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/BrowserCacheTestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/BrowserCacheTestUtils.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/CertificateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/CertificateUtils.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/Constants.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/KeyVaultUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/KeyVaultUtils.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/LabApiQueryParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/LabApiQueryParams.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/LabClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/LabClient.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/LabConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/LabConfig.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/MsidApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/MsidApp.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/MsidLab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/MsidLab.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/MsidUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/MsidUser.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/NodeCacheTestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/NodeCacheTestUtils.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/TestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/TestUtils.ts -------------------------------------------------------------------------------- /samples/e2eTestUtils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/e2eTestUtils/src/index.ts -------------------------------------------------------------------------------- /samples/msal-angular-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-angular-samples/README.md -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-b2c-sample/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-b2c-sample/src/app/failed/failed.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-b2c-sample/src/app/failed/failed.component.html: -------------------------------------------------------------------------------- 1 |
Login failed. Please try again.
-------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-b2c-sample/src/app/profile/profile.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-b2c-sample/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-b2c-sample/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-modules-sample/src/app/failed/failed.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-modules-sample/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-modules-sample/src/app/profile/profile.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-angular-samples/angular-modules-sample/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/ExpressSample/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/ExpressSample/.env -------------------------------------------------------------------------------- /samples/msal-browser-samples/ExpressSample/.env.e2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/ExpressSample/.env.e2e -------------------------------------------------------------------------------- /samples/msal-browser-samples/ExpressSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/ExpressSample/README.md -------------------------------------------------------------------------------- /samples/msal-browser-samples/ExpressSample/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/ExpressSample/server.js -------------------------------------------------------------------------------- /samples/msal-browser-samples/ExpressSample/views/home.hbs: -------------------------------------------------------------------------------- 1 | {{> home-content}} 2 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/ExpressSample/views/profile.hbs: -------------------------------------------------------------------------------- 1 | {{> profile-content}} 2 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/HybridSample/.gitignore: -------------------------------------------------------------------------------- 1 | !bin 2 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/HybridSample/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/HybridSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/HybridSample/README.md -------------------------------------------------------------------------------- /samples/msal-browser-samples/HybridSample/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/HybridSample/app.js -------------------------------------------------------------------------------- /samples/msal-browser-samples/HybridSample/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/HybridSample/bin/www -------------------------------------------------------------------------------- /samples/msal-browser-samples/OfficeAddin/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/OfficeAddin/stats.json -------------------------------------------------------------------------------- /samples/msal-browser-samples/TestingSample/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/TestingSample/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/TestingSample/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/TestingSample/Readme.md -------------------------------------------------------------------------------- /samples/msal-browser-samples/TestingSample/app/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/TestingSample/app/ui.js -------------------------------------------------------------------------------- /samples/msal-browser-samples/TestingSample/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-browser-samples/TestingSample/server.js -------------------------------------------------------------------------------- /samples/msal-browser-samples/VanillaJSTestApp2.0/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/VanillaJSTestApp2.0/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-browser-samples/vue3-sample-app/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /samples/msal-node-samples/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/AGC-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/AGC-README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronSystemBrowserTestApp/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronSystemBrowserTestApp/.gitignore: -------------------------------------------------------------------------------- 1 | /.webpack -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronSystemBrowserTestApp/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronTestApp/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronTestApp/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronTestApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/ElectronTestApp/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronTestApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/ElectronTestApp/index.html -------------------------------------------------------------------------------- /samples/msal-node-samples/ElectronTestApp/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/ElectronTestApp/src/App.ts -------------------------------------------------------------------------------- /samples/msal-node-samples/Managed-Identity/FIC/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/Managed-Identity/Imds/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-cli-app/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-cli-app/src/data/cache.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-cli-app/test/data/cache.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-cli-app/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-cli-brokered-app/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-distributed-cache/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-distributed-cache/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-distributed-cache/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-key-vault/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-pkce/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-pkce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code-pkce/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code-with-certs/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code/CHANGELOG.json -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/config/AAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code/config/AAD.json -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/config/ADFS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code/config/ADFS.json -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code/index.js -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code/jest.config.cjs -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/auth-code/package.json -------------------------------------------------------------------------------- /samples/msal-node-samples/auth-code/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-node-samples/b2c-user-flows/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/b2c-user-flows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/b2c-user-flows/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/b2c-user-flows/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/b2c-user-flows/fetch.js -------------------------------------------------------------------------------- /samples/msal-node-samples/b2c-user-flows/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/b2c-user-flows/index.js -------------------------------------------------------------------------------- /samples/msal-node-samples/b2c-user-flows/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-node-samples/cachePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/cachePlugin.js -------------------------------------------------------------------------------- /samples/msal-node-samples/cliArgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/cliArgs.js -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials-distributed-cache/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials-distributed-cache/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials-distributed-cache/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials-with-cert-from-key-vault/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials-with-cert-from-key-vault/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/client-credentials/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-node-samples/custom-INetworkModule-and-network-tracing/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/device-code/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/device-code/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/device-code/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/device-code/CHANGELOG.json -------------------------------------------------------------------------------- /samples/msal-node-samples/device-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/device-code/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/device-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/device-code/index.js -------------------------------------------------------------------------------- /samples/msal-node-samples/device-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/device-code/package.json -------------------------------------------------------------------------------- /samples/msal-node-samples/device-code/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of-distributed-cache/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of-distributed-cache/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | .env 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of-distributed-cache/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/on-behalf-of/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/on-behalf-of/package.json -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of/web-api/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/on-behalf-of/web-app/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/refresh-token/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/refresh-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/refresh-token/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/refresh-token/adalApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/refresh-token/adalApp.js -------------------------------------------------------------------------------- /samples/msal-node-samples/refresh-token/msalApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/refresh-token/msalApp.js -------------------------------------------------------------------------------- /samples/msal-node-samples/refresh-token/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/refresh-token/package.json -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/.beachballrc: -------------------------------------------------------------------------------- 1 | { 2 | "shouldPublish": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/silent-flow/CHANGELOG.json -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/silent-flow/README.md -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/silent-flow/index.js -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/silent-flow/package.json -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/resourceApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/silent-flow/resourceApi.js -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-node-samples/silent-flow/views/logout.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/msal-node-samples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/tsconfig.json -------------------------------------------------------------------------------- /samples/msal-node-samples/username-password-cca/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/username-password/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-node-samples/username-password/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-node-samples/username-password/index.js -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/b2c-sample/.env -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/b2c-sample/.gitignore -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/b2c-sample/README.md -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/b2c-sample/package.json -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/b2c-sample/src/App.js -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/b2c-sample/src/index.js -------------------------------------------------------------------------------- /samples/msal-react-samples/b2c-sample/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-react-samples/nextjs-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/nextjs-sample/.gitignore -------------------------------------------------------------------------------- /samples/msal-react-samples/nextjs-sample/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-react-samples/nextjs-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/nextjs-sample/README.md -------------------------------------------------------------------------------- /samples/msal-react-samples/nextjs-sample/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-react-samples/react-router-sample/.env: -------------------------------------------------------------------------------- 1 | DISABLE_ESLINT_PLUGIN=true -------------------------------------------------------------------------------- /samples/msal-react-samples/react-router-sample/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-react-samples/react-router-sample/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /samples/msal-react-samples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/tsconfig.json -------------------------------------------------------------------------------- /samples/msal-react-samples/typescript-sample/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-library-for-js/HEAD/samples/msal-react-samples/typescript-sample/.env -------------------------------------------------------------------------------- /samples/msal-react-samples/typescript-sample/.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /samples/msal-react-samples/typescript-sample/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /samples/msal-react-samples/typescript-sample/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | ///