@easyedu/js-lsm-api 1.12.0 → 1.13.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 +2 -2
- package/dist/esm/models/GetUser.d.ts +4 -4
- package/dist/models/GetUser.d.ts +4 -4
- package/package.json +1 -1
- package/src/models/GetUser.ts +4 -4
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @easyedu/js-lsm-api@1.
|
|
1
|
+
## @easyedu/js-lsm-api@1.13.0
|
|
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 @easyedu/js-lsm-api@1.
|
|
39
|
+
npm install @easyedu/js-lsm-api@1.13.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface GetUser {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* User's external ID
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof GetUser
|
|
22
22
|
*/
|
|
@@ -40,11 +40,11 @@ export interface GetUser {
|
|
|
40
40
|
*/
|
|
41
41
|
email: string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {
|
|
43
|
+
* Unix timestamp in seconds
|
|
44
|
+
* @type {number}
|
|
45
45
|
* @memberof GetUser
|
|
46
46
|
*/
|
|
47
|
-
lastUpdated:
|
|
47
|
+
lastUpdated: number;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* Check if a given object implements the GetUser interface.
|
package/dist/models/GetUser.d.ts
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface GetUser {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* User's external ID
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof GetUser
|
|
22
22
|
*/
|
|
@@ -40,11 +40,11 @@ export interface GetUser {
|
|
|
40
40
|
*/
|
|
41
41
|
email: string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {
|
|
43
|
+
* Unix timestamp in seconds
|
|
44
|
+
* @type {number}
|
|
45
45
|
* @memberof GetUser
|
|
46
46
|
*/
|
|
47
|
-
lastUpdated:
|
|
47
|
+
lastUpdated: number;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* Check if a given object implements the GetUser interface.
|
package/package.json
CHANGED
package/src/models/GetUser.ts
CHANGED
|
@@ -20,7 +20,7 @@ import { mapValues } from '../runtime';
|
|
|
20
20
|
*/
|
|
21
21
|
export interface GetUser {
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* User's external ID
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof GetUser
|
|
26
26
|
*/
|
|
@@ -44,11 +44,11 @@ export interface GetUser {
|
|
|
44
44
|
*/
|
|
45
45
|
email: string;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {
|
|
47
|
+
* Unix timestamp in seconds
|
|
48
|
+
* @type {number}
|
|
49
49
|
* @memberof GetUser
|
|
50
50
|
*/
|
|
51
|
-
lastUpdated:
|
|
51
|
+
lastUpdated: number;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
/**
|