@azure/keyvault-common 2.0.2-alpha.20251231.1 → 2.0.2-alpha.20260106.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.
@@ -0,0 +1,59 @@
1
+ import type { HttpClient, PipelineOptions } from "@azure/core-rest-pipeline";
2
+ import type { AdditionalPolicyConfig } from "@azure-rest/core-client";
3
+ /**
4
+ * The common set of options that high level clients are expected to expose.
5
+ */
6
+ export interface CommonClientOptions extends PipelineOptions {
7
+ /**
8
+ * The HttpClient that will be used to send HTTP requests.
9
+ */
10
+ httpClient?: HttpClient;
11
+ /**
12
+ * Set to true if the request is sent over HTTP instead of HTTPS
13
+ */
14
+ allowInsecureConnection?: boolean;
15
+ /**
16
+ * Additional policies to include in the HTTP pipeline.
17
+ */
18
+ additionalPolicies?: AdditionalPolicyConfig[];
19
+ }
20
+ /**
21
+ * Options for keep alive behavior of HTTP connections.
22
+ */
23
+ export interface KeepAliveOptions {
24
+ /**
25
+ * When true, connections will be kept alive for multiple requests.
26
+ * Defaults to true.
27
+ */
28
+ enable?: boolean;
29
+ }
30
+ /**
31
+ * Options for how redirect responses are handled.
32
+ */
33
+ export interface RedirectOptions {
34
+ /**
35
+ * When true, redirect responses are followed. Defaults to true.
36
+ */
37
+ handleRedirects?: boolean;
38
+ /**
39
+ * The maximum number of times the redirect URL will be tried before
40
+ * failing. Defaults to 20.
41
+ */
42
+ maxRetries?: number;
43
+ }
44
+ /**
45
+ * Extended common client options that include keep alive and redirect options.
46
+ * This type combines the standard CommonClientOptions with additional options
47
+ * for controlling HTTP connection keep-alive and redirect behavior.
48
+ */
49
+ export type ExtendedCommonClientOptions = CommonClientOptions & {
50
+ /**
51
+ * Options to configure keep alive behavior for HTTP connections.
52
+ */
53
+ keepAliveOptions?: KeepAliveOptions;
54
+ /**
55
+ * Options to configure how redirect responses are handled.
56
+ */
57
+ redirectOptions?: RedirectOptions;
58
+ };
59
+ //# sourceMappingURL=extendedClientOptions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extendedClientOptions.d.ts","sourceRoot":"","sources":["../../src/extendedClientOptions.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC7E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAEtE;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D;;OAEG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,kBAAkB,CAAC,EAAE,sBAAsB,EAAE,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;GAIG;AACH,MAAM,MAAM,2BAA2B,GAAG,mBAAmB,GAAG;IAC9D;;OAEG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC;;OAEG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC,CAAC"}
@@ -0,0 +1,4 @@
1
+ // Copyright (c) Microsoft Corporation.
2
+ // Licensed under the MIT License.
3
+ export {};
4
+ //# sourceMappingURL=extendedClientOptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extendedClientOptions.js","sourceRoot":"","sources":["../../src/extendedClientOptions.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { HttpClient, PipelineOptions } from \"@azure/core-rest-pipeline\";\nimport type { AdditionalPolicyConfig } from \"@azure-rest/core-client\";\n\n/**\n * The common set of options that high level clients are expected to expose.\n */\nexport interface CommonClientOptions extends PipelineOptions {\n /**\n * The HttpClient that will be used to send HTTP requests.\n */\n httpClient?: HttpClient;\n /**\n * Set to true if the request is sent over HTTP instead of HTTPS\n */\n allowInsecureConnection?: boolean;\n /**\n * Additional policies to include in the HTTP pipeline.\n */\n additionalPolicies?: AdditionalPolicyConfig[];\n}\n\n/**\n * Options for keep alive behavior of HTTP connections.\n */\nexport interface KeepAliveOptions {\n /**\n * When true, connections will be kept alive for multiple requests.\n * Defaults to true.\n */\n enable?: boolean;\n}\n\n/**\n * Options for how redirect responses are handled.\n */\nexport interface RedirectOptions {\n /**\n * When true, redirect responses are followed. Defaults to true.\n */\n handleRedirects?: boolean;\n\n /**\n * The maximum number of times the redirect URL will be tried before\n * failing. Defaults to 20.\n */\n maxRetries?: number;\n}\n\n/**\n * Extended common client options that include keep alive and redirect options.\n * This type combines the standard CommonClientOptions with additional options\n * for controlling HTTP connection keep-alive and redirect behavior.\n */\nexport type ExtendedCommonClientOptions = CommonClientOptions & {\n /**\n * Options to configure keep alive behavior for HTTP connections.\n */\n keepAliveOptions?: KeepAliveOptions;\n /**\n * Options to configure how redirect responses are handled.\n */\n redirectOptions?: RedirectOptions;\n};\n"]}
@@ -1,3 +1,5 @@
1
1
  export * from "./keyVaultAuthenticationPolicy.js";
2
2
  export * from "./parseKeyVaultIdentifier.js";
3
+ export * from "./extendedClientOptions.js";
4
+ export type { AdditionalPolicyConfig } from "@azure-rest/core-client";
3
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,YAAY,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC"}
@@ -2,4 +2,5 @@
2
2
  // Licensed under the MIT License.
3
3
  export * from "./keyVaultAuthenticationPolicy.js";
4
4
  export * from "./parseKeyVaultIdentifier.js";
5
+ export * from "./extendedClientOptions.js";
5
6
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAElC,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport * from \"./keyVaultAuthenticationPolicy.js\";\nexport * from \"./parseKeyVaultIdentifier.js\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAElC,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport * from \"./keyVaultAuthenticationPolicy.js\";\nexport * from \"./parseKeyVaultIdentifier.js\";\nexport * from \"./extendedClientOptions.js\";\nexport type { AdditionalPolicyConfig } from \"@azure-rest/core-client\";\n"]}
@@ -0,0 +1,59 @@
1
+ import type { HttpClient, PipelineOptions } from "@azure/core-rest-pipeline";
2
+ import type { AdditionalPolicyConfig } from "@azure-rest/core-client";
3
+ /**
4
+ * The common set of options that high level clients are expected to expose.
5
+ */
6
+ export interface CommonClientOptions extends PipelineOptions {
7
+ /**
8
+ * The HttpClient that will be used to send HTTP requests.
9
+ */
10
+ httpClient?: HttpClient;
11
+ /**
12
+ * Set to true if the request is sent over HTTP instead of HTTPS
13
+ */
14
+ allowInsecureConnection?: boolean;
15
+ /**
16
+ * Additional policies to include in the HTTP pipeline.
17
+ */
18
+ additionalPolicies?: AdditionalPolicyConfig[];
19
+ }
20
+ /**
21
+ * Options for keep alive behavior of HTTP connections.
22
+ */
23
+ export interface KeepAliveOptions {
24
+ /**
25
+ * When true, connections will be kept alive for multiple requests.
26
+ * Defaults to true.
27
+ */
28
+ enable?: boolean;
29
+ }
30
+ /**
31
+ * Options for how redirect responses are handled.
32
+ */
33
+ export interface RedirectOptions {
34
+ /**
35
+ * When true, redirect responses are followed. Defaults to true.
36
+ */
37
+ handleRedirects?: boolean;
38
+ /**
39
+ * The maximum number of times the redirect URL will be tried before
40
+ * failing. Defaults to 20.
41
+ */
42
+ maxRetries?: number;
43
+ }
44
+ /**
45
+ * Extended common client options that include keep alive and redirect options.
46
+ * This type combines the standard CommonClientOptions with additional options
47
+ * for controlling HTTP connection keep-alive and redirect behavior.
48
+ */
49
+ export type ExtendedCommonClientOptions = CommonClientOptions & {
50
+ /**
51
+ * Options to configure keep alive behavior for HTTP connections.
52
+ */
53
+ keepAliveOptions?: KeepAliveOptions;
54
+ /**
55
+ * Options to configure how redirect responses are handled.
56
+ */
57
+ redirectOptions?: RedirectOptions;
58
+ };
59
+ //# sourceMappingURL=extendedClientOptions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extendedClientOptions.d.ts","sourceRoot":"","sources":["../../src/extendedClientOptions.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC7E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAEtE;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D;;OAEG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,kBAAkB,CAAC,EAAE,sBAAsB,EAAE,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;GAIG;AACH,MAAM,MAAM,2BAA2B,GAAG,mBAAmB,GAAG;IAC9D;;OAEG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC;;OAEG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC,CAAC"}
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ // Copyright (c) Microsoft Corporation.
3
+ // Licensed under the MIT License.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ //# sourceMappingURL=extendedClientOptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extendedClientOptions.js","sourceRoot":"","sources":["../../src/extendedClientOptions.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { HttpClient, PipelineOptions } from \"@azure/core-rest-pipeline\";\nimport type { AdditionalPolicyConfig } from \"@azure-rest/core-client\";\n\n/**\n * The common set of options that high level clients are expected to expose.\n */\nexport interface CommonClientOptions extends PipelineOptions {\n /**\n * The HttpClient that will be used to send HTTP requests.\n */\n httpClient?: HttpClient;\n /**\n * Set to true if the request is sent over HTTP instead of HTTPS\n */\n allowInsecureConnection?: boolean;\n /**\n * Additional policies to include in the HTTP pipeline.\n */\n additionalPolicies?: AdditionalPolicyConfig[];\n}\n\n/**\n * Options for keep alive behavior of HTTP connections.\n */\nexport interface KeepAliveOptions {\n /**\n * When true, connections will be kept alive for multiple requests.\n * Defaults to true.\n */\n enable?: boolean;\n}\n\n/**\n * Options for how redirect responses are handled.\n */\nexport interface RedirectOptions {\n /**\n * When true, redirect responses are followed. Defaults to true.\n */\n handleRedirects?: boolean;\n\n /**\n * The maximum number of times the redirect URL will be tried before\n * failing. Defaults to 20.\n */\n maxRetries?: number;\n}\n\n/**\n * Extended common client options that include keep alive and redirect options.\n * This type combines the standard CommonClientOptions with additional options\n * for controlling HTTP connection keep-alive and redirect behavior.\n */\nexport type ExtendedCommonClientOptions = CommonClientOptions & {\n /**\n * Options to configure keep alive behavior for HTTP connections.\n */\n keepAliveOptions?: KeepAliveOptions;\n /**\n * Options to configure how redirect responses are handled.\n */\n redirectOptions?: RedirectOptions;\n};\n"]}
@@ -1,3 +1,5 @@
1
1
  export * from "./keyVaultAuthenticationPolicy.js";
2
2
  export * from "./parseKeyVaultIdentifier.js";
3
+ export * from "./extendedClientOptions.js";
4
+ export type { AdditionalPolicyConfig } from "@azure-rest/core-client";
3
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,YAAY,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC"}
@@ -5,4 +5,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
5
5
  const tslib_1 = require("tslib");
6
6
  tslib_1.__exportStar(require("./keyVaultAuthenticationPolicy.js"), exports);
7
7
  tslib_1.__exportStar(require("./parseKeyVaultIdentifier.js"), exports);
8
+ tslib_1.__exportStar(require("./extendedClientOptions.js"), exports);
8
9
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAElC,4EAAkD;AAClD,uEAA6C","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport * from \"./keyVaultAuthenticationPolicy.js\";\nexport * from \"./parseKeyVaultIdentifier.js\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAElC,4EAAkD;AAClD,uEAA6C;AAC7C,qEAA2C","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport * from \"./keyVaultAuthenticationPolicy.js\";\nexport * from \"./parseKeyVaultIdentifier.js\";\nexport * from \"./extendedClientOptions.js\";\nexport type { AdditionalPolicyConfig } from \"@azure-rest/core-client\";\n"]}
@@ -0,0 +1,59 @@
1
+ import type { HttpClient, PipelineOptions } from "@azure/core-rest-pipeline";
2
+ import type { AdditionalPolicyConfig } from "@azure-rest/core-client";
3
+ /**
4
+ * The common set of options that high level clients are expected to expose.
5
+ */
6
+ export interface CommonClientOptions extends PipelineOptions {
7
+ /**
8
+ * The HttpClient that will be used to send HTTP requests.
9
+ */
10
+ httpClient?: HttpClient;
11
+ /**
12
+ * Set to true if the request is sent over HTTP instead of HTTPS
13
+ */
14
+ allowInsecureConnection?: boolean;
15
+ /**
16
+ * Additional policies to include in the HTTP pipeline.
17
+ */
18
+ additionalPolicies?: AdditionalPolicyConfig[];
19
+ }
20
+ /**
21
+ * Options for keep alive behavior of HTTP connections.
22
+ */
23
+ export interface KeepAliveOptions {
24
+ /**
25
+ * When true, connections will be kept alive for multiple requests.
26
+ * Defaults to true.
27
+ */
28
+ enable?: boolean;
29
+ }
30
+ /**
31
+ * Options for how redirect responses are handled.
32
+ */
33
+ export interface RedirectOptions {
34
+ /**
35
+ * When true, redirect responses are followed. Defaults to true.
36
+ */
37
+ handleRedirects?: boolean;
38
+ /**
39
+ * The maximum number of times the redirect URL will be tried before
40
+ * failing. Defaults to 20.
41
+ */
42
+ maxRetries?: number;
43
+ }
44
+ /**
45
+ * Extended common client options that include keep alive and redirect options.
46
+ * This type combines the standard CommonClientOptions with additional options
47
+ * for controlling HTTP connection keep-alive and redirect behavior.
48
+ */
49
+ export type ExtendedCommonClientOptions = CommonClientOptions & {
50
+ /**
51
+ * Options to configure keep alive behavior for HTTP connections.
52
+ */
53
+ keepAliveOptions?: KeepAliveOptions;
54
+ /**
55
+ * Options to configure how redirect responses are handled.
56
+ */
57
+ redirectOptions?: RedirectOptions;
58
+ };
59
+ //# sourceMappingURL=extendedClientOptions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extendedClientOptions.d.ts","sourceRoot":"","sources":["../../src/extendedClientOptions.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC7E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAEtE;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D;;OAEG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC;;OAEG;IACH,kBAAkB,CAAC,EAAE,sBAAsB,EAAE,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;GAIG;AACH,MAAM,MAAM,2BAA2B,GAAG,mBAAmB,GAAG;IAC9D;;OAEG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC;;OAEG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC,CAAC"}
@@ -0,0 +1,4 @@
1
+ // Copyright (c) Microsoft Corporation.
2
+ // Licensed under the MIT License.
3
+ export {};
4
+ //# sourceMappingURL=extendedClientOptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extendedClientOptions.js","sourceRoot":"","sources":["../../src/extendedClientOptions.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { HttpClient, PipelineOptions } from \"@azure/core-rest-pipeline\";\nimport type { AdditionalPolicyConfig } from \"@azure-rest/core-client\";\n\n/**\n * The common set of options that high level clients are expected to expose.\n */\nexport interface CommonClientOptions extends PipelineOptions {\n /**\n * The HttpClient that will be used to send HTTP requests.\n */\n httpClient?: HttpClient;\n /**\n * Set to true if the request is sent over HTTP instead of HTTPS\n */\n allowInsecureConnection?: boolean;\n /**\n * Additional policies to include in the HTTP pipeline.\n */\n additionalPolicies?: AdditionalPolicyConfig[];\n}\n\n/**\n * Options for keep alive behavior of HTTP connections.\n */\nexport interface KeepAliveOptions {\n /**\n * When true, connections will be kept alive for multiple requests.\n * Defaults to true.\n */\n enable?: boolean;\n}\n\n/**\n * Options for how redirect responses are handled.\n */\nexport interface RedirectOptions {\n /**\n * When true, redirect responses are followed. Defaults to true.\n */\n handleRedirects?: boolean;\n\n /**\n * The maximum number of times the redirect URL will be tried before\n * failing. Defaults to 20.\n */\n maxRetries?: number;\n}\n\n/**\n * Extended common client options that include keep alive and redirect options.\n * This type combines the standard CommonClientOptions with additional options\n * for controlling HTTP connection keep-alive and redirect behavior.\n */\nexport type ExtendedCommonClientOptions = CommonClientOptions & {\n /**\n * Options to configure keep alive behavior for HTTP connections.\n */\n keepAliveOptions?: KeepAliveOptions;\n /**\n * Options to configure how redirect responses are handled.\n */\n redirectOptions?: RedirectOptions;\n};\n"]}
@@ -1,3 +1,5 @@
1
1
  export * from "./keyVaultAuthenticationPolicy.js";
2
2
  export * from "./parseKeyVaultIdentifier.js";
3
+ export * from "./extendedClientOptions.js";
4
+ export type { AdditionalPolicyConfig } from "@azure-rest/core-client";
3
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,YAAY,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC"}
package/dist/esm/index.js CHANGED
@@ -2,4 +2,5 @@
2
2
  // Licensed under the MIT License.
3
3
  export * from "./keyVaultAuthenticationPolicy.js";
4
4
  export * from "./parseKeyVaultIdentifier.js";
5
+ export * from "./extendedClientOptions.js";
5
6
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAElC,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport * from \"./keyVaultAuthenticationPolicy.js\";\nexport * from \"./parseKeyVaultIdentifier.js\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAElC,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport * from \"./keyVaultAuthenticationPolicy.js\";\nexport * from \"./parseKeyVaultIdentifier.js\";\nexport * from \"./extendedClientOptions.js\";\nexport type { AdditionalPolicyConfig } from \"@azure-rest/core-client\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/keyvault-common",
3
- "version": "2.0.2-alpha.20251231.1",
3
+ "version": "2.0.2-alpha.20260106.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",
@@ -30,9 +30,9 @@
30
30
  "sideEffects": false,
31
31
  "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
32
32
  "dependencies": {
33
+ "@azure-rest/core-client": ">=2.5.2-alpha <2.5.2-alphb",
33
34
  "@azure/abort-controller": ">=2.1.3-alpha <2.1.3-alphb",
34
35
  "@azure/core-auth": ">=1.10.2-alpha <1.10.2-alphb",
35
- "@azure/core-client": ">=1.10.2-alpha <1.10.2-alphb",
36
36
  "@azure/core-rest-pipeline": ">=1.22.3-alpha <1.22.3-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",
@@ -52,8 +52,8 @@
52
52
  "typescript": "~5.9.3",
53
53
  "vitest": "^4.0.8",
54
54
  "@azure-tools/test-utils-vitest": "^2.0.1",
55
- "@azure/eslint-plugin-azure-sdk": "^3.0.0",
56
- "@azure/dev-tool": "^1.0.0"
55
+ "@azure/dev-tool": "^1.0.0",
56
+ "@azure/eslint-plugin-azure-sdk": "^3.0.0"
57
57
  },
58
58
  "type": "module",
59
59
  "tshy": {