@azure/msal-browser 3.22.0 → 3.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/app/PublicClientNext.mjs +1 -1
  4. package/dist/broker/nativeBroker/NativeMessageHandler.mjs +1 -1
  5. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  6. package/dist/cache/AccountManager.mjs +1 -1
  7. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  8. package/dist/cache/BrowserCacheManager.mjs +1 -1
  9. package/dist/cache/BrowserStorage.mjs +1 -1
  10. package/dist/cache/DatabaseStorage.mjs +1 -1
  11. package/dist/cache/MemoryStorage.mjs +1 -1
  12. package/dist/cache/TokenCache.mjs +1 -1
  13. package/dist/config/Configuration.mjs +1 -1
  14. package/dist/controllers/ControllerFactory.mjs +1 -1
  15. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  16. package/dist/controllers/StandardController.mjs +1 -1
  17. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  18. package/dist/crypto/BrowserCrypto.mjs +1 -1
  19. package/dist/crypto/CryptoOps.mjs +1 -1
  20. package/dist/crypto/PkceGenerator.mjs +1 -1
  21. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  22. package/dist/encode/Base64Decode.mjs +1 -1
  23. package/dist/encode/Base64Encode.mjs +1 -1
  24. package/dist/error/BrowserAuthError.mjs +1 -1
  25. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  26. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  27. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  28. package/dist/error/NativeAuthError.mjs +1 -1
  29. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  30. package/dist/error/NestedAppAuthError.mjs +1 -1
  31. package/dist/event/EventHandler.mjs +1 -1
  32. package/dist/event/EventMessage.mjs +1 -1
  33. package/dist/event/EventType.mjs +1 -1
  34. package/dist/index.mjs +1 -1
  35. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  36. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  37. package/dist/interaction_client/NativeInteractionClient.mjs +1 -1
  38. package/dist/interaction_client/PopupClient.mjs +1 -1
  39. package/dist/interaction_client/RedirectClient.mjs +1 -1
  40. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  41. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  42. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  43. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  44. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  45. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  46. package/dist/interaction_handler/RedirectHandler.mjs +1 -1
  47. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  48. package/dist/naa/BridgeError.mjs +1 -1
  49. package/dist/naa/BridgeProxy.mjs +1 -1
  50. package/dist/naa/BridgeStatusCode.mjs +1 -1
  51. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  52. package/dist/navigation/NavigationClient.mjs +1 -1
  53. package/dist/network/FetchClient.mjs +1 -1
  54. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  55. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  56. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  57. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  58. package/dist/packageMetadata.d.ts +1 -1
  59. package/dist/packageMetadata.mjs +2 -2
  60. package/dist/request/RequestHelpers.mjs +1 -1
  61. package/dist/response/ResponseHandler.mjs +1 -1
  62. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  63. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  64. package/dist/utils/BrowserConstants.mjs +1 -1
  65. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  66. package/dist/utils/BrowserUtils.mjs +1 -1
  67. package/lib/msal-browser.cjs +65 -65
  68. package/lib/msal-browser.cjs.map +1 -1
  69. package/lib/msal-browser.js +65 -65
  70. package/lib/msal-browser.js.map +1 -1
  71. package/lib/msal-browser.min.js +59 -59
  72. package/package.json +1 -1
  73. package/src/packageMetadata.ts +1 -1
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createBrowserConfigurationAuthError } from '../error/BrowserConfigurationAuthError.mjs';
4
4
  import { stubbedPublicClientApplicationCalled } from '../error/BrowserConfigurationAuthErrorCodes.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createV3Controller } from '../controllers/ControllerFactory.mjs';
4
4
  import { StandardController } from '../controllers/StandardController.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createController } from '../controllers/ControllerFactory.mjs';
4
4
  import { UnknownOperatingContextController } from '../controllers/UnknownOperatingContextController.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { NativeConstants, NativeExtensionMethod } from '../../utils/BrowserConstants.mjs';
4
4
  import { PerformanceEvents, createAuthError, AuthErrorCodes, AuthenticationScheme } from '@azure/msal-common';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { BrowserAuthError } from '../error/BrowserAuthError.mjs';
4
4
  import { DatabaseStorage } from './DatabaseStorage.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { CacheManager, CredentialType, CacheHelpers, AccountEntity, createClientAuthError, ClientAuthErrorCodes, Constants, PersistentCacheKeys, PerformanceEvents, StringUtils, ProtocolUtils, AuthToken, CacheError, DEFAULT_CRYPTO_IMPLEMENTATION, CcsCredentialType } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createBrowserConfigurationAuthError } from '../error/BrowserConfigurationAuthError.mjs';
4
4
  import { BrowserCacheLocation } from '../utils/BrowserConstants.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
4
4
  import { DB_NAME, DB_VERSION, DB_TABLE_NAME } from '../utils/BrowserConstants.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { AuthToken, Authority, AccountEntity, buildAccountToCache, CacheHelpers, ScopeSet } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { Constants, StubPerformanceClient, ProtocolMode, Logger, createClientConfigurationError, ClientConfigurationErrorCodes, ServerResponseType, AzureCloudInstance, LogLevel, DEFAULT_SYSTEM_OPTIONS, StubbedNetworkModule } from '@azure/msal-common';
4
4
  import { BrowserCacheLocation, BrowserConstants } from '../utils/BrowserConstants.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { NestedAppOperatingContext } from '../operatingcontext/NestedAppOperatingContext.mjs';
4
4
  import { StandardOperatingContext } from '../operatingcontext/StandardOperatingContext.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { DEFAULT_CRYPTO_IMPLEMENTATION, buildStaticAuthorityOptions, PerformanceEvents, TimeUtils, OIDC_DEFAULT_SCOPES, AccountEntity } from '@azure/msal-common';
4
4
  import { InteractionType, DEFAULT_REQUEST } from '../utils/BrowserConstants.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { CryptoOps } from '../crypto/CryptoOps.mjs';
4
4
  import { DEFAULT_CRYPTO_IMPLEMENTATION, buildStaticAuthorityOptions, PerformanceEvents, invokeAsync, InteractionRequiredAuthError, createClientAuthError, ClientAuthErrorCodes, AccountEntity, PromptValue, Constants, InteractionRequiredAuthErrorCodes } from '@azure/msal-common';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { DEFAULT_CRYPTO_IMPLEMENTATION } from '@azure/msal-common';
4
4
  import { BrowserCacheManager, DEFAULT_BROWSER_CACHE_MANAGER } from '../cache/BrowserCacheManager.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
4
4
  import { PerformanceEvents } from '@azure/msal-common';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceEvents, JoseHeader } from '@azure/msal-common';
4
4
  import { base64Encode, urlEncode, urlEncodeArr } from '../encode/Base64Encode.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceEvents, invoke, invokeAsync } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { CryptoOps } from './CryptoOps.mjs';
4
4
  import { Logger, PopTokenGenerator } from '@azure/msal-common';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
4
4
  import { invalidBase64String } from '../error/BrowserAuthErrorCodes.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { AuthError } from '@azure/msal-common';
4
4
  import { pkceNotCreated, cryptoNonExistent, emptyNavigateUri, hashEmptyError, noStateInHash, hashDoesNotContainKnownProperties, unableToParseState, stateInteractionTypeMismatch, interactionInProgress, popupWindowError, emptyWindowError, userCancelled, monitorPopupTimeout, monitorWindowTimeout, redirectInIframe, blockIframeReload, blockNestedPopups, iframeClosedPrematurely, silentLogoutUnsupported, noAccountError, silentPromptValueError, noTokenRequestCacheError, unableToParseTokenRequestCacheError, noCachedAuthorityError, authRequestNotSetError, invalidCacheType, nonBrowserEnvironment, databaseNotOpen, noNetworkConnectivity, postRequestFailed, getRequestFailed, failedToParseResponse, unableToLoadToken, cryptoKeyNotFound, authCodeRequired, authCodeOrNativeAccountIdRequired, spaCodeAndNativeAccountIdPresent, databaseUnavailable, unableToAcquireTokenFromNativePlatform, nativeHandshakeTimeout, nativeExtensionNotInstalled, nativeConnectionNotEstablished, uninitializedPublicClientApplication, nativePromptNotSupported, invalidBase64String, invalidPopTokenRequest } from './BrowserAuthErrorCodes.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { AuthError } from '@azure/msal-common';
4
4
  import { storageNotSupported, stubbedPublicClientApplicationCalled, inMemRedirectUnavailable } from './BrowserConfigurationAuthErrorCodes.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { AuthError, InteractionRequiredAuthError, createInteractionRequiredAuthError, InteractionRequiredAuthErrorCodes } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from './BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { AuthError } from '@azure/msal-common';
4
4
 
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PersistentCacheKeys, AccountEntity, CacheManager } from '@azure/msal-common';
4
4
  import { EventType } from './EventType.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { EventType } from './EventType.mjs';
4
4
  import { InteractionType, InteractionStatus } from '../utils/BrowserConstants.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import * as BrowserUtils from './utils/BrowserUtils.mjs';
4
4
  export { BrowserUtils };
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { AccountEntity, UrlString, ServerTelemetryManager, PerformanceEvents, Authority, invokeAsync, AuthorityFactory, createClientConfigurationError, ClientConfigurationErrorCodes } from '@azure/msal-common';
4
4
  import { version } from '../packageMetadata.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { AuthorizationCodeClient } from '@azure/msal-common';
4
4
 
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { ServerTelemetryManager, AADServerParamKeys, PerformanceEvents, TimeUtils, ScopeSet, createClientAuthError, ClientAuthErrorCodes, AuthToken, buildAccountToCache, AccountEntity, Constants, AuthorityType, AuthenticationScheme, PopTokenGenerator, updateAccountTenantProfileData, CacheHelpers, createAuthError, AuthErrorCodes, UrlString, OIDC_DEFAULT_SCOPES, invokeAsync, PromptValue } from '@azure/msal-common';
4
4
  import { BaseInteractionClient } from './BaseInteractionClient.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { OIDC_DEFAULT_SCOPES, invokeAsync, PerformanceEvents, invoke, ThrottlingUtils, ProtocolUtils, AuthError, ProtocolMode, UrlString, ServerResponseType } from '@azure/msal-common';
4
4
  import { StandardInteractionClient } from './StandardInteractionClient.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { invokeAsync, PerformanceEvents, AuthError, Constants, UrlString, UrlUtils, ProtocolUtils, ThrottlingUtils, ProtocolMode, ServerResponseType } from '@azure/msal-common';
4
4
  import { StandardInteractionClient } from './StandardInteractionClient.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { invokeAsync, PerformanceEvents, AuthError } from '@azure/msal-common';
4
4
  import { StandardInteractionClient } from './StandardInteractionClient.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { StandardInteractionClient } from './StandardInteractionClient.mjs';
4
4
  import { PerformanceEvents, invokeAsync, SilentFlowClient } from '@azure/msal-common';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceEvents, PromptValue, invokeAsync, AuthError, invoke, ProtocolUtils } from '@azure/msal-common';
4
4
  import { StandardInteractionClient } from './StandardInteractionClient.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { StandardInteractionClient } from './StandardInteractionClient.mjs';
4
4
  import { PerformanceEvents, invokeAsync, RefreshTokenClient } from '@azure/msal-common';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceEvents, invokeAsync, Constants, UrlString, AuthorizationCodeClient, ProtocolUtils } from '@azure/msal-common';
4
4
  import { BaseInteractionClient } from './BaseInteractionClient.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceEvents, ServerError, invokeAsync, CcsCredentialType } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { createClientAuthError, ClientAuthErrorCodes, ServerError, invokeAsync, PerformanceEvents } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceEvents, invokeAsync, invoke, ServerResponseType } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { BridgeStatusCode } from './BridgeStatusCode.mjs';
4
4
  import { createNewGuid } from '../crypto/BrowserCrypto.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { RequestParameterBuilder, StringUtils, AuthenticationScheme, createClientAuthError, ClientAuthErrorCodes, AuthToken, buildTenantProfile, AuthError, InteractionRequiredAuthError, ServerError, ClientAuthError, OIDC_DEFAULT_SCOPES } from '@azure/msal-common';
4
4
  import { isBridgeError } from '../BridgeError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { Constants } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { LogLevel, Logger } from '@azure/msal-common';
4
4
  import { buildConfiguration } from '../config/Configuration.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { BaseOperatingContext } from './BaseOperatingContext.mjs';
4
4
  import { BridgeProxy } from '../naa/BridgeProxy.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { BaseOperatingContext } from './BaseOperatingContext.mjs';
4
4
 
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { BaseOperatingContext } from './BaseOperatingContext.mjs';
4
4
 
@@ -1,3 +1,3 @@
1
1
  export declare const name = "@azure/msal-browser";
2
- export declare const version = "3.22.0";
2
+ export declare const version = "3.22.1";
3
3
  //# sourceMappingURL=packageMetadata.d.ts.map
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /* eslint-disable header/header */
4
4
  const name = "@azure/msal-browser";
5
- const version = "3.22.0";
5
+ const version = "3.22.1";
6
6
 
7
7
  export { name, version };
8
8
  //# sourceMappingURL=packageMetadata.mjs.map
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceEvents, invokeAsync, AuthenticationScheme, createClientConfigurationError, ClientConfigurationErrorCodes, StringUtils } from '@azure/msal-common';
4
4
  import { hashString } from '../crypto/BrowserCrypto.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { UrlUtils } from '@azure/msal-common';
4
4
  import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { PerformanceClient, Constants, Logger } from '@azure/msal-common';
4
4
  import { name, version } from '../packageMetadata.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { OIDC_DEFAULT_SCOPES } from '@azure/msal-common';
4
4
 
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { ProtocolUtils, createClientAuthError, ClientAuthErrorCodes } from '@azure/msal-common';
4
4
 
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.22.0 2024-08-28 */
1
+ /*! @azure/msal-browser v3.22.1 2024-09-03 */
2
2
  'use strict';
3
3
  import { UrlString } from '@azure/msal-common';
4
4
  export { invoke, invokeAsync } from '@azure/msal-common';