@regulaforensics/document-reader-webclient 6.1.0 → 6.1.3
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/dist/cjs-es5/ext/document-reader.js +22 -4
- package/dist/cjs-es5/ext/images.js +23 -8
- package/dist/cjs-es5/ext/process-request.js +1 -1
- package/dist/cjs-es5/ext/process-response.js +28 -11
- package/dist/cjs-es5/models/bc-pdf417-info.js +16 -0
- package/dist/cjs-es5/models/bc-roidetect.js +16 -0
- package/dist/cjs-es5/models/data-module.js +16 -0
- package/dist/cjs-es5/models/doc-bar-code-info-all-of.js +16 -0
- package/dist/cjs-es5/models/doc-bar-code-info.js +16 -0
- package/dist/cjs-es5/models/encrypted-rclresult-all-of.js +16 -0
- package/dist/cjs-es5/models/encrypted-rclresult.js +16 -0
- package/dist/cjs-es5/models/index.js +11 -1
- package/dist/cjs-es5/models/license-result-all-of.js +16 -0
- package/dist/cjs-es5/models/license-result.js +16 -0
- package/dist/cjs-es5/models/parray-field.js +16 -0
- package/dist/cjs-es5/models/result.js +13 -1
- package/dist/esm-es5/ext/document-reader.js +2 -3
- package/dist/esm-es5/ext/images.js +4 -5
- package/dist/esm-es5/ext/process-request.js +1 -1
- package/dist/esm-es5/ext/process-response.js +8 -7
- package/dist/esm-es5/models/bc-pdf417-info.js +14 -0
- package/dist/esm-es5/models/bc-roidetect.js +14 -0
- package/dist/esm-es5/models/data-module.js +14 -0
- package/dist/esm-es5/models/doc-bar-code-info-all-of.js +14 -0
- package/dist/esm-es5/models/doc-bar-code-info.js +14 -0
- package/dist/esm-es5/models/encrypted-rclresult-all-of.js +14 -0
- package/dist/esm-es5/models/encrypted-rclresult.js +14 -0
- package/dist/esm-es5/models/index.js +11 -1
- package/dist/esm-es5/models/license-result-all-of.js +14 -0
- package/dist/esm-es5/models/license-result.js +14 -0
- package/dist/esm-es5/models/parray-field.js +14 -0
- package/dist/esm-es5/models/result.js +13 -1
- package/package.json +2 -2
- package/src/ext/document-reader.ts +1 -3
- package/src/ext/images.ts +3 -5
- package/src/ext/process-request-image.ts +1 -1
- package/src/ext/process-request.ts +8 -2
- package/src/ext/process-response.ts +11 -10
- package/src/ext/result-item.ts +5 -5
- package/src/models/authenticity-result.ts +3 -0
- package/src/models/bc-pdf417-info.ts +61 -0
- package/src/models/bc-roidetect.ts +49 -0
- package/src/models/chosen-document-type-result.ts +3 -0
- package/src/models/container-list.ts +11 -2
- package/src/models/data-module.ts +55 -0
- package/src/models/doc-bar-code-info-all-of.ts +38 -0
- package/src/models/doc-bar-code-info.ts +42 -0
- package/src/models/document-image-result.ts +3 -0
- package/src/models/document-position-result.ts +3 -0
- package/src/models/document-types-candidates-result.ts +3 -0
- package/src/models/encrypted-rclresult-all-of.ts +31 -0
- package/src/models/encrypted-rclresult.ts +40 -0
- package/src/models/graphics-result.ts +3 -0
- package/src/models/image-quality-result.ts +3 -0
- package/src/models/images-result.ts +3 -0
- package/src/models/index.ts +10 -0
- package/src/models/lexical-analysis-result.ts +3 -0
- package/src/models/license-result-all-of.ts +31 -0
- package/src/models/license-result.ts +40 -0
- package/src/models/parray-field.ts +88 -0
- package/src/models/process-request.ts +14 -1
- package/src/models/result-item.ts +3 -0
- package/src/models/result.ts +13 -1
- package/src/models/status-result.ts +3 -0
- package/src/models/text-data-result.ts +3 -0
- package/src/models/text-result.ts +3 -0
- package/tsconfig.commonjs.json +1 -1
- package/tsconfig.esm.json +1 -1
|
@@ -15,13 +15,16 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResultAllOf } from './chosen-document-type-result-all-of';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
21
23
|
import { GraphicsResult } from './graphics-result';
|
|
22
24
|
import { ImageQualityResult } from './image-quality-result';
|
|
23
25
|
import { ImagesResult } from './images-result';
|
|
24
26
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
27
|
+
import { LicenseResult } from './license-result';
|
|
25
28
|
import { OneCandidate } from './one-candidate';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
@@ -15,13 +15,16 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
21
23
|
import { GraphicsResult } from './graphics-result';
|
|
22
24
|
import { ImageQualityResult } from './image-quality-result';
|
|
23
25
|
import { ImagesResult } from './images-result';
|
|
24
26
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
27
|
+
import { LicenseResult } from './license-result';
|
|
25
28
|
import { StatusResult } from './status-result';
|
|
26
29
|
import { TextDataResult } from './text-data-result';
|
|
27
30
|
import { TextResult } from './text-result';
|
|
@@ -32,12 +35,18 @@ import { TextResult } from './text-result';
|
|
|
32
35
|
* @interface ContainerList
|
|
33
36
|
*/
|
|
34
37
|
export interface ContainerList {
|
|
38
|
+
/**
|
|
39
|
+
* Length of list (Count for items)
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof ContainerList
|
|
42
|
+
*/
|
|
43
|
+
Count?: number;
|
|
35
44
|
/**
|
|
36
45
|
*
|
|
37
|
-
* @type {Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult>}
|
|
46
|
+
* @type {Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult | DocBarCodeInfo | LicenseResult | EncryptedRCLResult>}
|
|
38
47
|
* @memberof ContainerList
|
|
39
48
|
*/
|
|
40
|
-
List: Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult>;
|
|
49
|
+
List: Array<StatusResult | TextResult | DocumentImageResult | ImagesResult | ChosenDocumentTypeResult | DocumentTypesCandidatesResult | TextDataResult | GraphicsResult | LexicalAnalysisResult | AuthenticityResult | ImageQualityResult | DocumentPositionResult | DocBarCodeInfo | LicenseResult | EncryptedRCLResult>;
|
|
41
50
|
}
|
|
42
51
|
|
|
43
52
|
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface DataModule
|
|
21
|
+
*/
|
|
22
|
+
export interface DataModule {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DataModule
|
|
27
|
+
*/
|
|
28
|
+
mData?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof DataModule
|
|
33
|
+
*/
|
|
34
|
+
mLength?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof DataModule
|
|
39
|
+
*/
|
|
40
|
+
mReserved1?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof DataModule
|
|
45
|
+
*/
|
|
46
|
+
mReserver2?: number;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof DataModule
|
|
51
|
+
*/
|
|
52
|
+
mType?: number;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { PArrayField } from './parray-field';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface DocBarCodeInfoAllOf
|
|
22
|
+
*/
|
|
23
|
+
export interface DocBarCodeInfoAllOf {
|
|
24
|
+
/**
|
|
25
|
+
* Count of array fields
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof DocBarCodeInfoAllOf
|
|
28
|
+
*/
|
|
29
|
+
nFields?: number;
|
|
30
|
+
/**
|
|
31
|
+
* Data from barcode
|
|
32
|
+
* @type {Array<PArrayField>}
|
|
33
|
+
* @memberof DocBarCodeInfoAllOf
|
|
34
|
+
*/
|
|
35
|
+
pArrayFields?: Array<PArrayField>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { AuthenticityResult } from './authenticity-result';
|
|
17
|
+
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfoAllOf } from './doc-bar-code-info-all-of';
|
|
19
|
+
import { DocumentImageResult } from './document-image-result';
|
|
20
|
+
import { DocumentPositionResult } from './document-position-result';
|
|
21
|
+
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
23
|
+
import { GraphicsResult } from './graphics-result';
|
|
24
|
+
import { ImageQualityResult } from './image-quality-result';
|
|
25
|
+
import { ImagesResult } from './images-result';
|
|
26
|
+
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
27
|
+
import { LicenseResult } from './license-result';
|
|
28
|
+
import { PArrayField } from './parray-field';
|
|
29
|
+
import { ResultItem } from './result-item';
|
|
30
|
+
import { StatusResult } from './status-result';
|
|
31
|
+
import { TextDataResult } from './text-data-result';
|
|
32
|
+
import { TextResult } from './text-result';
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @type DocBarCodeInfo
|
|
36
|
+
* Raw data from BarCodes
|
|
37
|
+
* @export
|
|
38
|
+
*/
|
|
39
|
+
export type DocBarCodeInfo = DocBarCodeInfoAllOf & ResultItem;
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
@@ -15,14 +15,17 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResultAllOf } from './document-image-result-all-of';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
21
23
|
import { GraphicsResult } from './graphics-result';
|
|
22
24
|
import { ImageData } from './image-data';
|
|
23
25
|
import { ImageQualityResult } from './image-quality-result';
|
|
24
26
|
import { ImagesResult } from './images-result';
|
|
25
27
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
28
|
+
import { LicenseResult } from './license-result';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
28
31
|
import { TextDataResult } from './text-data-result';
|
|
@@ -15,14 +15,17 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPosition } from './document-position';
|
|
20
21
|
import { DocumentPositionResultAllOf } from './document-position-result-all-of';
|
|
21
22
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
23
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
22
24
|
import { GraphicsResult } from './graphics-result';
|
|
23
25
|
import { ImageQualityResult } from './image-quality-result';
|
|
24
26
|
import { ImagesResult } from './images-result';
|
|
25
27
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
28
|
+
import { LicenseResult } from './license-result';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
28
31
|
import { TextDataResult } from './text-data-result';
|
|
@@ -15,14 +15,17 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesList } from './document-types-candidates-list';
|
|
21
22
|
import { DocumentTypesCandidatesResultAllOf } from './document-types-candidates-result-all-of';
|
|
23
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
22
24
|
import { GraphicsResult } from './graphics-result';
|
|
23
25
|
import { ImageQualityResult } from './image-quality-result';
|
|
24
26
|
import { ImagesResult } from './images-result';
|
|
25
27
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
28
|
+
import { LicenseResult } from './license-result';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
28
31
|
import { TextDataResult } from './text-data-result';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Contains encrypted result container list
|
|
19
|
+
* @export
|
|
20
|
+
* @interface EncryptedRCLResultAllOf
|
|
21
|
+
*/
|
|
22
|
+
export interface EncryptedRCLResultAllOf {
|
|
23
|
+
/**
|
|
24
|
+
* Base64 encoded data
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof EncryptedRCLResultAllOf
|
|
27
|
+
*/
|
|
28
|
+
EncryptedRCL: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { AuthenticityResult } from './authenticity-result';
|
|
17
|
+
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
19
|
+
import { DocumentImageResult } from './document-image-result';
|
|
20
|
+
import { DocumentPositionResult } from './document-position-result';
|
|
21
|
+
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResultAllOf } from './encrypted-rclresult-all-of';
|
|
23
|
+
import { GraphicsResult } from './graphics-result';
|
|
24
|
+
import { ImageQualityResult } from './image-quality-result';
|
|
25
|
+
import { ImagesResult } from './images-result';
|
|
26
|
+
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
27
|
+
import { LicenseResult } from './license-result';
|
|
28
|
+
import { ResultItem } from './result-item';
|
|
29
|
+
import { StatusResult } from './status-result';
|
|
30
|
+
import { TextDataResult } from './text-data-result';
|
|
31
|
+
import { TextResult } from './text-result';
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @type EncryptedRCLResult
|
|
35
|
+
* @export
|
|
36
|
+
*/
|
|
37
|
+
export type EncryptedRCLResult = EncryptedRCLResultAllOf & ResultItem;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
@@ -15,14 +15,17 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
21
23
|
import { GraphicFieldsList } from './graphic-fields-list';
|
|
22
24
|
import { GraphicsResultAllOf } from './graphics-result-all-of';
|
|
23
25
|
import { ImageQualityResult } from './image-quality-result';
|
|
24
26
|
import { ImagesResult } from './images-result';
|
|
25
27
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
28
|
+
import { LicenseResult } from './license-result';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
28
31
|
import { TextDataResult } from './text-data-result';
|
|
@@ -15,14 +15,17 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
21
23
|
import { GraphicsResult } from './graphics-result';
|
|
22
24
|
import { ImageQualityCheckList } from './image-quality-check-list';
|
|
23
25
|
import { ImageQualityResultAllOf } from './image-quality-result-all-of';
|
|
24
26
|
import { ImagesResult } from './images-result';
|
|
25
27
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
28
|
+
import { LicenseResult } from './license-result';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
28
31
|
import { TextDataResult } from './text-data-result';
|
|
@@ -15,14 +15,17 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
21
23
|
import { GraphicsResult } from './graphics-result';
|
|
22
24
|
import { ImageQualityResult } from './image-quality-result';
|
|
23
25
|
import { Images } from './images';
|
|
24
26
|
import { ImagesResultAllOf } from './images-result-all-of';
|
|
25
27
|
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
28
|
+
import { LicenseResult } from './license-result';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
28
31
|
import { TextDataResult } from './text-data-result';
|
package/src/models/index.ts
CHANGED
|
@@ -6,6 +6,8 @@ export * from './authenticity-check-result-item.js';
|
|
|
6
6
|
export * from './authenticity-result.js';
|
|
7
7
|
export * from './authenticity-result-all-of.js';
|
|
8
8
|
export * from './authenticity-result-type.js';
|
|
9
|
+
export * from './bc-pdf417-info.js';
|
|
10
|
+
export * from './bc-roidetect.js';
|
|
9
11
|
export * from './check-diagnose.js';
|
|
10
12
|
export * from './check-result.js';
|
|
11
13
|
export * from './chosen-document-type.js';
|
|
@@ -14,9 +16,12 @@ export * from './chosen-document-type-result-all-of.js';
|
|
|
14
16
|
export * from './container-list.js';
|
|
15
17
|
export * from './critical.js';
|
|
16
18
|
export * from './cross-source-value-comparison.js';
|
|
19
|
+
export * from './data-module.js';
|
|
17
20
|
export * from './details-optical.js';
|
|
18
21
|
export * from './details-rfid.js';
|
|
19
22
|
export * from './device-info.js';
|
|
23
|
+
export * from './doc-bar-code-info.js';
|
|
24
|
+
export * from './doc-bar-code-info-all-of.js';
|
|
20
25
|
export * from './doc-visual-extended-field.js';
|
|
21
26
|
export * from './doc-visual-extended-info.js';
|
|
22
27
|
export * from './document-format.js';
|
|
@@ -32,6 +37,8 @@ export * from './document-types-candidates.js';
|
|
|
32
37
|
export * from './document-types-candidates-list.js';
|
|
33
38
|
export * from './document-types-candidates-result.js';
|
|
34
39
|
export * from './document-types-candidates-result-all-of.js';
|
|
40
|
+
export * from './encrypted-rclresult.js';
|
|
41
|
+
export * from './encrypted-rclresult-all-of.js';
|
|
35
42
|
export * from './fdsidlist.js';
|
|
36
43
|
export * from './fiber-result.js';
|
|
37
44
|
export * from './fiber-result-all-of.js';
|
|
@@ -58,6 +65,8 @@ export * from './images-result-all-of.js';
|
|
|
58
65
|
export * from './lcid.js';
|
|
59
66
|
export * from './lexical-analysis-result.js';
|
|
60
67
|
export * from './lexical-analysis-result-all-of.js';
|
|
68
|
+
export * from './license-result.js';
|
|
69
|
+
export * from './license-result-all-of.js';
|
|
61
70
|
export * from './light.js';
|
|
62
71
|
export * from './list-verified-fields.js';
|
|
63
72
|
export * from './log-level.js';
|
|
@@ -67,6 +76,7 @@ export * from './ocrsecurity-text-result.js';
|
|
|
67
76
|
export * from './ocrsecurity-text-result-all-of.js';
|
|
68
77
|
export * from './one-candidate.js';
|
|
69
78
|
export * from './original-symbol.js';
|
|
79
|
+
export * from './parray-field.js';
|
|
70
80
|
export * from './per-document-config.js';
|
|
71
81
|
export * from './photo-ident-result.js';
|
|
72
82
|
export * from './photo-ident-result-all-of.js';
|
|
@@ -15,13 +15,16 @@
|
|
|
15
15
|
|
|
16
16
|
import { AuthenticityResult } from './authenticity-result';
|
|
17
17
|
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
18
19
|
import { DocumentImageResult } from './document-image-result';
|
|
19
20
|
import { DocumentPositionResult } from './document-position-result';
|
|
20
21
|
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
21
23
|
import { GraphicsResult } from './graphics-result';
|
|
22
24
|
import { ImageQualityResult } from './image-quality-result';
|
|
23
25
|
import { ImagesResult } from './images-result';
|
|
24
26
|
import { LexicalAnalysisResultAllOf } from './lexical-analysis-result-all-of';
|
|
27
|
+
import { LicenseResult } from './license-result';
|
|
25
28
|
import { ListVerifiedFields } from './list-verified-fields';
|
|
26
29
|
import { ResultItem } from './result-item';
|
|
27
30
|
import { StatusResult } from './status-result';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Contains license
|
|
19
|
+
* @export
|
|
20
|
+
* @interface LicenseResultAllOf
|
|
21
|
+
*/
|
|
22
|
+
export interface LicenseResultAllOf {
|
|
23
|
+
/**
|
|
24
|
+
* Base64 encoded data
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof LicenseResultAllOf
|
|
27
|
+
*/
|
|
28
|
+
License: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { AuthenticityResult } from './authenticity-result';
|
|
17
|
+
import { ChosenDocumentTypeResult } from './chosen-document-type-result';
|
|
18
|
+
import { DocBarCodeInfo } from './doc-bar-code-info';
|
|
19
|
+
import { DocumentImageResult } from './document-image-result';
|
|
20
|
+
import { DocumentPositionResult } from './document-position-result';
|
|
21
|
+
import { DocumentTypesCandidatesResult } from './document-types-candidates-result';
|
|
22
|
+
import { EncryptedRCLResult } from './encrypted-rclresult';
|
|
23
|
+
import { GraphicsResult } from './graphics-result';
|
|
24
|
+
import { ImageQualityResult } from './image-quality-result';
|
|
25
|
+
import { ImagesResult } from './images-result';
|
|
26
|
+
import { LexicalAnalysisResult } from './lexical-analysis-result';
|
|
27
|
+
import { LicenseResultAllOf } from './license-result-all-of';
|
|
28
|
+
import { ResultItem } from './result-item';
|
|
29
|
+
import { StatusResult } from './status-result';
|
|
30
|
+
import { TextDataResult } from './text-data-result';
|
|
31
|
+
import { TextResult } from './text-result';
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @type LicenseResult
|
|
35
|
+
* @export
|
|
36
|
+
*/
|
|
37
|
+
export type LicenseResult = LicenseResultAllOf & ResultItem;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Regula Document Reader Web API
|
|
5
|
+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 6.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { BcPDF417INFO } from './bc-pdf417-info';
|
|
17
|
+
import { BcROIDETECT } from './bc-roidetect';
|
|
18
|
+
import { DataModule } from './data-module';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PArrayField
|
|
24
|
+
*/
|
|
25
|
+
export interface PArrayField {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof PArrayField
|
|
30
|
+
*/
|
|
31
|
+
bcAngle_DETECT?: number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof PArrayField
|
|
36
|
+
*/
|
|
37
|
+
bcCodeResult?: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof PArrayField
|
|
42
|
+
*/
|
|
43
|
+
bcCountModule?: number;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<DataModule>}
|
|
47
|
+
* @memberof PArrayField
|
|
48
|
+
*/
|
|
49
|
+
bcDataModule?: Array<DataModule>;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {BcPDF417INFO}
|
|
53
|
+
* @memberof PArrayField
|
|
54
|
+
*/
|
|
55
|
+
bcPDF417INFO?: BcPDF417INFO;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {BcROIDETECT}
|
|
59
|
+
* @memberof PArrayField
|
|
60
|
+
*/
|
|
61
|
+
bcROI_DETECT?: BcROIDETECT;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof PArrayField
|
|
66
|
+
*/
|
|
67
|
+
bcTextDecoderTypes?: number;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {number}
|
|
71
|
+
* @memberof PArrayField
|
|
72
|
+
*/
|
|
73
|
+
bcTextFieldType?: number;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof PArrayField
|
|
78
|
+
*/
|
|
79
|
+
bcType_DECODE?: number;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {number}
|
|
83
|
+
* @memberof PArrayField
|
|
84
|
+
*/
|
|
85
|
+
bcType_DETECT?: number;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { ContainerList } from './container-list';
|
|
16
17
|
import { ProcessParams } from './process-params';
|
|
17
18
|
import { ProcessRequestImage } from './process-request-image';
|
|
18
19
|
import { ProcessSystemInfo } from './process-system-info';
|
|
@@ -23,6 +24,12 @@ import { ProcessSystemInfo } from './process-system-info';
|
|
|
23
24
|
* @interface ProcessRequest
|
|
24
25
|
*/
|
|
25
26
|
export interface ProcessRequest {
|
|
27
|
+
/**
|
|
28
|
+
* session id
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof ProcessRequest
|
|
31
|
+
*/
|
|
32
|
+
tag?: string;
|
|
26
33
|
/**
|
|
27
34
|
*
|
|
28
35
|
* @type {ProcessParams}
|
|
@@ -34,7 +41,13 @@ export interface ProcessRequest {
|
|
|
34
41
|
* @type {Array<ProcessRequestImage>}
|
|
35
42
|
* @memberof ProcessRequest
|
|
36
43
|
*/
|
|
37
|
-
List
|
|
44
|
+
List?: Array<ProcessRequestImage>;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {ContainerList}
|
|
48
|
+
* @memberof ProcessRequest
|
|
49
|
+
*/
|
|
50
|
+
ContainerList?: ContainerList;
|
|
38
51
|
/**
|
|
39
52
|
*
|
|
40
53
|
* @type {ProcessSystemInfo}
|