@cherryin/passport-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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @cherryin/passport-api-client@0.1.28
1
+ ## @cherryin/passport-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/passport-api-client@0.1.28 --save
39
+ npm install @cherryin/passport-api-client@0.1.29 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -1179,6 +1179,7 @@ export interface PassportUserUpdateInfoRequest {
1179
1179
  'preferences'?: UserPreferences;
1180
1180
  'payment_info'?: UserPaymentInfo;
1181
1181
  'extend_info'?: UserExtendInfo;
1182
+ 'reason'?: string;
1182
1183
  }
1183
1184
  export interface PassportUserUpdateInfoResponse {
1184
1185
  'code'?: string;
@@ -1202,6 +1203,8 @@ export interface UserBasic {
1202
1203
  'phone_verified_at'?: string;
1203
1204
  'app_name'?: string;
1204
1205
  'user_status'?: number;
1206
+ 'role'?: number;
1207
+ 'disabled_until'?: string;
1205
1208
  }
1206
1209
  export interface UserExtendInfo {
1207
1210
  'user_groups'?: Array<string>;
package/dist/api.d.ts CHANGED
@@ -1172,6 +1172,7 @@ export interface PassportUserUpdateInfoRequest {
1172
1172
  'preferences'?: UserPreferences;
1173
1173
  'payment_info'?: UserPaymentInfo;
1174
1174
  'extend_info'?: UserExtendInfo;
1175
+ 'reason'?: string;
1175
1176
  }
1176
1177
  export interface PassportUserUpdateInfoResponse {
1177
1178
  'code'?: string;
@@ -1195,6 +1196,8 @@ export interface UserBasic {
1195
1196
  'phone_verified_at'?: string;
1196
1197
  'app_name'?: string;
1197
1198
  'user_status'?: number;
1199
+ 'role'?: number;
1200
+ 'disabled_until'?: string;
1198
1201
  }
1199
1202
  export interface UserExtendInfo {
1200
1203
  'user_groups'?: Array<string>;
package/dist/esm/api.d.ts CHANGED
@@ -1172,6 +1172,7 @@ export interface PassportUserUpdateInfoRequest {
1172
1172
  'preferences'?: UserPreferences;
1173
1173
  'payment_info'?: UserPaymentInfo;
1174
1174
  'extend_info'?: UserExtendInfo;
1175
+ 'reason'?: string;
1175
1176
  }
1176
1177
  export interface PassportUserUpdateInfoResponse {
1177
1178
  'code'?: string;
@@ -1195,6 +1196,8 @@ export interface UserBasic {
1195
1196
  'phone_verified_at'?: string;
1196
1197
  'app_name'?: string;
1197
1198
  'user_status'?: number;
1199
+ 'role'?: number;
1200
+ 'disabled_until'?: string;
1198
1201
  }
1199
1202
  export interface UserExtendInfo {
1200
1203
  'user_groups'?: Array<string>;
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **preferences** | [**UserPreferences**](UserPreferences.md) | | [optional] [default to undefined]
12
12
  **payment_info** | [**UserPaymentInfo**](UserPaymentInfo.md) | | [optional] [default to undefined]
13
13
  **extend_info** | [**UserExtendInfo**](UserExtendInfo.md) | | [optional] [default to undefined]
14
+ **reason** | **string** | | [optional] [default to undefined]
14
15
 
15
16
  ## Example
16
17
 
@@ -24,6 +25,7 @@ const instance: PassportUserUpdateInfoRequest = {
24
25
  preferences,
25
26
  payment_info,
26
27
  extend_info,
28
+ reason,
27
29
  };
28
30
  ```
29
31
 
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cherryin/passport-api-client",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "OpenAPI client for @cherryin/passport-api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {