@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.
- 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/AccountManager.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/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/NestedAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.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/request/RequestHelpers.mjs +1 -1
- 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 +65 -65
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +65 -65
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +59 -59
- package/package.json +1 -1
- package/src/packageMetadata.ts +1 -1
package/lib/msal-browser.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v3.22.
|
|
1
|
+
/*! @azure/msal-browser v3.22.1 2024-09-03 */
|
|
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.14.2 2024-
|
|
9
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
// Token renewal offset default in seconds
|
|
316
316
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
317
317
|
|
|
318
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
318
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
319
319
|
/*
|
|
320
320
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
321
321
|
* Licensed under the MIT License.
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
unexpectedError: unexpectedError
|
|
333
333
|
});
|
|
334
334
|
|
|
335
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
335
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
336
336
|
|
|
337
337
|
/*
|
|
338
338
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
: AuthErrorMessages[code]);
|
|
382
382
|
}
|
|
383
383
|
|
|
384
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
384
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
385
385
|
/*
|
|
386
386
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
387
387
|
* Licensed under the MIT License.
|
|
@@ -479,7 +479,7 @@
|
|
|
479
479
|
userTimeoutReached: userTimeoutReached
|
|
480
480
|
});
|
|
481
481
|
|
|
482
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
482
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
483
483
|
|
|
484
484
|
/*
|
|
485
485
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -731,7 +731,7 @@
|
|
|
731
731
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
732
732
|
}
|
|
733
733
|
|
|
734
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
734
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
735
735
|
|
|
736
736
|
/*
|
|
737
737
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -792,7 +792,7 @@
|
|
|
792
792
|
}
|
|
793
793
|
}
|
|
794
794
|
|
|
795
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
795
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
796
796
|
/*
|
|
797
797
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
798
798
|
* Licensed under the MIT License.
|
|
@@ -807,7 +807,7 @@
|
|
|
807
807
|
Ciam: 3,
|
|
808
808
|
};
|
|
809
809
|
|
|
810
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
810
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
811
811
|
/*
|
|
812
812
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
813
813
|
* Licensed under the MIT License.
|
|
@@ -819,7 +819,7 @@
|
|
|
819
819
|
response.hasOwnProperty("jwks_uri"));
|
|
820
820
|
}
|
|
821
821
|
|
|
822
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
822
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
823
823
|
/*
|
|
824
824
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
825
825
|
* Licensed under the MIT License.
|
|
@@ -873,7 +873,7 @@
|
|
|
873
873
|
urlParseError: urlParseError
|
|
874
874
|
});
|
|
875
875
|
|
|
876
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
876
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
877
877
|
|
|
878
878
|
/*
|
|
879
879
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1011,7 +1011,7 @@
|
|
|
1011
1011
|
return new ClientConfigurationError(errorCode);
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1014
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1015
1015
|
/*
|
|
1016
1016
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1017
1017
|
* Licensed under the MIT License.
|
|
@@ -1108,7 +1108,7 @@
|
|
|
1108
1108
|
}
|
|
1109
1109
|
}
|
|
1110
1110
|
|
|
1111
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1111
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1112
1112
|
|
|
1113
1113
|
/*
|
|
1114
1114
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1155,7 +1155,7 @@
|
|
|
1155
1155
|
return null;
|
|
1156
1156
|
}
|
|
1157
1157
|
|
|
1158
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1158
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1159
1159
|
|
|
1160
1160
|
/*
|
|
1161
1161
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1319,7 +1319,7 @@
|
|
|
1319
1319
|
}
|
|
1320
1320
|
}
|
|
1321
1321
|
|
|
1322
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1322
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1323
1323
|
|
|
1324
1324
|
/*
|
|
1325
1325
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1459,7 +1459,7 @@
|
|
|
1459
1459
|
return null;
|
|
1460
1460
|
}
|
|
1461
1461
|
|
|
1462
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1462
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1463
1463
|
/*
|
|
1464
1464
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1465
1465
|
* Licensed under the MIT License.
|
|
@@ -1472,7 +1472,7 @@
|
|
|
1472
1472
|
OIDC: "OIDC",
|
|
1473
1473
|
};
|
|
1474
1474
|
|
|
1475
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1475
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1476
1476
|
/*
|
|
1477
1477
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1478
1478
|
* Licensed under the MIT License.
|
|
@@ -1492,7 +1492,7 @@
|
|
|
1492
1492
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1493
1493
|
};
|
|
1494
1494
|
|
|
1495
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1495
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1496
1496
|
/*
|
|
1497
1497
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1498
1498
|
* Licensed under the MIT License.
|
|
@@ -1502,7 +1502,7 @@
|
|
|
1502
1502
|
response.hasOwnProperty("metadata"));
|
|
1503
1503
|
}
|
|
1504
1504
|
|
|
1505
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1505
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1506
1506
|
/*
|
|
1507
1507
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1508
1508
|
* Licensed under the MIT License.
|
|
@@ -1512,7 +1512,7 @@
|
|
|
1512
1512
|
response.hasOwnProperty("error_description"));
|
|
1513
1513
|
}
|
|
1514
1514
|
|
|
1515
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1515
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1516
1516
|
/*
|
|
1517
1517
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1518
1518
|
* Licensed under the MIT License.
|
|
@@ -1994,7 +1994,7 @@
|
|
|
1994
1994
|
"multiMatchedRT",
|
|
1995
1995
|
]);
|
|
1996
1996
|
|
|
1997
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
1997
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
1998
1998
|
/*
|
|
1999
1999
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2000
2000
|
* Licensed under the MIT License.
|
|
@@ -2090,7 +2090,7 @@
|
|
|
2090
2090
|
};
|
|
2091
2091
|
};
|
|
2092
2092
|
|
|
2093
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
2093
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
2094
2094
|
|
|
2095
2095
|
/*
|
|
2096
2096
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2199,7 +2199,7 @@
|
|
|
2199
2199
|
},
|
|
2200
2200
|
};
|
|
2201
2201
|
|
|
2202
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
2202
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
2203
2203
|
/*
|
|
2204
2204
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2205
2205
|
* Licensed under the MIT License.
|
|
@@ -2236,7 +2236,7 @@
|
|
|
2236
2236
|
return cachedAtSec > nowSeconds();
|
|
2237
2237
|
}
|
|
2238
2238
|
|
|
2239
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
2239
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
2240
2240
|
|
|
2241
2241
|
/*
|
|
2242
2242
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2563,7 +2563,7 @@
|
|
|
2563
2563
|
return metadata.expiresAt <= nowSeconds();
|
|
2564
2564
|
}
|
|
2565
2565
|
|
|
2566
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
2566
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
2567
2567
|
|
|
2568
2568
|
/*
|
|
2569
2569
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3402,7 +3402,7 @@
|
|
|
3402
3402
|
};
|
|
3403
3403
|
}
|
|
3404
3404
|
|
|
3405
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3405
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3406
3406
|
|
|
3407
3407
|
/*
|
|
3408
3408
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3433,7 +3433,7 @@
|
|
|
3433
3433
|
}
|
|
3434
3434
|
}
|
|
3435
3435
|
|
|
3436
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3436
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3437
3437
|
/*
|
|
3438
3438
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3439
3439
|
* Licensed under the MIT License.
|
|
@@ -3451,7 +3451,7 @@
|
|
|
3451
3451
|
}
|
|
3452
3452
|
}
|
|
3453
3453
|
|
|
3454
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3454
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3455
3455
|
/*
|
|
3456
3456
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3457
3457
|
* Licensed under the MIT License.
|
|
@@ -3499,7 +3499,7 @@
|
|
|
3499
3499
|
const DOMAIN_HINT = "domain_hint";
|
|
3500
3500
|
const X_CLIENT_EXTRA_SKU = "x-client-xtra-sku";
|
|
3501
3501
|
|
|
3502
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3502
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3503
3503
|
|
|
3504
3504
|
/*
|
|
3505
3505
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3538,7 +3538,7 @@
|
|
|
3538
3538
|
},
|
|
3539
3539
|
};
|
|
3540
3540
|
|
|
3541
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3541
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3542
3542
|
|
|
3543
3543
|
/*
|
|
3544
3544
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3729,12 +3729,12 @@
|
|
|
3729
3729
|
}
|
|
3730
3730
|
}
|
|
3731
3731
|
|
|
3732
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3732
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3733
3733
|
/* eslint-disable header/header */
|
|
3734
3734
|
const name$1 = "@azure/msal-common";
|
|
3735
3735
|
const version$1 = "14.14.2";
|
|
3736
3736
|
|
|
3737
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3737
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3738
3738
|
|
|
3739
3739
|
/*
|
|
3740
3740
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3934,7 +3934,7 @@
|
|
|
3934
3934
|
}
|
|
3935
3935
|
}
|
|
3936
3936
|
|
|
3937
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3937
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3938
3938
|
|
|
3939
3939
|
/*
|
|
3940
3940
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3974,7 +3974,7 @@
|
|
|
3974
3974
|
};
|
|
3975
3975
|
}
|
|
3976
3976
|
|
|
3977
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
3977
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
3978
3978
|
/*
|
|
3979
3979
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3980
3980
|
* Licensed under the MIT License.
|
|
@@ -4053,7 +4053,7 @@
|
|
|
4053
4053
|
return updatedAccountInfo;
|
|
4054
4054
|
}
|
|
4055
4055
|
|
|
4056
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
4056
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
4057
4057
|
/*
|
|
4058
4058
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4059
4059
|
* Licensed under the MIT License.
|
|
@@ -4075,7 +4075,7 @@
|
|
|
4075
4075
|
return null;
|
|
4076
4076
|
}
|
|
4077
4077
|
|
|
4078
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
4078
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
4079
4079
|
|
|
4080
4080
|
/*
|
|
4081
4081
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4318,7 +4318,7 @@
|
|
|
4318
4318
|
}
|
|
4319
4319
|
}
|
|
4320
4320
|
|
|
4321
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
4321
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
4322
4322
|
/*
|
|
4323
4323
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4324
4324
|
* Licensed under the MIT License.
|
|
@@ -4326,7 +4326,7 @@
|
|
|
4326
4326
|
const cacheQuotaExceededErrorCode = "cache_quota_exceeded";
|
|
4327
4327
|
const cacheUnknownErrorCode = "cache_error_unknown";
|
|
4328
4328
|
|
|
4329
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
4329
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
4330
4330
|
|
|
4331
4331
|
/*
|
|
4332
4332
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4353,7 +4353,7 @@
|
|
|
4353
4353
|
}
|
|
4354
4354
|
}
|
|
4355
4355
|
|
|
4356
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
4356
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
4357
4357
|
|
|
4358
4358
|
/*
|
|
4359
4359
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5605,7 +5605,7 @@
|
|
|
5605
5605
|
}
|
|
5606
5606
|
}
|
|
5607
5607
|
|
|
5608
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
5608
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
5609
5609
|
|
|
5610
5610
|
/*
|
|
5611
5611
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5703,7 +5703,7 @@
|
|
|
5703
5703
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
5704
5704
|
}
|
|
5705
5705
|
|
|
5706
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
5706
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
5707
5707
|
|
|
5708
5708
|
/*
|
|
5709
5709
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5722,7 +5722,7 @@
|
|
|
5722
5722
|
}
|
|
5723
5723
|
}
|
|
5724
5724
|
|
|
5725
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
5725
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
5726
5726
|
|
|
5727
5727
|
/*
|
|
5728
5728
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5820,7 +5820,7 @@
|
|
|
5820
5820
|
}
|
|
5821
5821
|
}
|
|
5822
5822
|
|
|
5823
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
5823
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
5824
5824
|
|
|
5825
5825
|
/*
|
|
5826
5826
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5857,7 +5857,7 @@
|
|
|
5857
5857
|
}
|
|
5858
5858
|
}
|
|
5859
5859
|
|
|
5860
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
5860
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
5861
5861
|
/*
|
|
5862
5862
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5863
5863
|
* Licensed under the MIT License.
|
|
@@ -5867,7 +5867,7 @@
|
|
|
5867
5867
|
UPN: "UPN",
|
|
5868
5868
|
};
|
|
5869
5869
|
|
|
5870
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
5870
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
5871
5871
|
|
|
5872
5872
|
/*
|
|
5873
5873
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5934,7 +5934,7 @@
|
|
|
5934
5934
|
}
|
|
5935
5935
|
}
|
|
5936
5936
|
|
|
5937
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
5937
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
5938
5938
|
|
|
5939
5939
|
/*
|
|
5940
5940
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6319,7 +6319,7 @@
|
|
|
6319
6319
|
}
|
|
6320
6320
|
}
|
|
6321
6321
|
|
|
6322
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
6322
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
6323
6323
|
|
|
6324
6324
|
/*
|
|
6325
6325
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6422,7 +6422,7 @@
|
|
|
6422
6422
|
}
|
|
6423
6423
|
}
|
|
6424
6424
|
|
|
6425
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
6425
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
6426
6426
|
/*
|
|
6427
6427
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6428
6428
|
* Licensed under the MIT License.
|
|
@@ -6448,7 +6448,7 @@
|
|
|
6448
6448
|
refreshTokenExpired: refreshTokenExpired
|
|
6449
6449
|
});
|
|
6450
6450
|
|
|
6451
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
6451
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
6452
6452
|
|
|
6453
6453
|
/*
|
|
6454
6454
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6536,7 +6536,7 @@
|
|
|
6536
6536
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
6537
6537
|
}
|
|
6538
6538
|
|
|
6539
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
6539
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
6540
6540
|
|
|
6541
6541
|
/*
|
|
6542
6542
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6608,7 +6608,7 @@
|
|
|
6608
6608
|
}
|
|
6609
6609
|
}
|
|
6610
6610
|
|
|
6611
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
6611
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
6612
6612
|
|
|
6613
6613
|
/*
|
|
6614
6614
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6692,7 +6692,7 @@
|
|
|
6692
6692
|
}
|
|
6693
6693
|
}
|
|
6694
6694
|
|
|
6695
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
6695
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
6696
6696
|
/*
|
|
6697
6697
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6698
6698
|
* Licensed under the MIT License.
|
|
@@ -6719,7 +6719,7 @@
|
|
|
6719
6719
|
}
|
|
6720
6720
|
}
|
|
6721
6721
|
|
|
6722
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
6722
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
6723
6723
|
|
|
6724
6724
|
/*
|
|
6725
6725
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7096,7 +7096,7 @@
|
|
|
7096
7096
|
return baseAccount;
|
|
7097
7097
|
}
|
|
7098
7098
|
|
|
7099
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7099
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7100
7100
|
|
|
7101
7101
|
/*
|
|
7102
7102
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7519,7 +7519,7 @@
|
|
|
7519
7519
|
}
|
|
7520
7520
|
}
|
|
7521
7521
|
|
|
7522
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7522
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7523
7523
|
|
|
7524
7524
|
/*
|
|
7525
7525
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7733,7 +7733,7 @@
|
|
|
7733
7733
|
}
|
|
7734
7734
|
}
|
|
7735
7735
|
|
|
7736
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7736
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7737
7737
|
|
|
7738
7738
|
/*
|
|
7739
7739
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7869,7 +7869,7 @@
|
|
|
7869
7869
|
}
|
|
7870
7870
|
}
|
|
7871
7871
|
|
|
7872
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7872
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7873
7873
|
|
|
7874
7874
|
/*
|
|
7875
7875
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7884,7 +7884,7 @@
|
|
|
7884
7884
|
},
|
|
7885
7885
|
};
|
|
7886
7886
|
|
|
7887
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7887
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7888
7888
|
/*
|
|
7889
7889
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7890
7890
|
* Licensed under the MIT License.
|
|
@@ -7892,7 +7892,7 @@
|
|
|
7892
7892
|
const missingKidError = "missing_kid_error";
|
|
7893
7893
|
const missingAlgError = "missing_alg_error";
|
|
7894
7894
|
|
|
7895
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7895
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7896
7896
|
|
|
7897
7897
|
/*
|
|
7898
7898
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7917,7 +7917,7 @@
|
|
|
7917
7917
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
7918
7918
|
}
|
|
7919
7919
|
|
|
7920
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7920
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7921
7921
|
|
|
7922
7922
|
/*
|
|
7923
7923
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7957,7 +7957,7 @@
|
|
|
7957
7957
|
}
|
|
7958
7958
|
}
|
|
7959
7959
|
|
|
7960
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
7960
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
7961
7961
|
|
|
7962
7962
|
/*
|
|
7963
7963
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8015,7 +8015,7 @@
|
|
|
8015
8015
|
}
|
|
8016
8016
|
}
|
|
8017
8017
|
|
|
8018
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
8018
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
8019
8019
|
|
|
8020
8020
|
/*
|
|
8021
8021
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8278,7 +8278,7 @@
|
|
|
8278
8278
|
}
|
|
8279
8279
|
}
|
|
8280
8280
|
|
|
8281
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
8281
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
8282
8282
|
|
|
8283
8283
|
/*
|
|
8284
8284
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8357,7 +8357,7 @@
|
|
|
8357
8357
|
}
|
|
8358
8358
|
}
|
|
8359
8359
|
|
|
8360
|
-
/*! @azure/msal-common v14.14.2 2024-
|
|
8360
|
+
/*! @azure/msal-common v14.14.2 2024-09-03 */
|
|
8361
8361
|
|
|
8362
8362
|
/*
|
|
8363
8363
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -10228,7 +10228,7 @@
|
|
|
10228
10228
|
|
|
10229
10229
|
/* eslint-disable header/header */
|
|
10230
10230
|
const name = "@azure/msal-browser";
|
|
10231
|
-
const version = "3.22.
|
|
10231
|
+
const version = "3.22.1";
|
|
10232
10232
|
|
|
10233
10233
|
/*
|
|
10234
10234
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|