Estructura inicial del proyecto
This commit is contained in:
69
backend/node_modules/@azure/identity/dist/esm/constants.d.ts
generated
vendored
Normal file
69
backend/node_modules/@azure/identity/dist/esm/constants.d.ts
generated
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
/**
|
||||
* Current version of the `@azure/identity` package.
|
||||
*/
|
||||
export declare const SDK_VERSION = "4.13.1";
|
||||
/**
|
||||
* The default client ID for authentication
|
||||
* @internal
|
||||
*/
|
||||
export declare const DeveloperSignOnClientId = "04b07795-8ddb-461a-bbee-02f9e1bf7b46";
|
||||
/**
|
||||
* The default tenant for authentication
|
||||
* @internal
|
||||
*/
|
||||
export declare const DefaultTenantId = "common";
|
||||
/**
|
||||
* A list of known Azure authority hosts
|
||||
*/
|
||||
export declare enum AzureAuthorityHosts {
|
||||
/**
|
||||
* China-based Azure Authority Host
|
||||
*/
|
||||
AzureChina = "https://login.chinacloudapi.cn",
|
||||
/**
|
||||
* Germany-based Azure Authority Host
|
||||
*
|
||||
* @deprecated Microsoft Cloud Germany was closed on October 29th, 2021.
|
||||
*
|
||||
* */
|
||||
AzureGermany = "https://login.microsoftonline.de",
|
||||
/**
|
||||
* US Government Azure Authority Host
|
||||
*/
|
||||
AzureGovernment = "https://login.microsoftonline.us",
|
||||
/**
|
||||
* Public Cloud Azure Authority Host
|
||||
*/
|
||||
AzurePublicCloud = "https://login.microsoftonline.com"
|
||||
}
|
||||
/**
|
||||
* @internal
|
||||
* The default authority host.
|
||||
*/
|
||||
export declare const DefaultAuthorityHost = AzureAuthorityHosts.AzurePublicCloud;
|
||||
/**
|
||||
* @internal
|
||||
* The default environment host for Azure Public Cloud
|
||||
*/
|
||||
export declare const DefaultAuthority = "login.microsoftonline.com";
|
||||
/**
|
||||
* @internal
|
||||
* Allow acquiring tokens for any tenant for multi-tentant auth.
|
||||
*/
|
||||
export declare const ALL_TENANTS: string[];
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export declare const CACHE_CAE_SUFFIX = "cae";
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export declare const CACHE_NON_CAE_SUFFIX = "nocae";
|
||||
/**
|
||||
* @internal
|
||||
*
|
||||
* The default name for the cache persistence plugin.
|
||||
* Matches the constant defined in the cache persistence package.
|
||||
*/
|
||||
export declare const DEFAULT_TOKEN_CACHE_NAME = "msal.cache";
|
||||
//# sourceMappingURL=constants.d.ts.map
|
||||
Reference in New Issue
Block a user