@azure/identity 4.0.1-alpha.20240110.1 → 4.0.1-alpha.20240117.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @azure/identity might be problematic. Click here for more details.
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist-esm/src/constants.js +8 -0
- package/dist-esm/src/constants.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -279,14 +279,22 @@ exports.AzureAuthorityHosts = void 0;
|
|
|
279
279
|
AzureAuthorityHosts["AzurePublicCloud"] = "https://login.microsoftonline.com";
|
|
280
280
|
})(exports.AzureAuthorityHosts || (exports.AzureAuthorityHosts = {}));
|
|
281
281
|
/**
|
|
282
|
+
* @internal
|
|
282
283
|
* The default authority host.
|
|
283
284
|
*/
|
|
284
285
|
const DefaultAuthorityHost = exports.AzureAuthorityHosts.AzurePublicCloud;
|
|
285
286
|
/**
|
|
287
|
+
* @internal
|
|
286
288
|
* Allow acquiring tokens for any tenant for multi-tentant auth.
|
|
287
289
|
*/
|
|
288
290
|
const ALL_TENANTS = ["*"];
|
|
291
|
+
/**
|
|
292
|
+
* @internal
|
|
293
|
+
*/
|
|
289
294
|
const CACHE_CAE_SUFFIX = ".cae";
|
|
295
|
+
/**
|
|
296
|
+
* @internal
|
|
297
|
+
*/
|
|
290
298
|
const CACHE_NON_CAE_SUFFIX = ".nocae";
|
|
291
299
|
|
|
292
300
|
// Copyright (c) Microsoft Corporation.
|