@azure/msal-browser 3.7.2-alpha.2 → 3.7.2-alpha.3
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.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.7.2-alpha.
|
|
1
|
+
/*! @azure/msal-browser v3.7.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
9
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
304
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
321
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
370
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
468
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
720
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
753
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
944
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
945
945
|
/* eslint-disable header/header */
|
|
946
946
|
const name$1 = "@azure/msal-common";
|
|
947
|
-
const version$1 = "14.6.2-alpha.
|
|
947
|
+
const version$1 = "14.6.2-alpha.3";
|
|
948
948
|
|
|
949
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
949
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
969
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1030
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1067
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1394
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1448
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1586
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1683
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1883
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1923
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1984
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
1999
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
2021
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
2034
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
2281
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
2328
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
2492
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
2632
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
3872
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
3972
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
3989
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4087
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4124
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4134
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4181
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4265
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4649
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4661
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4671
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
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.6.2-alpha.
|
|
4681
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
4682
4682
|
/*
|
|
4683
4683
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4684
4684
|
* Licensed under the MIT License.
|
|
@@ -4933,7 +4933,7 @@
|
|
|
4933
4933
|
"multiMatchedRT",
|
|
4934
4934
|
]);
|
|
4935
4935
|
|
|
4936
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
4936
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
4937
4937
|
/*
|
|
4938
4938
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4939
4939
|
* Licensed under the MIT License.
|
|
@@ -5029,7 +5029,7 @@
|
|
|
5029
5029
|
};
|
|
5030
5030
|
};
|
|
5031
5031
|
|
|
5032
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
5032
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
5033
5033
|
|
|
5034
5034
|
/*
|
|
5035
5035
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5138,7 +5138,7 @@
|
|
|
5138
5138
|
},
|
|
5139
5139
|
};
|
|
5140
5140
|
|
|
5141
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
5141
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
5142
5142
|
|
|
5143
5143
|
/*
|
|
5144
5144
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5971,7 +5971,7 @@
|
|
|
5971
5971
|
};
|
|
5972
5972
|
}
|
|
5973
5973
|
|
|
5974
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
5974
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
5975
5975
|
|
|
5976
5976
|
/*
|
|
5977
5977
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6002,7 +6002,7 @@
|
|
|
6002
6002
|
}
|
|
6003
6003
|
}
|
|
6004
6004
|
|
|
6005
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6005
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6006
6006
|
|
|
6007
6007
|
/*
|
|
6008
6008
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6105,7 +6105,7 @@
|
|
|
6105
6105
|
}
|
|
6106
6106
|
}
|
|
6107
6107
|
|
|
6108
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6108
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6109
6109
|
/*
|
|
6110
6110
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6111
6111
|
* Licensed under the MIT License.
|
|
@@ -6131,7 +6131,7 @@
|
|
|
6131
6131
|
refreshTokenExpired: refreshTokenExpired
|
|
6132
6132
|
});
|
|
6133
6133
|
|
|
6134
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6134
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6135
6135
|
|
|
6136
6136
|
/*
|
|
6137
6137
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6218,7 +6218,7 @@
|
|
|
6218
6218
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
6219
6219
|
}
|
|
6220
6220
|
|
|
6221
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6221
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6222
6222
|
/*
|
|
6223
6223
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6224
6224
|
* Licensed under the MIT License.
|
|
@@ -6234,7 +6234,7 @@
|
|
|
6234
6234
|
}
|
|
6235
6235
|
}
|
|
6236
6236
|
|
|
6237
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6237
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6238
6238
|
|
|
6239
6239
|
/*
|
|
6240
6240
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6306,7 +6306,7 @@
|
|
|
6306
6306
|
}
|
|
6307
6307
|
}
|
|
6308
6308
|
|
|
6309
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6309
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6310
6310
|
|
|
6311
6311
|
/*
|
|
6312
6312
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6391,7 +6391,7 @@
|
|
|
6391
6391
|
}
|
|
6392
6392
|
}
|
|
6393
6393
|
|
|
6394
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6394
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6395
6395
|
/*
|
|
6396
6396
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6397
6397
|
* Licensed under the MIT License.
|
|
@@ -6418,7 +6418,7 @@
|
|
|
6418
6418
|
}
|
|
6419
6419
|
}
|
|
6420
6420
|
|
|
6421
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6421
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6422
6422
|
|
|
6423
6423
|
/*
|
|
6424
6424
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6771,7 +6771,7 @@
|
|
|
6771
6771
|
return baseAccount;
|
|
6772
6772
|
}
|
|
6773
6773
|
|
|
6774
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
6774
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
6775
6775
|
|
|
6776
6776
|
/*
|
|
6777
6777
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7176,7 +7176,7 @@
|
|
|
7176
7176
|
}
|
|
7177
7177
|
}
|
|
7178
7178
|
|
|
7179
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7179
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7180
7180
|
|
|
7181
7181
|
/*
|
|
7182
7182
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7383,7 +7383,7 @@
|
|
|
7383
7383
|
}
|
|
7384
7384
|
}
|
|
7385
7385
|
|
|
7386
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7386
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7387
7387
|
|
|
7388
7388
|
/*
|
|
7389
7389
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7514,7 +7514,7 @@
|
|
|
7514
7514
|
}
|
|
7515
7515
|
}
|
|
7516
7516
|
|
|
7517
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7517
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7518
7518
|
|
|
7519
7519
|
/*
|
|
7520
7520
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7529,7 +7529,7 @@
|
|
|
7529
7529
|
},
|
|
7530
7530
|
};
|
|
7531
7531
|
|
|
7532
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7532
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7533
7533
|
/*
|
|
7534
7534
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7535
7535
|
* Licensed under the MIT License.
|
|
@@ -7537,7 +7537,7 @@
|
|
|
7537
7537
|
const missingKidError = "missing_kid_error";
|
|
7538
7538
|
const missingAlgError = "missing_alg_error";
|
|
7539
7539
|
|
|
7540
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7540
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7541
7541
|
|
|
7542
7542
|
/*
|
|
7543
7543
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7562,7 +7562,7 @@
|
|
|
7562
7562
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
7563
7563
|
}
|
|
7564
7564
|
|
|
7565
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7565
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7566
7566
|
|
|
7567
7567
|
/*
|
|
7568
7568
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7602,7 +7602,7 @@
|
|
|
7602
7602
|
}
|
|
7603
7603
|
}
|
|
7604
7604
|
|
|
7605
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7605
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7606
7606
|
|
|
7607
7607
|
/*
|
|
7608
7608
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7660,7 +7660,7 @@
|
|
|
7660
7660
|
}
|
|
7661
7661
|
}
|
|
7662
7662
|
|
|
7663
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7663
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7664
7664
|
|
|
7665
7665
|
/*
|
|
7666
7666
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7864,7 +7864,7 @@
|
|
|
7864
7864
|
}
|
|
7865
7865
|
}
|
|
7866
7866
|
|
|
7867
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7867
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7868
7868
|
|
|
7869
7869
|
/*
|
|
7870
7870
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7943,7 +7943,7 @@
|
|
|
7943
7943
|
}
|
|
7944
7944
|
}
|
|
7945
7945
|
|
|
7946
|
-
/*! @azure/msal-common v14.6.2-alpha.
|
|
7946
|
+
/*! @azure/msal-common v14.6.2-alpha.3 2024-02-02 */
|
|
7947
7947
|
|
|
7948
7948
|
/*
|
|
7949
7949
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -9343,7 +9343,7 @@
|
|
|
9343
9343
|
|
|
9344
9344
|
/* eslint-disable header/header */
|
|
9345
9345
|
const name = "@azure/msal-browser";
|
|
9346
|
-
const version = "3.7.2-alpha.
|
|
9346
|
+
const version = "3.7.2-alpha.3";
|
|
9347
9347
|
|
|
9348
9348
|
/*
|
|
9349
9349
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|