@easyedu/js-lsm-api 1.61.0 → 1.62.0
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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @easyedu/js-lsm-api@1.
|
|
1
|
+
# @easyedu/js-lsm-api@1.62.0
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the sbzw93t49b.execute-api.us-east-2.amazonaws.com API.
|
|
4
4
|
|
|
@@ -489,7 +489,7 @@ and is automatically generated by the
|
|
|
489
489
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
490
490
|
|
|
491
491
|
- API version: `1.0.0`
|
|
492
|
-
- Package version: `1.
|
|
492
|
+
- Package version: `1.62.0`
|
|
493
493
|
- Generator version: `7.22.0`
|
|
494
494
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
495
495
|
|
|
@@ -31,6 +31,7 @@ export function PostLoginFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
31
31
|
return {
|
|
32
32
|
'email': json['email'],
|
|
33
33
|
'password': json['password'],
|
|
34
|
+
'rememberMe': json['remember_me'] == null ? undefined : json['remember_me'],
|
|
34
35
|
};
|
|
35
36
|
}
|
|
36
37
|
export function PostLoginToJSON(json) {
|
|
@@ -43,5 +44,6 @@ export function PostLoginToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
43
44
|
return {
|
|
44
45
|
'email': value['email'],
|
|
45
46
|
'password': value['password'],
|
|
47
|
+
'remember_me': value['rememberMe'],
|
|
46
48
|
};
|
|
47
49
|
}
|
package/dist/models/PostLogin.js
CHANGED
|
@@ -38,6 +38,7 @@ function PostLoginFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
38
|
return {
|
|
39
39
|
'email': json['email'],
|
|
40
40
|
'password': json['password'],
|
|
41
|
+
'rememberMe': json['remember_me'] == null ? undefined : json['remember_me'],
|
|
41
42
|
};
|
|
42
43
|
}
|
|
43
44
|
function PostLoginToJSON(json) {
|
|
@@ -50,5 +51,6 @@ function PostLoginToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
50
51
|
return {
|
|
51
52
|
'email': value['email'],
|
|
52
53
|
'password': value['password'],
|
|
54
|
+
'remember_me': value['rememberMe'],
|
|
53
55
|
};
|
|
54
56
|
}
|
package/docs/PostLogin.md
CHANGED
|
@@ -8,6 +8,7 @@ Name | Type
|
|
|
8
8
|
------------ | -------------
|
|
9
9
|
`email` | string
|
|
10
10
|
`password` | string
|
|
11
|
+
`rememberMe` | boolean
|
|
11
12
|
|
|
12
13
|
## Example
|
|
13
14
|
|
|
@@ -18,6 +19,7 @@ import type { PostLogin } from '@easyedu/js-lsm-api'
|
|
|
18
19
|
const example = {
|
|
19
20
|
"email": null,
|
|
20
21
|
"password": null,
|
|
22
|
+
"rememberMe": null,
|
|
21
23
|
} satisfies PostLogin
|
|
22
24
|
|
|
23
25
|
console.log(example)
|
package/package.json
CHANGED
package/src/models/PostLogin.ts
CHANGED
|
@@ -31,6 +31,12 @@ export interface PostLogin {
|
|
|
31
31
|
* @memberof PostLogin
|
|
32
32
|
*/
|
|
33
33
|
password: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {boolean}
|
|
37
|
+
* @memberof PostLogin
|
|
38
|
+
*/
|
|
39
|
+
rememberMe?: boolean;
|
|
34
40
|
}
|
|
35
41
|
|
|
36
42
|
/**
|
|
@@ -54,6 +60,7 @@ export function PostLoginFromJSONTyped(json: any, ignoreDiscriminator: boolean):
|
|
|
54
60
|
|
|
55
61
|
'email': json['email'],
|
|
56
62
|
'password': json['password'],
|
|
63
|
+
'rememberMe': json['remember_me'] == null ? undefined : json['remember_me'],
|
|
57
64
|
};
|
|
58
65
|
}
|
|
59
66
|
|
|
@@ -70,6 +77,7 @@ export function PostLoginToJSONTyped(value?: PostLogin | null, ignoreDiscriminat
|
|
|
70
77
|
|
|
71
78
|
'email': value['email'],
|
|
72
79
|
'password': value['password'],
|
|
80
|
+
'remember_me': value['rememberMe'],
|
|
73
81
|
};
|
|
74
82
|
}
|
|
75
83
|
|