Socket
Socket
Sign inDemoInstall

@azure/msal-common

Package Overview
Dependencies
Maintainers
3
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/msal-common - npm Package Compare versions

Comparing version 12.0.0 to 12.1.0

2

dist/_virtual/_tslib.js

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*! *****************************************************************************

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientAuthError } from '../error/ClientAuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientAuthError } from '../error/ClientAuthError.js';

@@ -136,4 +136,4 @@ import { AuthorityType } from "./AuthorityType";

* and returns where the information was retrieved from
* @param cachedMetadata
* @param newMetadata
* @param metadataEntity
* @returns AuthorityMetadataSource
*/

@@ -206,3 +206,13 @@ private updateCloudDiscoveryMetadata;

static replaceWithRegionalInformation(metadata: OpenIdConfigResponse, azureRegion: string): OpenIdConfigResponse;
/**
* Transform CIAM_AUTHORIY as per the below rules:
* If no path segments found and it is a CIAM authority (hostname ends with .ciamlogin.com), then transform it
*
* NOTE: The transformation path should go away once STS supports CIAM with the format: `tenantIdorDomain.ciamlogin.com`
* `ciamlogin.com` can also change in the future and we should accommodate the same
*
* @param authority
*/
static transformCIAMAuthority(authority: string): string;
}
//# sourceMappingURL=Authority.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -44,2 +44,6 @@ import { __awaiter, __generator, __assign } from '../_virtual/_tslib.js';

get: function () {
// CIAM auth url pattern is being standardized as: <tenant>.ciamlogin.com
if (this.canonicalAuthorityUrlComponents.HostNameAndPort.endsWith(Constants.CIAM_AUTH_URL)) {
return AuthorityType.Ciam;
}
var pathSegments = this.canonicalAuthorityUrlComponents.PathSegments;

@@ -332,3 +336,2 @@ if (pathSegments.length) {

}
harcodedMetadata = this.getEndpointMetadataFromHardcodedValues();
(_b = this.performanceClient) === null || _b === void 0 ? void 0 : _b.setPreQueueTime(PerformanceEvents.AuthorityGetEndpointMetadataFromNetwork, this.correlationId);

@@ -349,2 +352,3 @@ return [4 /*yield*/, this.getEndpointMetadataFromNetwork()];

case 4:
harcodedMetadata = this.getEndpointMetadataFromHardcodedValues();
if (!(harcodedMetadata && !this.authorityOptions.skipAuthorityMetadataCache)) return [3 /*break*/, 7];

@@ -474,4 +478,4 @@ if (!((_e = this.authorityOptions.azureRegionConfiguration) === null || _e === void 0 ? void 0 : _e.azureRegion)) return [3 /*break*/, 6];

* and returns where the information was retrieved from
* @param cachedMetadata
* @param newMetadata
* @param metadataEntity
* @returns AuthorityMetadataSource
*/

@@ -486,2 +490,3 @@ Authority.prototype.updateCloudDiscoveryMetadata = function (metadataEntity) {

(_a = this.performanceClient) === null || _a === void 0 ? void 0 : _a.addQueueMeasurement(PerformanceEvents.AuthorityUpdateCloudDiscoveryMetadata, this.correlationId);
// attempt to read metadata from the config
this.logger.verbose("Attempting to get cloud discovery metadata in the config");

@@ -536,2 +541,7 @@ this.logger.verbosePii("Known Authorities: " + (this.authorityOptions.knownAuthorities || Constants.NOT_APPLICABLE));

Authority.prototype.getCloudDiscoveryMetadataFromConfig = function () {
// CIAM does not support cloud discovery metadata
if (this.authorityType === AuthorityType.Ciam) {
this.logger.verbose("CIAM authorities do not support cloud discovery metadata, generate the aliases from authority host.");
return Authority.createCloudDiscoveryMetadataFromHost(this.hostnameAndPort);
}
// Check if network response was provided in config

@@ -756,2 +766,22 @@ if (this.authorityOptions.cloudDiscoveryMetadata) {

};
/**
* Transform CIAM_AUTHORIY as per the below rules:
* If no path segments found and it is a CIAM authority (hostname ends with .ciamlogin.com), then transform it
*
* NOTE: The transformation path should go away once STS supports CIAM with the format: `tenantIdorDomain.ciamlogin.com`
* `ciamlogin.com` can also change in the future and we should accommodate the same
*
* @param authority
*/
Authority.transformCIAMAuthority = function (authority) {
var ciamAuthority = authority;
var authorityUrl = new UrlString(authority);
var authorityUrlComponents = authorityUrl.getUrlComponents();
// check if transformation is needed
if (authorityUrlComponents.PathSegments.length === 0 && (authorityUrlComponents.HostNameAndPort.endsWith(Constants.CIAM_AUTH_URL))) {
var tenantIdOrDomain = authorityUrlComponents.HostNameAndPort.split(".")[0];
ciamAuthority = "" + ciamAuthority + tenantIdOrDomain + Constants.AAD_TENANT_DOMAIN_SUFFIX;
}
return ciamAuthority;
};
return Authority;

@@ -758,0 +788,0 @@ }());

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -29,3 +29,3 @@ import { __awaiter, __generator } from '../_virtual/_tslib.js';

return __awaiter(this, void 0, void 0, function () {
var acquireTokenAuthority, e_1;
var authorityUriFinal, acquireTokenAuthority, e_1;
return __generator(this, function (_a) {

@@ -35,3 +35,4 @@ switch (_a.label) {

performanceClient === null || performanceClient === void 0 ? void 0 : performanceClient.addQueueMeasurement(PerformanceEvents.AuthorityFactoryCreateDiscoveredInstance, correlationId);
acquireTokenAuthority = AuthorityFactory.createInstance(authorityUri, networkClient, cacheManager, authorityOptions, logger, performanceClient, correlationId);
authorityUriFinal = Authority.transformCIAMAuthority(authorityUri);
acquireTokenAuthority = AuthorityFactory.createInstance(authorityUriFinal, networkClient, cacheManager, authorityOptions, logger, performanceClient, correlationId);
_a.label = 1;

@@ -38,0 +39,0 @@ case 1:

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -7,4 +7,5 @@ /**

Adfs = 1,
Dsts = 2
Dsts = 2,
Ciam = 3
}
//# sourceMappingURL=AuthorityType.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -15,2 +15,3 @@ /*

AuthorityType[AuthorityType["Dsts"] = 2] = "Dsts";
AuthorityType[AuthorityType["Ciam"] = 3] = "Ciam";
})(AuthorityType || (AuthorityType = {}));

@@ -17,0 +18,0 @@

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __awaiter, __generator, __assign, __extends } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { Separators, CacheAccountType, CacheType, Constants } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { Separators, APP_METADATA } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { AUTHORITY_METADATA_CONSTANTS } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { CredentialType, CacheType, Separators, Constants, AuthenticationScheme } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { SERVER_TELEM_CONSTANTS } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { ThrottlingConstants } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends, __awaiter, __generator, __assign, __spreadArrays } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends, __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends, __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends, __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends, __awaiter, __generator, __assign } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends, __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends, __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __assign, __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { JoseHeaderError } from '../error/JoseHeaderError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __awaiter, __generator, __assign } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ export { AuthorizationCodeClient } from './client/AuthorizationCodeClient.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { StringUtils } from '../utils/StringUtils.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { AuthError } from '../error/AuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { ThrottlingConstants, Constants, HeaderNames } from '../utils/Constants.js';

export declare const name = "@azure/msal-common";
export declare const version = "12.0.0";
export declare const version = "12.1.0";
//# sourceMappingURL=packageMetadata.d.ts.map

@@ -1,8 +0,8 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';
/* eslint-disable header/header */
var name = "@azure/msal-common";
var version = "12.0.0";
var version = "12.1.0";
export { name, version };
//# sourceMappingURL=packageMetadata.js.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientConfigurationError } from '../error/ClientConfigurationError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __spreadArrays } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { StringUtils } from '../utils/StringUtils.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __spreadArrays } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __awaiter, __generator } from '../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __assign } from '../../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { __extends } from '../../_virtual/_tslib.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { SERVER_TELEM_CONSTANTS, CacheOutcome, Constants, Separators } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientConfigurationError } from '../error/ClientConfigurationError.js';

@@ -11,2 +11,4 @@ export declare const Constants: {

AAD_INSTANCE_DISCOVERY_ENDPT: string;
CIAM_AUTH_URL: string;
AAD_TENANT_DOMAIN_SUFFIX: string;
RESOURCE_DELIM: string;

@@ -165,6 +167,2 @@ NO_ACCOUNT: string;

/**
* Disallowed extra query parameters.
*/
export declare const BlacklistedEQParams: SSOTypes[];
/**
* allowed values for codeVerifier

@@ -171,0 +169,0 @@ */

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -23,2 +23,5 @@ import { __spreadArrays } from '../_virtual/_tslib.js';

AAD_INSTANCE_DISCOVERY_ENDPT: "https://login.microsoftonline.com/common/discovery/instance?api-version=1.1&authorization_endpoint=",
// CIAM URL
CIAM_AUTH_URL: ".ciamlogin.com",
AAD_TENANT_DOMAIN_SUFFIX: ".onmicrosoft.com",
// Resource delimiter - used for certain cache entries

@@ -25,0 +28,0 @@ RESOURCE_DELIM: "|",

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { StringUtils } from './StringUtils.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientAuthError } from '../error/ClientAuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v12.0.0 2023-04-03 */
/*! @azure/msal-common v12.1.0 2023-04-18 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -13,3 +13,3 @@ {

},
"version": "12.0.0",
"version": "12.1.0",
"description": "Microsoft Authentication Library for js",

@@ -16,0 +16,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc