@cherryin/passport-api-client 0.1.9 → 0.1.10

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.9
1
+ ## @cherryin/passport-api-client@0.1.10
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.9 --save
39
+ npm install @cherryin/passport-api-client@0.1.10 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -209,7 +209,8 @@ export interface EnterpriseOCRBusinessLicenseWarning {
209
209
  export interface EnterpriseOCRPersonIDCard {
210
210
  'face'?: EnterpriseOCRPersonIDCardFace;
211
211
  'back'?: EnterpriseOCRPersonIDCardBack;
212
- 'warning'?: EnterpriseOCRPersonIDCardWarning;
212
+ 'face_warning'?: EnterpriseOCRPersonIDCardWarning;
213
+ 'back_warning'?: EnterpriseOCRPersonIDCardWarning;
213
214
  }
214
215
  export interface EnterpriseOCRPersonIDCardBack {
215
216
  'issue_authority'?: string;
package/dist/api.d.ts CHANGED
@@ -200,7 +200,8 @@ export interface EnterpriseOCRBusinessLicenseWarning {
200
200
  export interface EnterpriseOCRPersonIDCard {
201
201
  'face'?: EnterpriseOCRPersonIDCardFace;
202
202
  'back'?: EnterpriseOCRPersonIDCardBack;
203
- 'warning'?: EnterpriseOCRPersonIDCardWarning;
203
+ 'face_warning'?: EnterpriseOCRPersonIDCardWarning;
204
+ 'back_warning'?: EnterpriseOCRPersonIDCardWarning;
204
205
  }
205
206
  export interface EnterpriseOCRPersonIDCardBack {
206
207
  'issue_authority'?: string;
package/dist/esm/api.d.ts CHANGED
@@ -200,7 +200,8 @@ export interface EnterpriseOCRBusinessLicenseWarning {
200
200
  export interface EnterpriseOCRPersonIDCard {
201
201
  'face'?: EnterpriseOCRPersonIDCardFace;
202
202
  'back'?: EnterpriseOCRPersonIDCardBack;
203
- 'warning'?: EnterpriseOCRPersonIDCardWarning;
203
+ 'face_warning'?: EnterpriseOCRPersonIDCardWarning;
204
+ 'back_warning'?: EnterpriseOCRPersonIDCardWarning;
204
205
  }
205
206
  export interface EnterpriseOCRPersonIDCardBack {
206
207
  'issue_authority'?: string;
@@ -7,7 +7,8 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **face** | [**EnterpriseOCRPersonIDCardFace**](EnterpriseOCRPersonIDCardFace.md) | | [optional] [default to undefined]
9
9
  **back** | [**EnterpriseOCRPersonIDCardBack**](EnterpriseOCRPersonIDCardBack.md) | | [optional] [default to undefined]
10
- **warning** | [**EnterpriseOCRPersonIDCardWarning**](EnterpriseOCRPersonIDCardWarning.md) | | [optional] [default to undefined]
10
+ **face_warning** | [**EnterpriseOCRPersonIDCardWarning**](EnterpriseOCRPersonIDCardWarning.md) | | [optional] [default to undefined]
11
+ **back_warning** | [**EnterpriseOCRPersonIDCardWarning**](EnterpriseOCRPersonIDCardWarning.md) | | [optional] [default to undefined]
11
12
 
12
13
  ## Example
13
14
 
@@ -17,7 +18,8 @@ import { EnterpriseOCRPersonIDCard } from '@cherryin/passport-api-client';
17
18
  const instance: EnterpriseOCRPersonIDCard = {
18
19
  face,
19
20
  back,
20
- warning,
21
+ face_warning,
22
+ back_warning,
21
23
  };
22
24
  ```
23
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cherryin/passport-api-client",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "OpenAPI client for @cherryin/passport-api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {