@lwshen/vault-hub-ts-fetch-client 0.20251014.91035 → 0.20251014.163009

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 (108) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/README.md +2 -2
  3. package/dist/apis/APIKeyApi.d.ts +1 -1
  4. package/dist/apis/APIKeyApi.js +1 -1
  5. package/dist/apis/AuditApi.d.ts +1 -1
  6. package/dist/apis/AuditApi.js +1 -1
  7. package/dist/apis/AuthApi.d.ts +46 -2
  8. package/dist/apis/AuthApi.js +178 -1
  9. package/dist/apis/CliApi.d.ts +1 -1
  10. package/dist/apis/CliApi.js +1 -1
  11. package/dist/apis/ConfigApi.d.ts +1 -1
  12. package/dist/apis/ConfigApi.js +1 -1
  13. package/dist/apis/DefaultApi.d.ts +1 -1
  14. package/dist/apis/DefaultApi.js +1 -1
  15. package/dist/apis/StatusApi.d.ts +1 -1
  16. package/dist/apis/StatusApi.js +1 -1
  17. package/dist/apis/UserApi.d.ts +1 -1
  18. package/dist/apis/UserApi.js +1 -1
  19. package/dist/apis/VaultApi.d.ts +1 -1
  20. package/dist/apis/VaultApi.js +1 -1
  21. package/dist/models/APIKeysResponse.d.ts +1 -1
  22. package/dist/models/APIKeysResponse.js +1 -1
  23. package/dist/models/AuditLog.d.ts +1 -1
  24. package/dist/models/AuditLog.js +1 -1
  25. package/dist/models/AuditLogsResponse.d.ts +1 -1
  26. package/dist/models/AuditLogsResponse.js +1 -1
  27. package/dist/models/AuditMetricsResponse.d.ts +1 -1
  28. package/dist/models/AuditMetricsResponse.js +1 -1
  29. package/dist/models/ConfigResponse.d.ts +1 -1
  30. package/dist/models/ConfigResponse.js +1 -1
  31. package/dist/models/CreateAPIKeyRequest.d.ts +1 -1
  32. package/dist/models/CreateAPIKeyRequest.js +1 -1
  33. package/dist/models/CreateAPIKeyResponse.d.ts +1 -1
  34. package/dist/models/CreateAPIKeyResponse.js +1 -1
  35. package/dist/models/CreateVaultRequest.d.ts +1 -1
  36. package/dist/models/CreateVaultRequest.js +1 -1
  37. package/dist/models/EnableClientEncryption.d.ts +1 -1
  38. package/dist/models/EnableClientEncryption.js +1 -1
  39. package/dist/models/GetUserResponse.d.ts +1 -1
  40. package/dist/models/GetUserResponse.js +1 -1
  41. package/dist/models/HealthCheckResponse.d.ts +1 -1
  42. package/dist/models/HealthCheckResponse.js +1 -1
  43. package/dist/models/LoginRequest.d.ts +1 -1
  44. package/dist/models/LoginRequest.js +1 -1
  45. package/dist/models/LoginResponse.d.ts +1 -1
  46. package/dist/models/LoginResponse.js +1 -1
  47. package/dist/models/MagicLinkRequest.d.ts +32 -0
  48. package/dist/models/MagicLinkRequest.js +51 -0
  49. package/dist/models/PasswordResetConfirmRequest.d.ts +38 -0
  50. package/dist/models/PasswordResetConfirmRequest.js +55 -0
  51. package/dist/models/PasswordResetRequest.d.ts +32 -0
  52. package/dist/models/PasswordResetRequest.js +51 -0
  53. package/dist/models/SignupRequest.d.ts +1 -1
  54. package/dist/models/SignupRequest.js +1 -1
  55. package/dist/models/SignupResponse.d.ts +1 -1
  56. package/dist/models/SignupResponse.js +1 -1
  57. package/dist/models/StatusResponse.d.ts +1 -1
  58. package/dist/models/StatusResponse.js +1 -1
  59. package/dist/models/UpdateAPIKeyRequest.d.ts +1 -1
  60. package/dist/models/UpdateAPIKeyRequest.js +1 -1
  61. package/dist/models/UpdateVaultRequest.d.ts +1 -1
  62. package/dist/models/UpdateVaultRequest.js +1 -1
  63. package/dist/models/Vault.d.ts +1 -1
  64. package/dist/models/Vault.js +1 -1
  65. package/dist/models/VaultAPIKey.d.ts +1 -1
  66. package/dist/models/VaultAPIKey.js +1 -1
  67. package/dist/models/VaultLite.d.ts +1 -1
  68. package/dist/models/VaultLite.js +1 -1
  69. package/dist/models/index.d.ts +3 -0
  70. package/dist/models/index.js +3 -0
  71. package/dist/runtime.d.ts +1 -1
  72. package/dist/runtime.js +1 -1
  73. package/package.json +1 -1
  74. package/src/apis/APIKeyApi.ts +1 -1
  75. package/src/apis/AuditApi.ts +1 -1
  76. package/src/apis/AuthApi.ts +167 -1
  77. package/src/apis/CliApi.ts +1 -1
  78. package/src/apis/ConfigApi.ts +1 -1
  79. package/src/apis/DefaultApi.ts +1 -1
  80. package/src/apis/StatusApi.ts +1 -1
  81. package/src/apis/UserApi.ts +1 -1
  82. package/src/apis/VaultApi.ts +1 -1
  83. package/src/models/APIKeysResponse.ts +1 -1
  84. package/src/models/AuditLog.ts +1 -1
  85. package/src/models/AuditLogsResponse.ts +1 -1
  86. package/src/models/AuditMetricsResponse.ts +1 -1
  87. package/src/models/ConfigResponse.ts +1 -1
  88. package/src/models/CreateAPIKeyRequest.ts +1 -1
  89. package/src/models/CreateAPIKeyResponse.ts +1 -1
  90. package/src/models/CreateVaultRequest.ts +1 -1
  91. package/src/models/EnableClientEncryption.ts +1 -1
  92. package/src/models/GetUserResponse.ts +1 -1
  93. package/src/models/HealthCheckResponse.ts +1 -1
  94. package/src/models/LoginRequest.ts +1 -1
  95. package/src/models/LoginResponse.ts +1 -1
  96. package/src/models/MagicLinkRequest.ts +66 -0
  97. package/src/models/PasswordResetConfirmRequest.ts +75 -0
  98. package/src/models/PasswordResetRequest.ts +66 -0
  99. package/src/models/SignupRequest.ts +1 -1
  100. package/src/models/SignupResponse.ts +1 -1
  101. package/src/models/StatusResponse.ts +1 -1
  102. package/src/models/UpdateAPIKeyRequest.ts +1 -1
  103. package/src/models/UpdateVaultRequest.ts +1 -1
  104. package/src/models/Vault.ts +1 -1
  105. package/src/models/VaultAPIKey.ts +1 -1
  106. package/src/models/VaultLite.ts +1 -1
  107. package/src/models/index.ts +3 -0
  108. package/src/runtime.ts +1 -1
@@ -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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Vault Hub Server
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.2
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface MagicLinkRequest
16
+ */
17
+ export interface MagicLinkRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof MagicLinkRequest
22
+ */
23
+ email: string;
24
+ }
25
+ /**
26
+ * Check if a given object implements the MagicLinkRequest interface.
27
+ */
28
+ export declare function instanceOfMagicLinkRequest(value: object): value is MagicLinkRequest;
29
+ export declare function MagicLinkRequestFromJSON(json: any): MagicLinkRequest;
30
+ export declare function MagicLinkRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MagicLinkRequest;
31
+ export declare function MagicLinkRequestToJSON(json: any): MagicLinkRequest;
32
+ export declare function MagicLinkRequestToJSONTyped(value?: MagicLinkRequest | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Vault Hub Server
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 1.0.2
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfMagicLinkRequest = instanceOfMagicLinkRequest;
17
+ exports.MagicLinkRequestFromJSON = MagicLinkRequestFromJSON;
18
+ exports.MagicLinkRequestFromJSONTyped = MagicLinkRequestFromJSONTyped;
19
+ exports.MagicLinkRequestToJSON = MagicLinkRequestToJSON;
20
+ exports.MagicLinkRequestToJSONTyped = MagicLinkRequestToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the MagicLinkRequest interface.
23
+ */
24
+ function instanceOfMagicLinkRequest(value) {
25
+ if (!('email' in value) || value['email'] === undefined)
26
+ return false;
27
+ return true;
28
+ }
29
+ function MagicLinkRequestFromJSON(json) {
30
+ return MagicLinkRequestFromJSONTyped(json, false);
31
+ }
32
+ function MagicLinkRequestFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'email': json['email'],
38
+ };
39
+ }
40
+ function MagicLinkRequestToJSON(json) {
41
+ return MagicLinkRequestToJSONTyped(json, false);
42
+ }
43
+ function MagicLinkRequestToJSONTyped(value, ignoreDiscriminator) {
44
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'email': value['email'],
50
+ };
51
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Vault Hub Server
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.2
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PasswordResetConfirmRequest
16
+ */
17
+ export interface PasswordResetConfirmRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof PasswordResetConfirmRequest
22
+ */
23
+ token: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PasswordResetConfirmRequest
28
+ */
29
+ newPassword: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the PasswordResetConfirmRequest interface.
33
+ */
34
+ export declare function instanceOfPasswordResetConfirmRequest(value: object): value is PasswordResetConfirmRequest;
35
+ export declare function PasswordResetConfirmRequestFromJSON(json: any): PasswordResetConfirmRequest;
36
+ export declare function PasswordResetConfirmRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordResetConfirmRequest;
37
+ export declare function PasswordResetConfirmRequestToJSON(json: any): PasswordResetConfirmRequest;
38
+ export declare function PasswordResetConfirmRequestToJSONTyped(value?: PasswordResetConfirmRequest | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Vault Hub Server
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 1.0.2
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfPasswordResetConfirmRequest = instanceOfPasswordResetConfirmRequest;
17
+ exports.PasswordResetConfirmRequestFromJSON = PasswordResetConfirmRequestFromJSON;
18
+ exports.PasswordResetConfirmRequestFromJSONTyped = PasswordResetConfirmRequestFromJSONTyped;
19
+ exports.PasswordResetConfirmRequestToJSON = PasswordResetConfirmRequestToJSON;
20
+ exports.PasswordResetConfirmRequestToJSONTyped = PasswordResetConfirmRequestToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the PasswordResetConfirmRequest interface.
23
+ */
24
+ function instanceOfPasswordResetConfirmRequest(value) {
25
+ if (!('token' in value) || value['token'] === undefined)
26
+ return false;
27
+ if (!('newPassword' in value) || value['newPassword'] === undefined)
28
+ return false;
29
+ return true;
30
+ }
31
+ function PasswordResetConfirmRequestFromJSON(json) {
32
+ return PasswordResetConfirmRequestFromJSONTyped(json, false);
33
+ }
34
+ function PasswordResetConfirmRequestFromJSONTyped(json, ignoreDiscriminator) {
35
+ if (json == null) {
36
+ return json;
37
+ }
38
+ return {
39
+ 'token': json['token'],
40
+ 'newPassword': json['newPassword'],
41
+ };
42
+ }
43
+ function PasswordResetConfirmRequestToJSON(json) {
44
+ return PasswordResetConfirmRequestToJSONTyped(json, false);
45
+ }
46
+ function PasswordResetConfirmRequestToJSONTyped(value, ignoreDiscriminator) {
47
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
48
+ if (value == null) {
49
+ return value;
50
+ }
51
+ return {
52
+ 'token': value['token'],
53
+ 'newPassword': value['newPassword'],
54
+ };
55
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Vault Hub Server
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.2
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PasswordResetRequest
16
+ */
17
+ export interface PasswordResetRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof PasswordResetRequest
22
+ */
23
+ email: string;
24
+ }
25
+ /**
26
+ * Check if a given object implements the PasswordResetRequest interface.
27
+ */
28
+ export declare function instanceOfPasswordResetRequest(value: object): value is PasswordResetRequest;
29
+ export declare function PasswordResetRequestFromJSON(json: any): PasswordResetRequest;
30
+ export declare function PasswordResetRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordResetRequest;
31
+ export declare function PasswordResetRequestToJSON(json: any): PasswordResetRequest;
32
+ export declare function PasswordResetRequestToJSONTyped(value?: PasswordResetRequest | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Vault Hub Server
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 1.0.2
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfPasswordResetRequest = instanceOfPasswordResetRequest;
17
+ exports.PasswordResetRequestFromJSON = PasswordResetRequestFromJSON;
18
+ exports.PasswordResetRequestFromJSONTyped = PasswordResetRequestFromJSONTyped;
19
+ exports.PasswordResetRequestToJSON = PasswordResetRequestToJSON;
20
+ exports.PasswordResetRequestToJSONTyped = PasswordResetRequestToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the PasswordResetRequest interface.
23
+ */
24
+ function instanceOfPasswordResetRequest(value) {
25
+ if (!('email' in value) || value['email'] === undefined)
26
+ return false;
27
+ return true;
28
+ }
29
+ function PasswordResetRequestFromJSON(json) {
30
+ return PasswordResetRequestFromJSONTyped(json, false);
31
+ }
32
+ function PasswordResetRequestFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'email': json['email'],
38
+ };
39
+ }
40
+ function PasswordResetRequestToJSON(json) {
41
+ return PasswordResetRequestToJSONTyped(json, false);
42
+ }
43
+ function PasswordResetRequestToJSONTyped(value, ignoreDiscriminator) {
44
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'email': value['email'],
50
+ };
51
+ }
@@ -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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
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.1
5
+ * The version of the OpenAPI document: 1.0.2
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.1
8
+ * The version of the OpenAPI document: 1.0.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -11,6 +11,9 @@ export * from './GetUserResponse';
11
11
  export * from './HealthCheckResponse';
12
12
  export * from './LoginRequest';
13
13
  export * from './LoginResponse';
14
+ export * from './MagicLinkRequest';
15
+ export * from './PasswordResetConfirmRequest';
16
+ export * from './PasswordResetRequest';
14
17
  export * from './SignupRequest';
15
18
  export * from './SignupResponse';
16
19
  export * from './StatusResponse';
@@ -29,6 +29,9 @@ __exportStar(require("./GetUserResponse"), exports);
29
29
  __exportStar(require("./HealthCheckResponse"), exports);
30
30
  __exportStar(require("./LoginRequest"), exports);
31
31
  __exportStar(require("./LoginResponse"), exports);
32
+ __exportStar(require("./MagicLinkRequest"), exports);
33
+ __exportStar(require("./PasswordResetConfirmRequest"), exports);
34
+ __exportStar(require("./PasswordResetRequest"), exports);
32
35
  __exportStar(require("./SignupRequest"), exports);
33
36
  __exportStar(require("./SignupResponse"), exports);
34
37
  __exportStar(require("./StatusResponse"), exports);
package/dist/runtime.d.ts CHANGED
@@ -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.1
5
+ * The version of the OpenAPI document: 1.0.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/runtime.js CHANGED
@@ -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.1
8
+ * The version of the OpenAPI document: 1.0.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lwshen/vault-hub-ts-fetch-client",
3
- "version": "0.20251014.091035",
3
+ "version": "0.20251014.163009",
4
4
  "description": "OpenAPI client for @lwshen/vault-hub-ts-fetch-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -4,7 +4,7 @@
4
4
  * Vault Hub Server
5
5
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  *
7
- * The version of the OpenAPI document: 1.0.1
7
+ * The version of the OpenAPI document: 1.0.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Vault Hub Server
5
5
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  *
7
- * The version of the OpenAPI document: 1.0.1
7
+ * The version of the OpenAPI document: 1.0.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).