@azure/keyvault-common 2.0.2-alpha.20260303.1 → 2.0.2-alpha.20260305.1

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.
@@ -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
+ });
@@ -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
+ });
@@ -53,3 +53,7 @@ function parseKeyVaultIdentifier(collection, identifier) {
53
53
  version
54
54
  };
55
55
  }
56
+ // Annotate the CommonJS export names for ESM import in node:
57
+ 0 && (module.exports = {
58
+ parseKeyVaultIdentifier
59
+ });
@@ -52,3 +52,7 @@ function parseWWWAuthenticateHeader(headerValue) {
52
52
  }
53
53
  return parsed;
54
54
  }
55
+ // Annotate the CommonJS export names for ESM import in node:
56
+ 0 && (module.exports = {
57
+ parseWWWAuthenticateHeader
58
+ });
@@ -127,3 +127,8 @@ function createTokenCycler(credential, tokenCyclerOptions) {
127
127
  return token;
128
128
  };
129
129
  }
130
+ // Annotate the CommonJS export names for ESM import in node:
131
+ 0 && (module.exports = {
132
+ DEFAULT_CYCLER_OPTIONS,
133
+ createTokenCycler
134
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/keyvault-common",
3
- "version": "2.0.2-alpha.20260303.1",
3
+ "version": "2.0.2-alpha.20260305.1",
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",
@@ -33,7 +33,7 @@
33
33
  "@azure-rest/core-client": ">=2.5.2-alpha <2.5.2-alphb",
34
34
  "@azure/abort-controller": ">=2.1.3-alpha <2.1.3-alphb",
35
35
  "@azure/core-auth": ">=1.10.2-alpha <1.10.2-alphb",
36
- "@azure/core-rest-pipeline": ">=1.23.0-alpha <1.23.0-alphb",
36
+ "@azure/core-rest-pipeline": ">=1.23.1-alpha <1.23.1-alphb",
37
37
  "@azure/core-tracing": ">=1.3.2-alpha <1.3.2-alphb",
38
38
  "@azure/core-util": ">=1.13.2-alpha <1.13.2-alphb",
39
39
  "@azure/logger": ">=1.3.1-alpha <1.3.1-alphb",
@@ -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/eslint-plugin-azure-sdk": "^3.0.0",
55
- "@azure/dev-tool": "^1.0.0"
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": {