@lwshen/vault-hub-ts-fetch-client 1.3.14 → 1.3.16
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/.openapi-generator/FILES +3 -0
- package/README.md +2 -2
- package/dist/apis/APIKeyApi.d.ts +1 -1
- package/dist/apis/APIKeyApi.js +1 -1
- package/dist/apis/AuditApi.d.ts +1 -1
- package/dist/apis/AuditApi.js +1 -1
- package/dist/apis/AuthApi.d.ts +46 -2
- package/dist/apis/AuthApi.js +178 -1
- package/dist/apis/CliApi.d.ts +1 -1
- package/dist/apis/CliApi.js +1 -1
- package/dist/apis/ConfigApi.d.ts +1 -1
- package/dist/apis/ConfigApi.js +1 -1
- package/dist/apis/DefaultApi.d.ts +1 -1
- package/dist/apis/DefaultApi.js +1 -1
- package/dist/apis/StatusApi.d.ts +1 -1
- package/dist/apis/StatusApi.js +1 -1
- package/dist/apis/UserApi.d.ts +1 -1
- package/dist/apis/UserApi.js +1 -1
- package/dist/apis/VaultApi.d.ts +1 -1
- package/dist/apis/VaultApi.js +1 -1
- package/dist/models/APIKeysResponse.d.ts +1 -1
- package/dist/models/APIKeysResponse.js +1 -1
- package/dist/models/AuditLog.d.ts +1 -1
- package/dist/models/AuditLog.js +1 -1
- package/dist/models/AuditLogsResponse.d.ts +1 -1
- package/dist/models/AuditLogsResponse.js +1 -1
- package/dist/models/AuditMetricsResponse.d.ts +1 -1
- package/dist/models/AuditMetricsResponse.js +1 -1
- package/dist/models/ConfigResponse.d.ts +1 -1
- package/dist/models/ConfigResponse.js +1 -1
- package/dist/models/CreateAPIKeyRequest.d.ts +1 -1
- package/dist/models/CreateAPIKeyRequest.js +1 -1
- package/dist/models/CreateAPIKeyResponse.d.ts +1 -1
- package/dist/models/CreateAPIKeyResponse.js +1 -1
- package/dist/models/CreateVaultRequest.d.ts +1 -1
- package/dist/models/CreateVaultRequest.js +1 -1
- package/dist/models/EnableClientEncryption.d.ts +1 -1
- package/dist/models/EnableClientEncryption.js +1 -1
- package/dist/models/GetUserResponse.d.ts +1 -1
- package/dist/models/GetUserResponse.js +1 -1
- package/dist/models/HealthCheckResponse.d.ts +1 -1
- package/dist/models/HealthCheckResponse.js +1 -1
- package/dist/models/LoginRequest.d.ts +1 -1
- package/dist/models/LoginRequest.js +1 -1
- package/dist/models/LoginResponse.d.ts +1 -1
- package/dist/models/LoginResponse.js +1 -1
- package/dist/models/MagicLinkRequest.d.ts +32 -0
- package/dist/models/MagicLinkRequest.js +51 -0
- package/dist/models/PasswordResetConfirmRequest.d.ts +38 -0
- package/dist/models/PasswordResetConfirmRequest.js +55 -0
- package/dist/models/PasswordResetRequest.d.ts +32 -0
- package/dist/models/PasswordResetRequest.js +51 -0
- package/dist/models/SignupRequest.d.ts +1 -1
- package/dist/models/SignupRequest.js +1 -1
- package/dist/models/SignupResponse.d.ts +1 -1
- package/dist/models/SignupResponse.js +1 -1
- package/dist/models/StatusResponse.d.ts +1 -1
- package/dist/models/StatusResponse.js +1 -1
- package/dist/models/UpdateAPIKeyRequest.d.ts +1 -1
- package/dist/models/UpdateAPIKeyRequest.js +1 -1
- package/dist/models/UpdateVaultRequest.d.ts +1 -1
- package/dist/models/UpdateVaultRequest.js +1 -1
- package/dist/models/Vault.d.ts +1 -1
- package/dist/models/Vault.js +1 -1
- package/dist/models/VaultAPIKey.d.ts +1 -1
- package/dist/models/VaultAPIKey.js +1 -1
- package/dist/models/VaultLite.d.ts +1 -1
- package/dist/models/VaultLite.js +1 -1
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
- package/src/apis/APIKeyApi.ts +1 -1
- package/src/apis/AuditApi.ts +1 -1
- package/src/apis/AuthApi.ts +167 -1
- package/src/apis/CliApi.ts +1 -1
- package/src/apis/ConfigApi.ts +1 -1
- package/src/apis/DefaultApi.ts +1 -1
- package/src/apis/StatusApi.ts +1 -1
- package/src/apis/UserApi.ts +1 -1
- package/src/apis/VaultApi.ts +1 -1
- package/src/models/APIKeysResponse.ts +1 -1
- package/src/models/AuditLog.ts +1 -1
- package/src/models/AuditLogsResponse.ts +1 -1
- package/src/models/AuditMetricsResponse.ts +1 -1
- package/src/models/ConfigResponse.ts +1 -1
- package/src/models/CreateAPIKeyRequest.ts +1 -1
- package/src/models/CreateAPIKeyResponse.ts +1 -1
- package/src/models/CreateVaultRequest.ts +1 -1
- package/src/models/EnableClientEncryption.ts +1 -1
- package/src/models/GetUserResponse.ts +1 -1
- package/src/models/HealthCheckResponse.ts +1 -1
- package/src/models/LoginRequest.ts +1 -1
- package/src/models/LoginResponse.ts +1 -1
- package/src/models/MagicLinkRequest.ts +66 -0
- package/src/models/PasswordResetConfirmRequest.ts +75 -0
- package/src/models/PasswordResetRequest.ts +66 -0
- package/src/models/SignupRequest.ts +1 -1
- package/src/models/SignupResponse.ts +1 -1
- package/src/models/StatusResponse.ts +1 -1
- package/src/models/UpdateAPIKeyRequest.ts +1 -1
- package/src/models/UpdateVaultRequest.ts +1 -1
- package/src/models/Vault.ts +1 -1
- package/src/models/VaultAPIKey.ts +1 -1
- package/src/models/VaultLite.ts +1 -1
- package/src/models/index.ts +3 -0
- 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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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/dist/models/Vault.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.
|
|
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/models/Vault.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.
|
|
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.
|
|
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.
|
|
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.
|
|
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/models/VaultLite.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.
|
|
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/dist/models/index.d.ts
CHANGED
|
@@ -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';
|
package/dist/models/index.js
CHANGED
|
@@ -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.
|
|
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.
|
|
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
package/src/apis/APIKeyApi.ts
CHANGED
|
@@ -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.
|
|
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).
|
package/src/apis/AuditApi.ts
CHANGED
|
@@ -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.
|
|
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).
|