Socket
Socket
Sign inDemoInstall

@azure/msal-common

Package Overview
Dependencies
0
Maintainers
3
Versions
115
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 13.0.0 to 13.1.0

2

dist/_virtual/_tslib.js

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

@@ -29,3 +29,10 @@ import { AuthorityType } from "./AuthorityType";

protected correlationId: string | undefined;
private static reservedTenantDomains;
constructor(authority: string, networkInterface: INetworkModule, cacheManager: ICacheManager, authorityOptions: AuthorityOptions, logger: Logger, performanceClient?: IPerformanceClient, correlationId?: string);
/**
* Get {@link AuthorityType}
* @param authorityUri {@link IUri}
* @private
*/
private getAuthorityType;
get authorityType(): AuthorityType;

@@ -82,2 +89,8 @@ /**

/**
* Returns a flag indicating that tenant name can be replaced in authority {@link IUri}
* @param authorityUri {@link IUri}
* @private
*/
private canReplaceTenant;
/**
* Replaces tenant in url path with current tenant. Defaults to common.

@@ -84,0 +97,0 @@ * @param urlString

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

import { ClientAuthError } from '../error/ClientAuthError.js';
import { Constants, AuthorityMetadataSource, RegionDiscoveryOutcomes } from '../utils/Constants.js';
import { Constants, AADAuthorityConstants, AuthorityMetadataSource, RegionDiscoveryOutcomes } from '../utils/Constants.js';
import { EndpointMetadata, InstanceDiscoveryMetadata } from './AuthorityMetadata.js';

@@ -42,19 +42,27 @@ import { ClientConfigurationError } from '../error/ClientConfigurationError.js';

}
/**
* Get {@link AuthorityType}
* @param authorityUri {@link IUri}
* @private
*/
Authority.prototype.getAuthorityType = function (authorityUri) {
// CIAM auth url pattern is being standardized as: <tenant>.ciamlogin.com
if (authorityUri.HostNameAndPort.endsWith(Constants.CIAM_AUTH_URL)) {
return AuthorityType.Ciam;
}
var pathSegments = authorityUri.PathSegments;
if (pathSegments.length) {
switch (pathSegments[0].toLowerCase()) {
case Constants.ADFS:
return AuthorityType.Adfs;
case Constants.DSTS:
return AuthorityType.Dsts;
}
}
return AuthorityType.Default;
};
Object.defineProperty(Authority.prototype, "authorityType", {
// See above for AuthorityType
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;
if (pathSegments.length) {
switch (pathSegments[0].toLowerCase()) {
case Constants.ADFS:
return AuthorityType.Adfs;
case Constants.DSTS:
return AuthorityType.Dsts;
}
}
return AuthorityType.Default;
return this.getAuthorityType(this.canonicalAuthorityUrlComponents);
},

@@ -141,4 +149,3 @@ enumerable: false,

if (this.discoveryComplete()) {
var endpoint = this.replacePath(this.metadata.authorization_endpoint);
return this.replaceTenant(endpoint);
return this.replacePath(this.metadata.authorization_endpoint);
}

@@ -158,4 +165,3 @@ else {

if (this.discoveryComplete()) {
var endpoint = this.replacePath(this.metadata.token_endpoint);
return this.replaceTenant(endpoint);
return this.replacePath(this.metadata.token_endpoint);
}

@@ -172,4 +178,3 @@ else {

if (this.discoveryComplete()) {
var endpoint = this.replacePath(this.metadata.token_endpoint.replace("/token", "/devicecode"));
return this.replaceTenant(endpoint);
return this.replacePath(this.metadata.token_endpoint.replace("/token", "/devicecode"));
}

@@ -193,4 +198,3 @@ else {

}
var endpoint = this.replacePath(this.metadata.end_session_endpoint);
return this.replaceTenant(endpoint);
return this.replacePath(this.metadata.end_session_endpoint);
}

@@ -210,4 +214,3 @@ else {

if (this.discoveryComplete()) {
var endpoint = this.replacePath(this.metadata.issuer);
return this.replaceTenant(endpoint);
return this.replacePath(this.metadata.issuer);
}

@@ -227,4 +230,3 @@ else {

if (this.discoveryComplete()) {
var endpoint = this.replacePath(this.metadata.jwks_uri);
return this.replaceTenant(endpoint);
return this.replacePath(this.metadata.jwks_uri);
}

@@ -239,2 +241,13 @@ else {

/**
* Returns a flag indicating that tenant name can be replaced in authority {@link IUri}
* @param authorityUri {@link IUri}
* @private
*/
Authority.prototype.canReplaceTenant = function (authorityUri) {
return authorityUri.PathSegments.length === 1
&& !Authority.reservedTenantDomains.has(authorityUri.PathSegments[0])
&& this.getAuthorityType(authorityUri) === AuthorityType.Default
&& this.protocolMode === ProtocolMode.AAD;
};
/**
* Replaces tenant in url path with current tenant. Defaults to common.

@@ -251,8 +264,22 @@ * @param urlString

Authority.prototype.replacePath = function (urlString) {
var _this = this;
var endpoint = urlString;
var cachedAuthorityUrl = new UrlString(this.metadata.canonical_authority);
var cachedAuthorityParts = cachedAuthorityUrl.getUrlComponents().PathSegments;
var cachedAuthorityUrlComponents = cachedAuthorityUrl.getUrlComponents();
var cachedAuthorityParts = cachedAuthorityUrlComponents.PathSegments;
var currentAuthorityParts = this.canonicalAuthorityUrlComponents.PathSegments;
currentAuthorityParts.forEach(function (currentPart, index) {
var cachedPart = cachedAuthorityParts[index];
if (index === 0 && _this.canReplaceTenant(cachedAuthorityUrlComponents)) {
var tenantId = (new UrlString(_this.metadata.authorization_endpoint)).getUrlComponents().PathSegments[0];
/**
* Check if AAD canonical authority contains tenant domain name, for example "testdomain.onmicrosoft.com",
* by comparing its first path segment to the corresponding authorization endpoint path segment, which is
* always resolved with tenant id by OIDC.
*/
if (cachedPart !== tenantId) {
_this.logger.verbose("Replacing tenant domain name " + cachedPart + " with id " + tenantId);
cachedPart = tenantId;
}
}
if (currentPart !== cachedPart) {

@@ -262,3 +289,3 @@ endpoint = endpoint.replace("/" + cachedPart + "/", "/" + currentPart + "/");

});
return endpoint;
return this.replaceTenant(endpoint);
};

@@ -791,2 +818,10 @@ Object.defineProperty(Authority.prototype, "defaultOpenIdConfigurationEndpoint", {

};
// Reserved tenant domain names that will not be replaced with tenant id
Authority.reservedTenantDomains = (new Set([
"{tenant}",
"{tenantid}",
AADAuthorityConstants.COMMON,
AADAuthorityConstants.CONSUMERS,
AADAuthorityConstants.ORGANIZATIONS
]));
return Authority;

@@ -793,0 +828,0 @@ }());

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

reqCnfData = _b.sent();
parameterBuilder.addPopToken(reqCnfData.reqCnfHash);
parameterBuilder.addPopToken(reqCnfData.reqCnfString);
_b.label = 2;

@@ -450,0 +450,0 @@ case 2: return [2 /*return*/, parameterBuilder.createQueryString()];

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

@@ -98,2 +98,6 @@ import { ClientAuthError } from "./ClientAuthError";

};
authorityMismatch: {
code: string;
desc: string;
};
};

@@ -199,3 +203,7 @@ /**

static createInvalidAuthenticationHeaderError(invalidHeaderName: string, details: string): ClientConfigurationError;
/**
* Create an error when the authority provided in request does not match authority provided in account or MSAL.js configuration.
*/
static createAuthorityMismatchError(): ClientConfigurationError;
}
//# sourceMappingURL=ClientConfigurationError.d.ts.map

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

@@ -105,2 +105,6 @@ import { __extends } from '../_virtual/_tslib.js';

desc: "Invalid authentication header provided"
},
authorityMismatch: {
code: "authority_mismatch",
desc: "Authority mismatch error. Authority provided in login request or PublicClientApplication config does not match the environment of the provided account. Please use a matching account or make an interactive request to login to this authority."
}

@@ -257,2 +261,8 @@ };

};
/**
* Create an error when the authority provided in request does not match authority provided in account or MSAL.js configuration.
*/
ClientConfigurationError.createAuthorityMismatchError = function () {
return new ClientConfigurationError(ClientConfigurationErrorMessage.authorityMismatch.code, ClientConfigurationErrorMessage.authorityMismatch.desc);
};
return ClientConfigurationError;

@@ -259,0 +269,0 @@ }(ClientAuthError));

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'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 = "13.0.0";
export declare const version = "13.1.0";
//# sourceMappingURL=packageMetadata.d.ts.map

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';
/* eslint-disable header/header */
var name = "@azure/msal-common";
var version = "13.0.0";
var version = "13.1.0";
export { name, version };
//# sourceMappingURL=packageMetadata.js.map

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

/*! @azure/msal-common v13.0.0 2023-05-01 */
/*! @azure/msal-common v13.1.0 2023-06-07 */
'use strict';

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

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

},
"version": "13.0.0",
"version": "13.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 too big to display

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc