@azure/msal-browser 3.8.1-beta.0 → 3.9.0
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.
- package/dist/app/IPublicClientApplication.mjs +1 -1
- package/dist/app/PublicClientApplication.mjs +1 -1
- package/dist/app/PublicClientNext.mjs +1 -1
- package/dist/broker/nativeBroker/NativeMessageHandler.mjs +1 -1
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/cache/BrowserCacheManager.mjs +1 -1
- package/dist/cache/BrowserStorage.mjs +1 -1
- package/dist/cache/CryptoKeyStore.mjs +1 -1
- package/dist/cache/DatabaseStorage.mjs +1 -1
- package/dist/cache/MemoryStorage.mjs +1 -1
- package/dist/cache/TokenCache.mjs +1 -1
- package/dist/config/Configuration.mjs +1 -1
- package/dist/controllers/ControllerFactory.mjs +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.mjs +1 -1
- package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
- package/dist/crypto/BrowserCrypto.mjs +1 -1
- package/dist/crypto/CryptoOps.mjs +1 -1
- package/dist/crypto/PkceGenerator.mjs +1 -1
- package/dist/crypto/SignedHttpRequest.mjs +1 -1
- package/dist/encode/Base64Decode.mjs +1 -1
- package/dist/encode/Base64Encode.mjs +1 -1
- package/dist/error/BrowserAuthError.mjs +1 -1
- package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
- package/dist/error/NativeAuthError.mjs +1 -1
- package/dist/error/NativeAuthErrorCodes.mjs +1 -1
- package/dist/error/NestedAppAuthError.mjs +1 -1
- package/dist/event/EventHandler.mjs +1 -1
- package/dist/event/EventMessage.mjs +1 -1
- package/dist/event/EventType.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
- package/dist/interaction_client/NativeInteractionClient.mjs +1 -1
- package/dist/interaction_client/PopupClient.mjs +1 -1
- package/dist/interaction_client/RedirectClient.mjs +1 -1
- package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/interaction_client/SilentIframeClient.mjs +1 -1
- package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
- package/dist/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/interaction_handler/RedirectHandler.mjs +1 -1
- package/dist/interaction_handler/SilentHandler.mjs +1 -1
- package/dist/naa/BridgeError.mjs +1 -1
- package/dist/naa/BridgeProxy.mjs +1 -1
- package/dist/naa/BridgeStatusCode.mjs +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
- package/dist/navigation/NavigationClient.mjs +1 -1
- package/dist/network/FetchClient.mjs +1 -1
- package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/operatingcontext/TeamsAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.d.ts.map +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
- package/dist/utils/BrowserConstants.mjs +1 -1
- package/dist/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/utils/BrowserUtils.mjs +1 -1
- package/lib/msal-browser.cjs +64 -64
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +64 -64
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +58 -58
- package/package.json +2 -2
- package/src/packageMetadata.ts +1 -1
package/lib/msal-browser.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v3.
|
|
1
|
+
/*! @azure/msal-browser v3.9.0 2024-02-07 */
|
|
2
2
|
'use strict';
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
|
|
7
7
|
})(this, (function (exports) { 'use strict';
|
|
8
8
|
|
|
9
|
-
/*! @azure/msal-common v14.
|
|
9
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
Pop: "pop",
|
|
302
302
|
};
|
|
303
303
|
|
|
304
|
-
/*! @azure/msal-common v14.
|
|
304
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
305
305
|
/*
|
|
306
306
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
307
307
|
* Licensed under the MIT License.
|
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
unexpectedError: unexpectedError
|
|
319
319
|
});
|
|
320
320
|
|
|
321
|
-
/*! @azure/msal-common v14.
|
|
321
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
322
322
|
|
|
323
323
|
/*
|
|
324
324
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -367,7 +367,7 @@
|
|
|
367
367
|
: AuthErrorMessages[code]);
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
-
/*! @azure/msal-common v14.
|
|
370
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
371
371
|
/*
|
|
372
372
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
373
373
|
* Licensed under the MIT License.
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
userTimeoutReached: userTimeoutReached
|
|
466
466
|
});
|
|
467
467
|
|
|
468
|
-
/*! @azure/msal-common v14.
|
|
468
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
469
469
|
|
|
470
470
|
/*
|
|
471
471
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -717,7 +717,7 @@
|
|
|
717
717
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
718
718
|
}
|
|
719
719
|
|
|
720
|
-
/*! @azure/msal-common v14.
|
|
720
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
721
721
|
|
|
722
722
|
/*
|
|
723
723
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -750,7 +750,7 @@
|
|
|
750
750
|
},
|
|
751
751
|
};
|
|
752
752
|
|
|
753
|
-
/*! @azure/msal-common v14.
|
|
753
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
754
754
|
|
|
755
755
|
/*
|
|
756
756
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -941,12 +941,12 @@
|
|
|
941
941
|
}
|
|
942
942
|
}
|
|
943
943
|
|
|
944
|
-
/*! @azure/msal-common v14.
|
|
944
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
945
945
|
/* eslint-disable header/header */
|
|
946
946
|
const name$1 = "@azure/msal-common";
|
|
947
|
-
const version$1 = "14.
|
|
947
|
+
const version$1 = "14.7.0";
|
|
948
948
|
|
|
949
|
-
/*! @azure/msal-common v14.
|
|
949
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
950
950
|
/*
|
|
951
951
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
952
952
|
* Licensed under the MIT License.
|
|
@@ -966,7 +966,7 @@
|
|
|
966
966
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
967
967
|
};
|
|
968
968
|
|
|
969
|
-
/*! @azure/msal-common v14.
|
|
969
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
970
970
|
|
|
971
971
|
/*
|
|
972
972
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1027,7 +1027,7 @@
|
|
|
1027
1027
|
}
|
|
1028
1028
|
}
|
|
1029
1029
|
|
|
1030
|
-
/*! @azure/msal-common v14.
|
|
1030
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1031
1031
|
/*
|
|
1032
1032
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1033
1033
|
* Licensed under the MIT License.
|
|
@@ -1064,7 +1064,7 @@
|
|
|
1064
1064
|
return cachedAtSec > nowSeconds();
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
1067
|
-
/*! @azure/msal-common v14.
|
|
1067
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1068
1068
|
|
|
1069
1069
|
/*
|
|
1070
1070
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1391,7 +1391,7 @@
|
|
|
1391
1391
|
return metadata.expiresAt <= nowSeconds();
|
|
1392
1392
|
}
|
|
1393
1393
|
|
|
1394
|
-
/*! @azure/msal-common v14.
|
|
1394
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1395
1395
|
/*
|
|
1396
1396
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1397
1397
|
* Licensed under the MIT License.
|
|
@@ -1445,7 +1445,7 @@
|
|
|
1445
1445
|
urlParseError: urlParseError
|
|
1446
1446
|
});
|
|
1447
1447
|
|
|
1448
|
-
/*! @azure/msal-common v14.
|
|
1448
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1449
1449
|
|
|
1450
1450
|
/*
|
|
1451
1451
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1583,7 +1583,7 @@
|
|
|
1583
1583
|
return new ClientConfigurationError(errorCode);
|
|
1584
1584
|
}
|
|
1585
1585
|
|
|
1586
|
-
/*! @azure/msal-common v14.
|
|
1586
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1587
1587
|
/*
|
|
1588
1588
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1589
1589
|
* Licensed under the MIT License.
|
|
@@ -1680,7 +1680,7 @@
|
|
|
1680
1680
|
}
|
|
1681
1681
|
}
|
|
1682
1682
|
|
|
1683
|
-
/*! @azure/msal-common v14.
|
|
1683
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1684
1684
|
|
|
1685
1685
|
/*
|
|
1686
1686
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1880,7 +1880,7 @@
|
|
|
1880
1880
|
}
|
|
1881
1881
|
}
|
|
1882
1882
|
|
|
1883
|
-
/*! @azure/msal-common v14.
|
|
1883
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1884
1884
|
|
|
1885
1885
|
/*
|
|
1886
1886
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1920,7 +1920,7 @@
|
|
|
1920
1920
|
};
|
|
1921
1921
|
}
|
|
1922
1922
|
|
|
1923
|
-
/*! @azure/msal-common v14.
|
|
1923
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1924
1924
|
/*
|
|
1925
1925
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1926
1926
|
* Licensed under the MIT License.
|
|
@@ -1981,7 +1981,7 @@
|
|
|
1981
1981
|
return updatedAccountInfo;
|
|
1982
1982
|
}
|
|
1983
1983
|
|
|
1984
|
-
/*! @azure/msal-common v14.
|
|
1984
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
1985
1985
|
/*
|
|
1986
1986
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1987
1987
|
* Licensed under the MIT License.
|
|
@@ -1996,7 +1996,7 @@
|
|
|
1996
1996
|
Ciam: 3,
|
|
1997
1997
|
};
|
|
1998
1998
|
|
|
1999
|
-
/*! @azure/msal-common v14.
|
|
1999
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
2000
2000
|
/*
|
|
2001
2001
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2002
2002
|
* Licensed under the MIT License.
|
|
@@ -2018,7 +2018,7 @@
|
|
|
2018
2018
|
return null;
|
|
2019
2019
|
}
|
|
2020
2020
|
|
|
2021
|
-
/*! @azure/msal-common v14.
|
|
2021
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
2022
2022
|
/*
|
|
2023
2023
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2024
2024
|
* Licensed under the MIT License.
|
|
@@ -2031,7 +2031,7 @@
|
|
|
2031
2031
|
OIDC: "OIDC",
|
|
2032
2032
|
};
|
|
2033
2033
|
|
|
2034
|
-
/*! @azure/msal-common v14.
|
|
2034
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
2035
2035
|
|
|
2036
2036
|
/*
|
|
2037
2037
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2278,7 +2278,7 @@
|
|
|
2278
2278
|
}
|
|
2279
2279
|
}
|
|
2280
2280
|
|
|
2281
|
-
/*! @azure/msal-common v14.
|
|
2281
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
2282
2282
|
|
|
2283
2283
|
/*
|
|
2284
2284
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2325,7 +2325,7 @@
|
|
|
2325
2325
|
return null;
|
|
2326
2326
|
}
|
|
2327
2327
|
|
|
2328
|
-
/*! @azure/msal-common v14.
|
|
2328
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
2329
2329
|
|
|
2330
2330
|
/*
|
|
2331
2331
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2489,7 +2489,7 @@
|
|
|
2489
2489
|
}
|
|
2490
2490
|
}
|
|
2491
2491
|
|
|
2492
|
-
/*! @azure/msal-common v14.
|
|
2492
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
2493
2493
|
|
|
2494
2494
|
/*
|
|
2495
2495
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2629,7 +2629,7 @@
|
|
|
2629
2629
|
return null;
|
|
2630
2630
|
}
|
|
2631
2631
|
|
|
2632
|
-
/*! @azure/msal-common v14.
|
|
2632
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
2633
2633
|
|
|
2634
2634
|
/*
|
|
2635
2635
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3869,7 +3869,7 @@
|
|
|
3869
3869
|
}
|
|
3870
3870
|
}
|
|
3871
3871
|
|
|
3872
|
-
/*! @azure/msal-common v14.
|
|
3872
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
3873
3873
|
|
|
3874
3874
|
/*
|
|
3875
3875
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3969,7 +3969,7 @@
|
|
|
3969
3969
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3970
3970
|
}
|
|
3971
3971
|
|
|
3972
|
-
/*! @azure/msal-common v14.
|
|
3972
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
3973
3973
|
|
|
3974
3974
|
/*
|
|
3975
3975
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3986,7 +3986,7 @@
|
|
|
3986
3986
|
}
|
|
3987
3987
|
}
|
|
3988
3988
|
|
|
3989
|
-
/*! @azure/msal-common v14.
|
|
3989
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
3990
3990
|
|
|
3991
3991
|
/*
|
|
3992
3992
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4084,7 +4084,7 @@
|
|
|
4084
4084
|
}
|
|
4085
4085
|
}
|
|
4086
4086
|
|
|
4087
|
-
/*! @azure/msal-common v14.
|
|
4087
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4088
4088
|
|
|
4089
4089
|
/*
|
|
4090
4090
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4121,7 +4121,7 @@
|
|
|
4121
4121
|
}
|
|
4122
4122
|
}
|
|
4123
4123
|
|
|
4124
|
-
/*! @azure/msal-common v14.
|
|
4124
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4125
4125
|
/*
|
|
4126
4126
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4127
4127
|
* Licensed under the MIT License.
|
|
@@ -4131,7 +4131,7 @@
|
|
|
4131
4131
|
UPN: "UPN",
|
|
4132
4132
|
};
|
|
4133
4133
|
|
|
4134
|
-
/*! @azure/msal-common v14.
|
|
4134
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4135
4135
|
/*
|
|
4136
4136
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4137
4137
|
* Licensed under the MIT License.
|
|
@@ -4178,7 +4178,7 @@
|
|
|
4178
4178
|
const LOGIN_HINT = "login_hint";
|
|
4179
4179
|
const DOMAIN_HINT = "domain_hint";
|
|
4180
4180
|
|
|
4181
|
-
/*! @azure/msal-common v14.
|
|
4181
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4182
4182
|
|
|
4183
4183
|
/*
|
|
4184
4184
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4262,7 +4262,7 @@
|
|
|
4262
4262
|
}
|
|
4263
4263
|
}
|
|
4264
4264
|
|
|
4265
|
-
/*! @azure/msal-common v14.
|
|
4265
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4266
4266
|
|
|
4267
4267
|
/*
|
|
4268
4268
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4646,7 +4646,7 @@
|
|
|
4646
4646
|
}
|
|
4647
4647
|
}
|
|
4648
4648
|
|
|
4649
|
-
/*! @azure/msal-common v14.
|
|
4649
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4650
4650
|
/*
|
|
4651
4651
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4652
4652
|
* Licensed under the MIT License.
|
|
@@ -4658,7 +4658,7 @@
|
|
|
4658
4658
|
response.hasOwnProperty("jwks_uri"));
|
|
4659
4659
|
}
|
|
4660
4660
|
|
|
4661
|
-
/*! @azure/msal-common v14.
|
|
4661
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4662
4662
|
/*
|
|
4663
4663
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4664
4664
|
* Licensed under the MIT License.
|
|
@@ -4668,7 +4668,7 @@
|
|
|
4668
4668
|
response.hasOwnProperty("metadata"));
|
|
4669
4669
|
}
|
|
4670
4670
|
|
|
4671
|
-
/*! @azure/msal-common v14.
|
|
4671
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4672
4672
|
/*
|
|
4673
4673
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4674
4674
|
* Licensed under the MIT License.
|
|
@@ -4678,7 +4678,7 @@
|
|
|
4678
4678
|
response.hasOwnProperty("error_description"));
|
|
4679
4679
|
}
|
|
4680
4680
|
|
|
4681
|
-
/*! @azure/msal-common v14.
|
|
4681
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4682
4682
|
/*
|
|
4683
4683
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4684
4684
|
* Licensed under the MIT License.
|
|
@@ -4939,7 +4939,7 @@
|
|
|
4939
4939
|
"multiMatchedRT",
|
|
4940
4940
|
]);
|
|
4941
4941
|
|
|
4942
|
-
/*! @azure/msal-common v14.
|
|
4942
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
4943
4943
|
/*
|
|
4944
4944
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4945
4945
|
* Licensed under the MIT License.
|
|
@@ -5035,7 +5035,7 @@
|
|
|
5035
5035
|
};
|
|
5036
5036
|
};
|
|
5037
5037
|
|
|
5038
|
-
/*! @azure/msal-common v14.
|
|
5038
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
5039
5039
|
|
|
5040
5040
|
/*
|
|
5041
5041
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5144,7 +5144,7 @@
|
|
|
5144
5144
|
},
|
|
5145
5145
|
};
|
|
5146
5146
|
|
|
5147
|
-
/*! @azure/msal-common v14.
|
|
5147
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
5148
5148
|
|
|
5149
5149
|
/*
|
|
5150
5150
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5977,7 +5977,7 @@
|
|
|
5977
5977
|
};
|
|
5978
5978
|
}
|
|
5979
5979
|
|
|
5980
|
-
/*! @azure/msal-common v14.
|
|
5980
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
5981
5981
|
|
|
5982
5982
|
/*
|
|
5983
5983
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6008,7 +6008,7 @@
|
|
|
6008
6008
|
}
|
|
6009
6009
|
}
|
|
6010
6010
|
|
|
6011
|
-
/*! @azure/msal-common v14.
|
|
6011
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6012
6012
|
|
|
6013
6013
|
/*
|
|
6014
6014
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6111,7 +6111,7 @@
|
|
|
6111
6111
|
}
|
|
6112
6112
|
}
|
|
6113
6113
|
|
|
6114
|
-
/*! @azure/msal-common v14.
|
|
6114
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6115
6115
|
/*
|
|
6116
6116
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6117
6117
|
* Licensed under the MIT License.
|
|
@@ -6137,7 +6137,7 @@
|
|
|
6137
6137
|
refreshTokenExpired: refreshTokenExpired
|
|
6138
6138
|
});
|
|
6139
6139
|
|
|
6140
|
-
/*! @azure/msal-common v14.
|
|
6140
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6141
6141
|
|
|
6142
6142
|
/*
|
|
6143
6143
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6224,7 +6224,7 @@
|
|
|
6224
6224
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
6225
6225
|
}
|
|
6226
6226
|
|
|
6227
|
-
/*! @azure/msal-common v14.
|
|
6227
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6228
6228
|
/*
|
|
6229
6229
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6230
6230
|
* Licensed under the MIT License.
|
|
@@ -6240,7 +6240,7 @@
|
|
|
6240
6240
|
}
|
|
6241
6241
|
}
|
|
6242
6242
|
|
|
6243
|
-
/*! @azure/msal-common v14.
|
|
6243
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6244
6244
|
|
|
6245
6245
|
/*
|
|
6246
6246
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6312,7 +6312,7 @@
|
|
|
6312
6312
|
}
|
|
6313
6313
|
}
|
|
6314
6314
|
|
|
6315
|
-
/*! @azure/msal-common v14.
|
|
6315
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6316
6316
|
|
|
6317
6317
|
/*
|
|
6318
6318
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6397,7 +6397,7 @@
|
|
|
6397
6397
|
}
|
|
6398
6398
|
}
|
|
6399
6399
|
|
|
6400
|
-
/*! @azure/msal-common v14.
|
|
6400
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6401
6401
|
/*
|
|
6402
6402
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6403
6403
|
* Licensed under the MIT License.
|
|
@@ -6424,7 +6424,7 @@
|
|
|
6424
6424
|
}
|
|
6425
6425
|
}
|
|
6426
6426
|
|
|
6427
|
-
/*! @azure/msal-common v14.
|
|
6427
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6428
6428
|
|
|
6429
6429
|
/*
|
|
6430
6430
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6777,7 +6777,7 @@
|
|
|
6777
6777
|
return baseAccount;
|
|
6778
6778
|
}
|
|
6779
6779
|
|
|
6780
|
-
/*! @azure/msal-common v14.
|
|
6780
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
6781
6781
|
|
|
6782
6782
|
/*
|
|
6783
6783
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7182,7 +7182,7 @@
|
|
|
7182
7182
|
}
|
|
7183
7183
|
}
|
|
7184
7184
|
|
|
7185
|
-
/*! @azure/msal-common v14.
|
|
7185
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7186
7186
|
|
|
7187
7187
|
/*
|
|
7188
7188
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7389,7 +7389,7 @@
|
|
|
7389
7389
|
}
|
|
7390
7390
|
}
|
|
7391
7391
|
|
|
7392
|
-
/*! @azure/msal-common v14.
|
|
7392
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7393
7393
|
|
|
7394
7394
|
/*
|
|
7395
7395
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7520,7 +7520,7 @@
|
|
|
7520
7520
|
}
|
|
7521
7521
|
}
|
|
7522
7522
|
|
|
7523
|
-
/*! @azure/msal-common v14.
|
|
7523
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7524
7524
|
|
|
7525
7525
|
/*
|
|
7526
7526
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7535,7 +7535,7 @@
|
|
|
7535
7535
|
},
|
|
7536
7536
|
};
|
|
7537
7537
|
|
|
7538
|
-
/*! @azure/msal-common v14.
|
|
7538
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7539
7539
|
/*
|
|
7540
7540
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7541
7541
|
* Licensed under the MIT License.
|
|
@@ -7543,7 +7543,7 @@
|
|
|
7543
7543
|
const missingKidError = "missing_kid_error";
|
|
7544
7544
|
const missingAlgError = "missing_alg_error";
|
|
7545
7545
|
|
|
7546
|
-
/*! @azure/msal-common v14.
|
|
7546
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7547
7547
|
|
|
7548
7548
|
/*
|
|
7549
7549
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7568,7 +7568,7 @@
|
|
|
7568
7568
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
7569
7569
|
}
|
|
7570
7570
|
|
|
7571
|
-
/*! @azure/msal-common v14.
|
|
7571
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7572
7572
|
|
|
7573
7573
|
/*
|
|
7574
7574
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7608,7 +7608,7 @@
|
|
|
7608
7608
|
}
|
|
7609
7609
|
}
|
|
7610
7610
|
|
|
7611
|
-
/*! @azure/msal-common v14.
|
|
7611
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7612
7612
|
|
|
7613
7613
|
/*
|
|
7614
7614
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7666,7 +7666,7 @@
|
|
|
7666
7666
|
}
|
|
7667
7667
|
}
|
|
7668
7668
|
|
|
7669
|
-
/*! @azure/msal-common v14.
|
|
7669
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7670
7670
|
|
|
7671
7671
|
/*
|
|
7672
7672
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7870,7 +7870,7 @@
|
|
|
7870
7870
|
}
|
|
7871
7871
|
}
|
|
7872
7872
|
|
|
7873
|
-
/*! @azure/msal-common v14.
|
|
7873
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7874
7874
|
|
|
7875
7875
|
/*
|
|
7876
7876
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7949,7 +7949,7 @@
|
|
|
7949
7949
|
}
|
|
7950
7950
|
}
|
|
7951
7951
|
|
|
7952
|
-
/*! @azure/msal-common v14.
|
|
7952
|
+
/*! @azure/msal-common v14.7.0 2024-02-07 */
|
|
7953
7953
|
|
|
7954
7954
|
/*
|
|
7955
7955
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -9349,7 +9349,7 @@
|
|
|
9349
9349
|
|
|
9350
9350
|
/* eslint-disable header/header */
|
|
9351
9351
|
const name = "@azure/msal-browser";
|
|
9352
|
-
const version = "3.
|
|
9352
|
+
const version = "3.9.0";
|
|
9353
9353
|
|
|
9354
9354
|
/*
|
|
9355
9355
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|