@lwshen/vault-hub-ts-fetch-client 1.4.3 → 1.4.5

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.
Files changed (110) hide show
  1. package/README.md +2 -2
  2. package/dist/apis/APIKeyApi.d.ts +1 -1
  3. package/dist/apis/APIKeyApi.js +1 -1
  4. package/dist/apis/AuditApi.d.ts +1 -1
  5. package/dist/apis/AuditApi.js +1 -1
  6. package/dist/apis/AuthApi.d.ts +1 -1
  7. package/dist/apis/AuthApi.js +1 -1
  8. package/dist/apis/CliApi.d.ts +5 -3
  9. package/dist/apis/CliApi.js +11 -5
  10. package/dist/apis/ConfigApi.d.ts +1 -1
  11. package/dist/apis/ConfigApi.js +1 -1
  12. package/dist/apis/DefaultApi.d.ts +1 -1
  13. package/dist/apis/DefaultApi.js +1 -1
  14. package/dist/apis/StatusApi.d.ts +1 -1
  15. package/dist/apis/StatusApi.js +1 -1
  16. package/dist/apis/UserApi.d.ts +1 -1
  17. package/dist/apis/UserApi.js +1 -1
  18. package/dist/apis/VaultApi.d.ts +1 -1
  19. package/dist/apis/VaultApi.js +1 -1
  20. package/dist/models/APIKeysResponse.d.ts +1 -1
  21. package/dist/models/APIKeysResponse.js +1 -1
  22. package/dist/models/AuditLog.d.ts +1 -1
  23. package/dist/models/AuditLog.js +1 -1
  24. package/dist/models/AuditLogsResponse.d.ts +1 -1
  25. package/dist/models/AuditLogsResponse.js +1 -1
  26. package/dist/models/AuditMetricsResponse.d.ts +1 -1
  27. package/dist/models/AuditMetricsResponse.js +1 -1
  28. package/dist/models/ConfigResponse.d.ts +1 -1
  29. package/dist/models/ConfigResponse.js +1 -1
  30. package/dist/models/CreateAPIKeyRequest.d.ts +1 -1
  31. package/dist/models/CreateAPIKeyRequest.js +1 -1
  32. package/dist/models/CreateAPIKeyResponse.d.ts +1 -1
  33. package/dist/models/CreateAPIKeyResponse.js +1 -1
  34. package/dist/models/CreateVaultRequest.d.ts +1 -1
  35. package/dist/models/CreateVaultRequest.js +1 -1
  36. package/dist/models/EmailTokenResponse.d.ts +1 -1
  37. package/dist/models/EmailTokenResponse.js +1 -1
  38. package/dist/models/EnableClientEncryption.d.ts +1 -1
  39. package/dist/models/EnableClientEncryption.js +1 -1
  40. package/dist/models/GetUserResponse.d.ts +1 -1
  41. package/dist/models/GetUserResponse.js +1 -1
  42. package/dist/models/HealthCheckResponse.d.ts +1 -1
  43. package/dist/models/HealthCheckResponse.js +1 -1
  44. package/dist/models/LoginRequest.d.ts +1 -1
  45. package/dist/models/LoginRequest.js +1 -1
  46. package/dist/models/LoginResponse.d.ts +1 -1
  47. package/dist/models/LoginResponse.js +1 -1
  48. package/dist/models/MagicLinkRequest.d.ts +1 -1
  49. package/dist/models/MagicLinkRequest.js +1 -1
  50. package/dist/models/PasswordResetConfirmRequest.d.ts +1 -1
  51. package/dist/models/PasswordResetConfirmRequest.js +1 -1
  52. package/dist/models/PasswordResetRequest.d.ts +1 -1
  53. package/dist/models/PasswordResetRequest.js +1 -1
  54. package/dist/models/SignupRequest.d.ts +1 -1
  55. package/dist/models/SignupRequest.js +1 -1
  56. package/dist/models/SignupResponse.d.ts +1 -1
  57. package/dist/models/SignupResponse.js +1 -1
  58. package/dist/models/StatusResponse.d.ts +1 -1
  59. package/dist/models/StatusResponse.js +1 -1
  60. package/dist/models/UpdateAPIKeyRequest.d.ts +1 -1
  61. package/dist/models/UpdateAPIKeyRequest.js +1 -1
  62. package/dist/models/UpdateVaultRequest.d.ts +1 -1
  63. package/dist/models/UpdateVaultRequest.js +1 -1
  64. package/dist/models/Vault.d.ts +1 -1
  65. package/dist/models/Vault.js +1 -1
  66. package/dist/models/VaultAPIKey.d.ts +1 -1
  67. package/dist/models/VaultAPIKey.js +1 -1
  68. package/dist/models/VaultLite.d.ts +1 -1
  69. package/dist/models/VaultLite.js +1 -1
  70. package/dist/models/VaultsResponse.d.ts +1 -1
  71. package/dist/models/VaultsResponse.js +1 -1
  72. package/dist/runtime.d.ts +1 -1
  73. package/dist/runtime.js +1 -1
  74. package/package.json +1 -1
  75. package/src/apis/APIKeyApi.ts +1 -1
  76. package/src/apis/AuditApi.ts +1 -1
  77. package/src/apis/AuthApi.ts +1 -1
  78. package/src/apis/CliApi.ts +15 -5
  79. package/src/apis/ConfigApi.ts +1 -1
  80. package/src/apis/DefaultApi.ts +1 -1
  81. package/src/apis/StatusApi.ts +1 -1
  82. package/src/apis/UserApi.ts +1 -1
  83. package/src/apis/VaultApi.ts +1 -1
  84. package/src/models/APIKeysResponse.ts +1 -1
  85. package/src/models/AuditLog.ts +1 -1
  86. package/src/models/AuditLogsResponse.ts +1 -1
  87. package/src/models/AuditMetricsResponse.ts +1 -1
  88. package/src/models/ConfigResponse.ts +1 -1
  89. package/src/models/CreateAPIKeyRequest.ts +1 -1
  90. package/src/models/CreateAPIKeyResponse.ts +1 -1
  91. package/src/models/CreateVaultRequest.ts +1 -1
  92. package/src/models/EmailTokenResponse.ts +1 -1
  93. package/src/models/EnableClientEncryption.ts +1 -1
  94. package/src/models/GetUserResponse.ts +1 -1
  95. package/src/models/HealthCheckResponse.ts +1 -1
  96. package/src/models/LoginRequest.ts +1 -1
  97. package/src/models/LoginResponse.ts +1 -1
  98. package/src/models/MagicLinkRequest.ts +1 -1
  99. package/src/models/PasswordResetConfirmRequest.ts +1 -1
  100. package/src/models/PasswordResetRequest.ts +1 -1
  101. package/src/models/SignupRequest.ts +1 -1
  102. package/src/models/SignupResponse.ts +1 -1
  103. package/src/models/StatusResponse.ts +1 -1
  104. package/src/models/UpdateAPIKeyRequest.ts +1 -1
  105. package/src/models/UpdateVaultRequest.ts +1 -1
  106. package/src/models/Vault.ts +1 -1
  107. package/src/models/VaultAPIKey.ts +1 -1
  108. package/src/models/VaultLite.ts +1 -1
  109. package/src/models/VaultsResponse.ts +1 -1
  110. package/src/runtime.ts +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @lwshen/vault-hub-ts-fetch-client@v1.4.3
1
+ ## @lwshen/vault-hub-ts-fetch-client@v1.4.5
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @lwshen/vault-hub-ts-fetch-client@v1.4.3 --save
39
+ npm install @lwshen/vault-hub-ts-fetch-client@v1.4.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,9 +13,11 @@ import * as runtime from '../runtime';
13
13
  import type { Vault, VaultLite } from '../models/index';
14
14
  export interface GetVaultByAPIKeyRequest {
15
15
  uniqueId: string;
16
+ xEnableClientEncryption?: string;
16
17
  }
17
18
  export interface GetVaultByNameAPIKeyRequest {
18
19
  name: string;
20
+ xEnableClientEncryption?: string;
19
21
  }
20
22
  /**
21
23
  *
@@ -28,7 +30,7 @@ export declare class CliApi extends runtime.BaseAPI {
28
30
  /**
29
31
  * Get a specific vault by Unique ID using API key
30
32
  */
31
- getVaultByAPIKey(uniqueId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Vault>;
33
+ getVaultByAPIKey(uniqueId: string, xEnableClientEncryption?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Vault>;
32
34
  /**
33
35
  * Get a specific vault by name using API key
34
36
  */
@@ -36,7 +38,7 @@ export declare class CliApi extends runtime.BaseAPI {
36
38
  /**
37
39
  * Get a specific vault by name using API key
38
40
  */
39
- getVaultByNameAPIKey(name: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Vault>;
41
+ getVaultByNameAPIKey(name: string, xEnableClientEncryption?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Vault>;
40
42
  /**
41
43
  * Get all vaults accessible by API key
42
44
  */
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -89,6 +89,9 @@ var CliApi = /** @class */ (function (_super) {
89
89
  }
90
90
  queryParameters = {};
91
91
  headerParameters = {};
92
+ if (requestParameters['xEnableClientEncryption'] != null) {
93
+ headerParameters['X-Enable-Client-Encryption'] = String(requestParameters['xEnableClientEncryption']);
94
+ }
92
95
  return [4 /*yield*/, this.request({
93
96
  path: "/api/cli/vault/{uniqueId}".replace("{".concat("uniqueId", "}"), encodeURIComponent(String(requestParameters['uniqueId']))),
94
97
  method: 'GET',
@@ -105,12 +108,12 @@ var CliApi = /** @class */ (function (_super) {
105
108
  /**
106
109
  * Get a specific vault by Unique ID using API key
107
110
  */
108
- CliApi.prototype.getVaultByAPIKey = function (uniqueId, initOverrides) {
111
+ CliApi.prototype.getVaultByAPIKey = function (uniqueId, xEnableClientEncryption, initOverrides) {
109
112
  return __awaiter(this, void 0, void 0, function () {
110
113
  var response;
111
114
  return __generator(this, function (_a) {
112
115
  switch (_a.label) {
113
- case 0: return [4 /*yield*/, this.getVaultByAPIKeyRaw({ uniqueId: uniqueId }, initOverrides)];
116
+ case 0: return [4 /*yield*/, this.getVaultByAPIKeyRaw({ uniqueId: uniqueId, xEnableClientEncryption: xEnableClientEncryption }, initOverrides)];
114
117
  case 1:
115
118
  response = _a.sent();
116
119
  return [4 /*yield*/, response.value()];
@@ -133,6 +136,9 @@ var CliApi = /** @class */ (function (_super) {
133
136
  }
134
137
  queryParameters = {};
135
138
  headerParameters = {};
139
+ if (requestParameters['xEnableClientEncryption'] != null) {
140
+ headerParameters['X-Enable-Client-Encryption'] = String(requestParameters['xEnableClientEncryption']);
141
+ }
136
142
  return [4 /*yield*/, this.request({
137
143
  path: "/api/cli/vault/name/{name}".replace("{".concat("name", "}"), encodeURIComponent(String(requestParameters['name']))),
138
144
  method: 'GET',
@@ -149,12 +155,12 @@ var CliApi = /** @class */ (function (_super) {
149
155
  /**
150
156
  * Get a specific vault by name using API key
151
157
  */
152
- CliApi.prototype.getVaultByNameAPIKey = function (name, initOverrides) {
158
+ CliApi.prototype.getVaultByNameAPIKey = function (name, xEnableClientEncryption, initOverrides) {
153
159
  return __awaiter(this, void 0, void 0, function () {
154
160
  var response;
155
161
  return __generator(this, function (_a) {
156
162
  switch (_a.label) {
157
- case 0: return [4 /*yield*/, this.getVaultByNameAPIKeyRaw({ name: name }, initOverrides)];
163
+ case 0: return [4 /*yield*/, this.getVaultByNameAPIKeyRaw({ name: name, xEnableClientEncryption: xEnableClientEncryption }, initOverrides)];
158
164
  case 1:
159
165
  response = _a.sent();
160
166
  return [4 /*yield*/, response.value()];
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Vault Hub Server
6
6
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
  *
8
- * The version of the OpenAPI document: 1.0.5
8
+ * The version of the OpenAPI document: 1.0.6
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Vault Hub Server
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: 1.0.5
5
+ * The version of the OpenAPI document: 1.0.6
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).