UNPKG

@azure/msal-browser

Version:
48 lines (46 loc) 1.85 kB
/*! @azure/msal-browser v5.6.3 2026-04-01 */ 'use strict'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * acquireTokenSilent API (msal-browser and msal-node). * Used to silently acquire a new access token (from the cache or the network). */ const AcquireTokenSilent = "acquireTokenSilent"; /** * acquireTokenByCode API (msal-browser and msal-node). * Used to acquire tokens by trading an authorization code against the token endpoint. */ const AcquireTokenByCode = "acquireTokenByCode"; /** * acquireTokenPopup (msal-browser). * Used to acquire a new access token interactively through pop ups */ const AcquireTokenPopup = "acquireTokenPopup"; /** * acquireTokenPreRedirect (msal-browser). * First part of the redirect flow. * Used to acquire a new access token interactively through redirects. */ const AcquireTokenPreRedirect = "acquireTokenPreRedirect"; /** * acquireTokenRedirect (msal-browser). * Second part of the redirect flow. * Used to acquire a new access token interactively through redirects. */ const AcquireTokenRedirect = "acquireTokenRedirect"; /** * ssoSilent API (msal-browser). * Used to silently acquire an authorization code and set of tokens using a hidden iframe. */ const SsoSilent = "ssoSilent"; // Initialize client application const InitializeClientApplication = "initializeClientApplication"; // Update cache storage const LocalStorageUpdated = "localStorageUpdated"; // Load external tokens const LoadExternalTokens = "loadExternalTokens"; export { AcquireTokenByCode, AcquireTokenPopup, AcquireTokenPreRedirect, AcquireTokenRedirect, AcquireTokenSilent, InitializeClientApplication, LoadExternalTokens, LocalStorageUpdated, SsoSilent }; //# sourceMappingURL=BrowserRootPerformanceEvents.mjs.map