@azure/msal-node
Advanced tools
Comparing version 2.6.0 to 2.6.1
export declare const name = "@azure/msal-node"; | ||
export declare const version = "2.6.0"; | ||
export declare const version = "2.6.1"; | ||
//# sourceMappingURL=packageMetadata.d.ts.map |
{ | ||
"$schema": "https://json.schemastore.org/package.json", | ||
"name": "@azure/msal-node", | ||
"version": "2.6.0", | ||
"version": "2.6.1", | ||
"author": { | ||
@@ -80,3 +80,3 @@ "name": "Microsoft", | ||
"dependencies": { | ||
"@azure/msal-common": "14.5.0", | ||
"@azure/msal-common": "14.6.0", | ||
"jsonwebtoken": "^9.0.0", | ||
@@ -86,4 +86,4 @@ "uuid": "^8.3.0" | ||
"engines": { | ||
"node": "16|| 18 || 20" | ||
"node": ">=16" | ||
} | ||
} |
@@ -94,3 +94,3 @@ /* | ||
inMemoryCache.refreshTokens[key] = value as RefreshTokenEntity; | ||
} else if (value instanceof AppMetadataEntity) { | ||
} else if (CacheHelpers.isAppMetadataEntity(key, value)) { | ||
inMemoryCache.appMetadata[key] = value as AppMetadataEntity; | ||
@@ -326,5 +326,3 @@ } else { | ||
) as AppMetadataEntity; | ||
if ( | ||
AppMetadataEntity.isAppMetadataEntity(appMetadataKey, appMetadata) | ||
) { | ||
if (CacheHelpers.isAppMetadataEntity(appMetadataKey, appMetadata)) { | ||
return appMetadata; | ||
@@ -340,3 +338,3 @@ } | ||
setAppMetadata(appMetadata: AppMetadataEntity): void { | ||
const appMetadataKey = appMetadata.generateAppMetadataKey(); | ||
const appMetadataKey = CacheHelpers.generateAppMetadataKey(appMetadata); | ||
this.setItem(appMetadataKey, appMetadata); | ||
@@ -389,6 +387,3 @@ } | ||
authorityMetadataEntity && | ||
AuthorityMetadataEntity.isAuthorityMetadataEntity( | ||
key, | ||
authorityMetadataEntity | ||
) | ||
CacheHelpers.isAuthorityMetadataEntity(key, authorityMetadataEntity) | ||
) { | ||
@@ -428,6 +423,3 @@ return authorityMetadataEntity; | ||
throttlingCache && | ||
ThrottlingEntity.isThrottlingEntity( | ||
throttlingCacheKey, | ||
throttlingCache | ||
) | ||
CacheHelpers.isThrottlingEntity(throttlingCacheKey, throttlingCache) | ||
) { | ||
@@ -434,0 +426,0 @@ return throttlingCache; |
@@ -16,3 +16,2 @@ /* | ||
RefreshTokenEntity, | ||
AppMetadataEntity, | ||
CacheManager, | ||
@@ -185,3 +184,3 @@ CredentialType, | ||
const serializedAmdt = appMetadata[key]; | ||
const mappedAmd = { | ||
appMetadataObjects[key] = { | ||
clientId: serializedAmdt.client_id, | ||
@@ -191,5 +190,2 @@ environment: serializedAmdt.environment, | ||
}; | ||
const amd: AppMetadataEntity = new AppMetadataEntity(); | ||
CacheManager.toObject(amd, mappedAmd); | ||
appMetadataObjects[key] = amd; | ||
}); | ||
@@ -196,0 +192,0 @@ } |
/* eslint-disable header/header */ | ||
export const name = "@azure/msal-node"; | ||
export const version = "2.6.0"; | ||
export const version = "2.6.1"; |
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 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 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 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 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 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 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 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 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 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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
855253
14632
+ Added@azure/msal-common@14.6.0(transitive)
- Removed@azure/msal-common@14.5.0(transitive)
Updated@azure/msal-common@14.6.0