@cherryin/aigw-api-client 0.1.28 → 0.1.29
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/api.ts +2 -0
- package/dist/api.d.ts +2 -0
- package/dist/esm/api.d.ts +2 -0
- package/docs/UserBasic.md +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @cherryin/aigw-api-client@0.1.
|
|
1
|
+
## @cherryin/aigw-api-client@0.1.29
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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 @cherryin/aigw-api-client@0.1.
|
|
39
|
+
npm install @cherryin/aigw-api-client@0.1.29 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -1050,6 +1050,8 @@ export interface UserBasic {
|
|
|
1050
1050
|
'phone_verified_at'?: string;
|
|
1051
1051
|
'app_name'?: string;
|
|
1052
1052
|
'user_status'?: number;
|
|
1053
|
+
'role'?: number;
|
|
1054
|
+
'disabled_until'?: string;
|
|
1053
1055
|
}
|
|
1054
1056
|
export interface UserExtendInfo {
|
|
1055
1057
|
'user_groups'?: Array<string>;
|
package/dist/api.d.ts
CHANGED
|
@@ -1051,6 +1051,8 @@ export interface UserBasic {
|
|
|
1051
1051
|
'phone_verified_at'?: string;
|
|
1052
1052
|
'app_name'?: string;
|
|
1053
1053
|
'user_status'?: number;
|
|
1054
|
+
'role'?: number;
|
|
1055
|
+
'disabled_until'?: string;
|
|
1054
1056
|
}
|
|
1055
1057
|
export interface UserExtendInfo {
|
|
1056
1058
|
'user_groups'?: Array<string>;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1051,6 +1051,8 @@ export interface UserBasic {
|
|
|
1051
1051
|
'phone_verified_at'?: string;
|
|
1052
1052
|
'app_name'?: string;
|
|
1053
1053
|
'user_status'?: number;
|
|
1054
|
+
'role'?: number;
|
|
1055
|
+
'disabled_until'?: string;
|
|
1054
1056
|
}
|
|
1055
1057
|
export interface UserExtendInfo {
|
|
1056
1058
|
'user_groups'?: Array<string>;
|
package/docs/UserBasic.md
CHANGED
|
@@ -17,6 +17,8 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**phone_verified_at** | **string** | | [optional] [default to undefined]
|
|
18
18
|
**app_name** | **string** | | [optional] [default to undefined]
|
|
19
19
|
**user_status** | **number** | | [optional] [default to undefined]
|
|
20
|
+
**role** | **number** | | [optional] [default to undefined]
|
|
21
|
+
**disabled_until** | **string** | | [optional] [default to undefined]
|
|
20
22
|
|
|
21
23
|
## Example
|
|
22
24
|
|
|
@@ -36,6 +38,8 @@ const instance: UserBasic = {
|
|
|
36
38
|
phone_verified_at,
|
|
37
39
|
app_name,
|
|
38
40
|
user_status,
|
|
41
|
+
role,
|
|
42
|
+
disabled_until,
|
|
39
43
|
};
|
|
40
44
|
```
|
|
41
45
|
|