@azure/msal-common
Advanced tools
Comparing version 14.0.1 to 14.0.2
@@ -16,2 +16,3 @@ import { AuthorityType } from "./AuthorityType"; | ||
* endpoint. It will store the pertinent config data in this object for use during token calls. | ||
* @internal | ||
*/ | ||
@@ -18,0 +19,0 @@ export declare class Authority { |
@@ -7,2 +7,3 @@ import { Authority } from "./Authority"; | ||
import { IPerformanceClient } from "../telemetry/performance/IPerformanceClient"; | ||
/** @internal */ | ||
export declare class AuthorityFactory { | ||
@@ -9,0 +10,0 @@ /** |
@@ -19,2 +19,3 @@ import { AccountFilter, CredentialFilter, ValidCredentialType, AppMetadataFilter, AppMetadataCache, TokenKeys } from "./utils/CacheTypes"; | ||
* Interface class which implement cache storage functions used by MSAL to perform validity checks, and store tokens. | ||
* @internal | ||
*/ | ||
@@ -420,2 +421,3 @@ export declare abstract class CacheManager implements ICacheManager { | ||
} | ||
/** @internal */ | ||
export declare class DefaultStorageClass extends CacheManager { | ||
@@ -422,0 +424,0 @@ setAccount(): void; |
@@ -28,2 +28,3 @@ import { Authority } from "../../authority/Authority"; | ||
* } | ||
* @internal | ||
*/ | ||
@@ -30,0 +31,0 @@ export declare class AccountEntity { |
import { CloudDiscoveryMetadata } from "../../authority/CloudDiscoveryMetadata"; | ||
import { OpenIdConfigResponse } from "../../authority/OpenIdConfigResponse"; | ||
/** @internal */ | ||
export declare class AuthorityMetadataEntity { | ||
@@ -4,0 +5,0 @@ aliases: Array<string>; |
@@ -6,2 +6,3 @@ import { IdTokenEntity } from "./IdTokenEntity"; | ||
import { AppMetadataEntity } from "./AppMetadataEntity"; | ||
/** @internal */ | ||
export declare class CacheRecord { | ||
@@ -8,0 +9,0 @@ account: AccountEntity | null; |
@@ -11,9 +11,15 @@ import { AccountEntity } from "../entities/AccountEntity"; | ||
import { ScopeSet } from "../../request/ScopeSet"; | ||
/** @internal */ | ||
export type AccountCache = Record<string, AccountEntity>; | ||
/** @internal */ | ||
export type IdTokenCache = Record<string, IdTokenEntity>; | ||
/** @internal */ | ||
export type AccessTokenCache = Record<string, AccessTokenEntity>; | ||
/** @internal */ | ||
export type RefreshTokenCache = Record<string, RefreshTokenEntity>; | ||
/** @internal */ | ||
export type AppMetadataCache = Record<string, AppMetadataEntity>; | ||
/** | ||
* Object type of all accepted cache types | ||
* @internal | ||
*/ | ||
@@ -23,2 +29,3 @@ export type ValidCacheType = AccountEntity | IdTokenEntity | AccessTokenEntity | RefreshTokenEntity | AppMetadataEntity | AuthorityMetadataEntity | ServerTelemetryEntity | ThrottlingEntity | string; | ||
* Object type of all credential types | ||
* @internal | ||
*/ | ||
@@ -25,0 +32,0 @@ export type ValidCredentialType = IdTokenEntity | AccessTokenEntity | RefreshTokenEntity; |
@@ -11,2 +11,3 @@ import { BaseClient } from "./BaseClient"; | ||
* Oauth2.0 Authorization Code client | ||
* @internal | ||
*/ | ||
@@ -13,0 +14,0 @@ export declare class AuthorizationCodeClient extends BaseClient { |
@@ -16,2 +16,3 @@ import { ClientConfiguration, CommonClientConfiguration } from "../config/ClientConfiguration"; | ||
* Base application class which will construct requests to send to and handle responses from the Microsoft STS using the authorization code flow. | ||
* @internal | ||
*/ | ||
@@ -18,0 +19,0 @@ export declare abstract class BaseClient { |
@@ -9,2 +9,3 @@ import { ClientConfiguration } from "../config/ClientConfiguration"; | ||
* OAuth2.0 refresh token client | ||
* @internal | ||
*/ | ||
@@ -11,0 +12,0 @@ export declare class RefreshTokenClient extends BaseClient { |
@@ -6,2 +6,3 @@ import { BaseClient } from "./BaseClient"; | ||
import { IPerformanceClient } from "../telemetry/performance/IPerformanceClient"; | ||
/** @internal */ | ||
export declare class SilentFlowClient extends BaseClient { | ||
@@ -8,0 +9,0 @@ constructor(configuration: ClientConfiguration, performanceClient?: IPerformanceClient); |
@@ -24,2 +24,3 @@ import { INetworkModule } from "../network/INetworkModule"; | ||
* - clientCredentials - Credentials options for confidential clients | ||
* @internal | ||
*/ | ||
@@ -66,2 +67,3 @@ export type ClientConfiguration = { | ||
* - skipAuthorityMetadataCache - A flag to choose whether to use or not use the local metadata cache during authority initialization. Defaults to false. | ||
* @internal | ||
*/ | ||
@@ -68,0 +70,0 @@ export type AuthOptions = { |
@@ -7,2 +7,3 @@ import { JsonTypes } from "../utils/Constants"; | ||
}; | ||
/** @internal */ | ||
export declare class JoseHeader { | ||
@@ -9,0 +10,0 @@ typ?: JsonTypes; |
@@ -24,2 +24,3 @@ import { ICrypto, SignedHttpRequestParameters } from "./ICrypto"; | ||
export type KeyLocation = (typeof KeyLocation)[keyof typeof KeyLocation]; | ||
/** @internal */ | ||
export declare class PopTokenGenerator { | ||
@@ -26,0 +27,0 @@ private cryptoUtils; |
@@ -65,2 +65,3 @@ /** | ||
export { StoreInCache } from "./request/StoreInCache"; | ||
export { ClientAssertion } from "./account/ClientCredentials"; | ||
export { AzureRegion } from "./authority/AzureRegion"; | ||
@@ -67,0 +68,0 @@ export { AzureRegionConfiguration } from "./authority/AzureRegionConfiguration"; |
@@ -21,2 +21,3 @@ import { INetworkModule, NetworkRequestOptions } from "./INetworkModule"; | ||
}; | ||
/** @internal */ | ||
export declare class NetworkManager { | ||
@@ -23,0 +24,0 @@ private networkClient; |
@@ -6,2 +6,3 @@ import { NetworkResponse } from "./NetworkManager"; | ||
import { BaseAuthRequest } from "../request/BaseAuthRequest"; | ||
/** @internal */ | ||
export declare class ThrottlingUtils { | ||
@@ -8,0 +9,0 @@ /** |
export declare const name = "@azure/msal-common"; | ||
export declare const version = "14.0.1"; | ||
export declare const version = "14.0.2"; | ||
//# sourceMappingURL=packageMetadata.d.ts.map |
@@ -6,2 +6,3 @@ import { ResponseMode } from "../utils/Constants"; | ||
import { ClientInfo } from "../account/ClientInfo"; | ||
/** @internal */ | ||
export declare class RequestParameterBuilder { | ||
@@ -8,0 +9,0 @@ private parameters; |
@@ -18,2 +18,3 @@ import { ServerAuthorizationTokenResponse } from "./ServerAuthorizationTokenResponse"; | ||
* Class that handles response parsing. | ||
* @internal | ||
*/ | ||
@@ -20,0 +21,0 @@ export declare class ResponseHandler { |
@@ -6,2 +6,3 @@ import { CacheOutcome } from "../../utils/Constants"; | ||
import { RegionDiscoveryMetadata } from "../../authority/RegionDiscoveryMetadata"; | ||
/** @internal */ | ||
export declare class ServerTelemetryManager { | ||
@@ -8,0 +9,0 @@ private cacheManager; |
@@ -13,3 +13,3 @@ { | ||
}, | ||
"version": "14.0.1", | ||
"version": "14.0.2", | ||
"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 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
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
1582695
24826
0