@azure/keyvault-common 2.0.2-alpha.20260303.1 → 2.0.2-alpha.20260304.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.
- package/dist/commonjs/index.js +5 -0
- package/dist/commonjs/keyVaultAuthenticationPolicy.js +5 -0
- package/dist/commonjs/logger.js +4 -0
- package/dist/commonjs/parseKeyVaultIdentifier.js +4 -0
- package/dist/commonjs/parseWWWAuthenticate.js +4 -0
- package/dist/commonjs/tokenCycler.js +5 -0
- package/package.json +3 -3
package/dist/commonjs/index.js
CHANGED
|
@@ -16,3 +16,8 @@ var src_exports = {};
|
|
|
16
16
|
module.exports = __toCommonJS(src_exports);
|
|
17
17
|
__reExport(src_exports, require("./keyVaultAuthenticationPolicy.js"), module.exports);
|
|
18
18
|
__reExport(src_exports, require("./parseKeyVaultIdentifier.js"), module.exports);
|
|
19
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
20
|
+
0 && (module.exports = {
|
|
21
|
+
...require("./keyVaultAuthenticationPolicy.js"),
|
|
22
|
+
...require("./parseKeyVaultIdentifier.js")
|
|
23
|
+
});
|
|
@@ -155,3 +155,8 @@ function keyVaultAuthenticationPolicy(credential, options = {}) {
|
|
|
155
155
|
sendRequest
|
|
156
156
|
};
|
|
157
157
|
}
|
|
158
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
159
|
+
0 && (module.exports = {
|
|
160
|
+
keyVaultAuthenticationPolicy,
|
|
161
|
+
keyVaultAuthenticationPolicyName
|
|
162
|
+
});
|
package/dist/commonjs/logger.js
CHANGED
|
@@ -22,3 +22,7 @@ __export(logger_exports, {
|
|
|
22
22
|
module.exports = __toCommonJS(logger_exports);
|
|
23
23
|
var import_logger = require("@azure/logger");
|
|
24
24
|
const logger = (0, import_logger.createClientLogger)("keyvault-common");
|
|
25
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
26
|
+
0 && (module.exports = {
|
|
27
|
+
logger
|
|
28
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/keyvault-common",
|
|
3
|
-
"version": "2.0.2-alpha.
|
|
3
|
+
"version": "2.0.2-alpha.20260304.2",
|
|
4
4
|
"description": "Common internal functionality for all of the Azure Key Vault clients in the Azure SDK for JavaScript",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"typescript": "~5.9.3",
|
|
52
52
|
"vitest": "^4.0.8",
|
|
53
53
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
54
|
-
"@azure/
|
|
55
|
-
"@azure/
|
|
54
|
+
"@azure/dev-tool": "^1.0.0",
|
|
55
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
56
56
|
},
|
|
57
57
|
"type": "module",
|
|
58
58
|
"exports": {
|