Socket
Socket
Sign inDemoInstall

@azure/msal-common

Package Overview
Dependencies
0
Maintainers
3
Versions
116
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.0.0 to 9.0.0

2

dist/_virtual/_tslib.js

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

@@ -11,2 +11,3 @@ import { AuthorityType } from "./AuthorityType";

import { AzureCloudOptions } from "../config/ClientConfiguration";
import { Logger } from "../logger/Logger";
/**

@@ -26,3 +27,4 @@ * The authority class validates the authority URIs used by the user, and retrieves the OpenID Configuration Data from the

private proxyUrl;
constructor(authority: string, networkInterface: INetworkModule, cacheManager: ICacheManager, authorityOptions: AuthorityOptions, proxyUrl?: string);
private logger;
constructor(authority: string, networkInterface: INetworkModule, cacheManager: ICacheManager, authorityOptions: AuthorityOptions, logger: Logger, proxyUrl?: string);
get authorityType(): AuthorityType;

@@ -29,0 +31,0 @@ /**

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

var Authority = /** @class */ (function () {
function Authority(authority, networkInterface, cacheManager, authorityOptions, proxyUrl) {
function Authority(authority, networkInterface, cacheManager, authorityOptions, logger, proxyUrl) {
this.canonicalAuthority = authority;

@@ -36,2 +36,3 @@ this._canonicalAuthority.validateAsUri();

this.proxyUrl = proxyUrl || Constants.EMPTY_STRING;
this.logger = logger;
}

@@ -463,17 +464,28 @@ Object.defineProperty(Authority.prototype, "authorityType", {

return __awaiter(this, void 0, void 0, function () {
var metadata, harcodedMetadata;
var metadata, metadataEntityExpired, harcodedMetadata;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.logger.verbose("Attempting to get cloud discovery metadata in the config");
this.logger.verbosePii("Known Authorities: " + (this.authorityOptions.knownAuthorities || Constants.NOT_APPLICABLE));
this.logger.verbosePii("Authority Metadata: " + (this.authorityOptions.authorityMetadata || Constants.NOT_APPLICABLE));
this.logger.verbosePii("Canonical Authority: " + (metadataEntity.canonical_authority || Constants.NOT_APPLICABLE));
metadata = this.getCloudDiscoveryMetadataFromConfig();
if (metadata) {
this.logger.verbose("Found cloud discovery metadata in the config.");
metadataEntity.updateCloudDiscoveryMetadata(metadata, false);
return [2 /*return*/, AuthorityMetadataSource.CONFIG];
}
// If The cached metadata came from config but that config was not passed to this instance, we must go to the network
if (this.isAuthoritySameType(metadataEntity) && metadataEntity.aliasesFromNetwork && !metadataEntity.isExpired()) {
// If the cached metadata came from config but that config was not passed to this instance, we must go to the network
this.logger.verbose("Did not find cloud discovery metadata in the config... Attempting to get cloud discovery metadata from the cache.");
metadataEntityExpired = metadataEntity.isExpired();
if (this.isAuthoritySameType(metadataEntity) && metadataEntity.aliasesFromNetwork && !metadataEntityExpired) {
this.logger.verbose("Found metadata in the cache.");
// No need to update
return [2 /*return*/, AuthorityMetadataSource.CACHE];
}
harcodedMetadata = this.getCloudDiscoveryMetadataFromHarcodedValues();
else if (metadataEntityExpired) {
this.logger.verbose("The metadata entity is expired.");
}
this.logger.verbose("Did not find cloud discovery metadata in the cache... Attempting to get cloud discovery metadata from the network.");
return [4 /*yield*/, this.getCloudDiscoveryMetadataFromNetwork()];

@@ -483,13 +495,16 @@ case 1:

if (metadata) {
this.logger.verbose("Found cloud discovery metadata from the network.");
metadataEntity.updateCloudDiscoveryMetadata(metadata, true);
return [2 /*return*/, AuthorityMetadataSource.NETWORK];
}
this.logger.verbose("Did not find cloud discovery metadata from the network... Attempting to get cloud discovery metadata from hardcoded values.");
harcodedMetadata = this.getCloudDiscoveryMetadataFromHarcodedValues();
if (harcodedMetadata && !this.options.skipAuthorityMetadataCache) {
this.logger.verbose("Found cloud discovery metadata from hardcoded values.");
metadataEntity.updateCloudDiscoveryMetadata(harcodedMetadata, false);
return [2 /*return*/, AuthorityMetadataSource.HARDCODED_VALUES];
}
else {
// Metadata could not be obtained from config, cache or network
throw ClientConfigurationError.createUntrustedAuthorityError();
}
// Metadata could not be obtained from config, cache or network
this.logger.verbose("Did not find cloud discovery metadata from hardcoded values... Metadata could not be obtained from config, cache, network or hardcoded value. Throwing Untrusted Authority Error.");
throw ClientConfigurationError.createUntrustedAuthorityError();
}

@@ -505,10 +520,18 @@ });

if (this.authorityOptions.cloudDiscoveryMetadata) {
this.logger.verbose("The cloud discovery metadata has been provided as a network response, in the config.");
try {
this.logger.verbose("Attempting to parse the cloud discovery metadata.");
var parsedResponse = JSON.parse(this.authorityOptions.cloudDiscoveryMetadata);
var metadata = Authority.getCloudDiscoveryMetadataFromNetworkResponse(parsedResponse.metadata, this.hostnameAndPort);
this.logger.verbose("Parsed the cloud discovery metadata.");
if (metadata) {
this.logger.verbose("There is returnable metadata attached to the parsed cloud discovery metadata.");
return metadata;
}
else {
this.logger.verbose("There is no metadata attached to the parsed cloud discovery metadata.");
}
}
catch (e) {
this.logger.verbose("Unable to parse the cloud discovery metadata. Throwing Invalid Cloud Discovery Metadata Error.");
throw ClientConfigurationError.createInvalidCloudDiscoveryMetadataError();

@@ -519,2 +542,3 @@ }

if (this.isInKnownAuthorities()) {
this.logger.verbose("The host is included in knownAuthorities. Creating new cloud discovery metadata from the host.");
return Authority.createCloudDiscoveryMetadataFromHost(this.hostnameAndPort);

@@ -521,0 +545,0 @@ }

@@ -5,2 +5,3 @@ import { Authority } from "./Authority";

import { AuthorityOptions } from "./AuthorityOptions";
import { Logger } from "../logger/Logger";
export declare class AuthorityFactory {

@@ -17,3 +18,3 @@ /**

*/
static createDiscoveredInstance(authorityUri: string, networkClient: INetworkModule, cacheManager: ICacheManager, authorityOptions: AuthorityOptions, proxyUrl?: string): Promise<Authority>;
static createDiscoveredInstance(authorityUri: string, networkClient: INetworkModule, cacheManager: ICacheManager, authorityOptions: AuthorityOptions, logger: Logger, proxyUrl?: string): Promise<Authority>;
/**

@@ -29,4 +30,4 @@ * Create an authority object of the correct type based on the url

*/
static createInstance(authorityUrl: string, networkInterface: INetworkModule, cacheManager: ICacheManager, authorityOptions: AuthorityOptions, proxyUrl?: string): Authority;
static createInstance(authorityUrl: string, networkInterface: INetworkModule, cacheManager: ICacheManager, authorityOptions: AuthorityOptions, logger: Logger, proxyUrl?: string): Authority;
}
//# sourceMappingURL=AuthorityFactory.d.ts.map

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

*/
AuthorityFactory.createDiscoveredInstance = function (authorityUri, networkClient, cacheManager, authorityOptions, proxyUrl) {
AuthorityFactory.createDiscoveredInstance = function (authorityUri, networkClient, cacheManager, authorityOptions, logger, proxyUrl) {
return __awaiter(this, void 0, void 0, function () {

@@ -33,3 +33,3 @@ var acquireTokenAuthority, e_1;

case 0:
acquireTokenAuthority = AuthorityFactory.createInstance(authorityUri, networkClient, cacheManager, authorityOptions, proxyUrl);
acquireTokenAuthority = AuthorityFactory.createInstance(authorityUri, networkClient, cacheManager, authorityOptions, logger, proxyUrl);
_a.label = 1;

@@ -60,3 +60,3 @@ case 1:

*/
AuthorityFactory.createInstance = function (authorityUrl, networkInterface, cacheManager, authorityOptions, proxyUrl) {
AuthorityFactory.createInstance = function (authorityUrl, networkInterface, cacheManager, authorityOptions, logger, proxyUrl) {
// Throw error if authority url is empty

@@ -66,3 +66,3 @@ if (StringUtils.isEmpty(authorityUrl)) {

}
return new Authority(authorityUrl, networkInterface, cacheManager, authorityOptions, proxyUrl);
return new Authority(authorityUrl, networkInterface, cacheManager, authorityOptions, logger, proxyUrl);
};

@@ -69,0 +69,0 @@ return AuthorityFactory;

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';
/* eslint-disable header/header */
var name = "@azure/msal-common";
var version = "8.0.0";
var version = "9.0.0";
export { name, version };
//# sourceMappingURL=packageMetadata.js.map

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

@@ -28,2 +28,3 @@ export declare const Constants: {

EMPTY_STRING: string;
NOT_APPLICABLE: string;
FORWARD_SLASH: string;

@@ -30,0 +31,0 @@ IMDS_ENDPOINT: string;

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

EMPTY_STRING: "",
NOT_APPLICABLE: "N/A",
FORWARD_SLASH: "/",

@@ -48,0 +49,0 @@ IMDS_ENDPOINT: "http://169.254.169.254/metadata/instance/compute/location",

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

/*! @azure/msal-common v8.0.0 2022-11-07 */
/*! @azure/msal-common v9.0.0 2022-11-22 */
'use strict';

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

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

},
"version": "8.0.0",
"version": "9.0.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 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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc