@equisoft/account-service-sdk-typescript 4.3.1-snapshot.20230119163944 → 4.3.1-snapshot.20230119225250
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.
|
@@ -20,13 +20,19 @@ export interface SetUserAccountPasswordPayload {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof SetUserAccountPasswordPayload
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
currentPassword?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SetUserAccountPasswordPayload
|
|
28
|
+
*/
|
|
29
|
+
newPassword: string;
|
|
24
30
|
/**
|
|
25
31
|
*
|
|
26
32
|
* @type {boolean}
|
|
27
33
|
* @memberof SetUserAccountPasswordPayload
|
|
28
34
|
*/
|
|
29
|
-
|
|
35
|
+
passwordResetRequired: boolean;
|
|
30
36
|
}
|
|
31
37
|
export declare function SetUserAccountPasswordPayloadFromJSON(json: any): SetUserAccountPasswordPayload;
|
|
32
38
|
export declare function SetUserAccountPasswordPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetUserAccountPasswordPayload;
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.SetUserAccountPasswordPayloadToJSON = exports.SetUserAccountPasswordPayloadFromJSONTyped = exports.SetUserAccountPasswordPayloadFromJSON = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
17
18
|
function SetUserAccountPasswordPayloadFromJSON(json) {
|
|
18
19
|
return SetUserAccountPasswordPayloadFromJSONTyped(json, false);
|
|
19
20
|
}
|
|
@@ -23,8 +24,9 @@ function SetUserAccountPasswordPayloadFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
24
|
return json;
|
|
24
25
|
}
|
|
25
26
|
return {
|
|
26
|
-
'
|
|
27
|
-
'
|
|
27
|
+
'currentPassword': !runtime_1.exists(json, 'currentPassword') ? undefined : json['currentPassword'],
|
|
28
|
+
'newPassword': json['newPassword'],
|
|
29
|
+
'passwordResetRequired': json['passwordResetRequired'],
|
|
28
30
|
};
|
|
29
31
|
}
|
|
30
32
|
exports.SetUserAccountPasswordPayloadFromJSONTyped = SetUserAccountPasswordPayloadFromJSONTyped;
|
|
@@ -36,8 +38,9 @@ function SetUserAccountPasswordPayloadToJSON(value) {
|
|
|
36
38
|
return null;
|
|
37
39
|
}
|
|
38
40
|
return {
|
|
39
|
-
'
|
|
40
|
-
'
|
|
41
|
+
'currentPassword': value.currentPassword,
|
|
42
|
+
'newPassword': value.newPassword,
|
|
43
|
+
'passwordResetRequired': value.passwordResetRequired,
|
|
41
44
|
};
|
|
42
45
|
}
|
|
43
46
|
exports.SetUserAccountPasswordPayloadToJSON = SetUserAccountPasswordPayloadToJSON;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/account-service-sdk-typescript",
|
|
3
|
-
"version": "4.3.1-snapshot.
|
|
3
|
+
"version": "4.3.1-snapshot.20230119225250",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
|
|
5
5
|
"author": "Equisoft Inc.",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,13 +24,19 @@ export interface SetUserAccountPasswordPayload {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof SetUserAccountPasswordPayload
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
currentPassword?: string | null;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SetUserAccountPasswordPayload
|
|
32
|
+
*/
|
|
33
|
+
newPassword: string;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {boolean}
|
|
31
37
|
* @memberof SetUserAccountPasswordPayload
|
|
32
38
|
*/
|
|
33
|
-
|
|
39
|
+
passwordResetRequired: boolean;
|
|
34
40
|
}
|
|
35
41
|
|
|
36
42
|
export function SetUserAccountPasswordPayloadFromJSON(json: any): SetUserAccountPasswordPayload {
|
|
@@ -43,8 +49,9 @@ export function SetUserAccountPasswordPayloadFromJSONTyped(json: any, ignoreDisc
|
|
|
43
49
|
}
|
|
44
50
|
return {
|
|
45
51
|
|
|
46
|
-
'
|
|
47
|
-
'
|
|
52
|
+
'currentPassword': !exists(json, 'currentPassword') ? undefined : json['currentPassword'],
|
|
53
|
+
'newPassword': json['newPassword'],
|
|
54
|
+
'passwordResetRequired': json['passwordResetRequired'],
|
|
48
55
|
};
|
|
49
56
|
}
|
|
50
57
|
|
|
@@ -57,8 +64,9 @@ export function SetUserAccountPasswordPayloadToJSON(value?: SetUserAccountPasswo
|
|
|
57
64
|
}
|
|
58
65
|
return {
|
|
59
66
|
|
|
60
|
-
'
|
|
61
|
-
'
|
|
67
|
+
'currentPassword': value.currentPassword,
|
|
68
|
+
'newPassword': value.newPassword,
|
|
69
|
+
'passwordResetRequired': value.passwordResetRequired,
|
|
62
70
|
};
|
|
63
71
|
}
|
|
64
72
|
|