@regulaforensics/document-reader-webclient 7.5.156-rc → 7.5.158-nightly
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/lib/index.d.ts +5 -11
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
|
@@ -916,11 +916,11 @@ export enum SecurityFeatureType {
|
|
|
916
916
|
*/
|
|
917
917
|
PORTRAIT_COMPARISON_BARCODE_VS_CAMERA = 49,
|
|
918
918
|
/**
|
|
919
|
-
* Digital signature
|
|
919
|
+
* Digital signature check
|
|
920
920
|
*/
|
|
921
921
|
CHECK_DIGITAL_SIGNATURE = 50,
|
|
922
922
|
/**
|
|
923
|
-
* Contact
|
|
923
|
+
* Contact chip check
|
|
924
924
|
*/
|
|
925
925
|
CONTACT_CHIP_CLASSIFICATION = 51
|
|
926
926
|
}
|
|
@@ -960,12 +960,6 @@ export interface IdentResultAllOf {
|
|
|
960
960
|
* @memberof IdentResultAllOf
|
|
961
961
|
*/
|
|
962
962
|
EtalonImage?: ImageData;
|
|
963
|
-
/**
|
|
964
|
-
* Probability percent for IMAGE_PATTERN check or element\'s visibility for IR_VISIBILITY
|
|
965
|
-
* @type {number}
|
|
966
|
-
* @memberof IdentResultAllOf
|
|
967
|
-
*/
|
|
968
|
-
PercentValue?: number;
|
|
969
963
|
/**
|
|
970
964
|
*
|
|
971
965
|
* @type {AreaContainer}
|
|
@@ -10402,9 +10396,9 @@ export class LowLvlResponse implements ProcessResponse {
|
|
|
10402
10396
|
imagesResult(): ImagesResult | undefined;
|
|
10403
10397
|
barcodeResult(): DocBarCodeInfo | undefined;
|
|
10404
10398
|
documentTypeResults(): Array<ChosenDocumentTypeResult> | undefined;
|
|
10405
|
-
resultByType(type: Result):
|
|
10406
|
-
resultByTypeAndPage(type: Result, page_idx?: number):
|
|
10407
|
-
resultsByType(type: Result):
|
|
10399
|
+
resultByType(type: Result): ContainerList['List'][number] | undefined;
|
|
10400
|
+
resultByTypeAndPage(type: Result, page_idx?: number): ContainerList['List'][number] | undefined;
|
|
10401
|
+
resultsByType(type: Result): ContainerList['List'];
|
|
10408
10402
|
}
|
|
10409
10403
|
export interface ProcessRequestImageWrapper extends Omit<ProcessRequestImage, 'ImageData'> {
|
|
10410
10404
|
ImageData: ArrayBuffer | Base64String;
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"> 0.2%",
|
|
6
6
|
"not dead"
|
|
7
7
|
],
|
|
8
|
-
"version": "7.5.
|
|
8
|
+
"version": "7.5.158-nightly",
|
|
9
9
|
"description": "Regula Document Reader js client for the browser and node.js based on axios",
|
|
10
10
|
"author": "Regula Forensics, Inc.",
|
|
11
11
|
"keywords": [
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"*.{js,ts}": "eslint --fix"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@swc/helpers": "^0.5.
|
|
55
|
-
"axios": "^1.7.
|
|
54
|
+
"@swc/helpers": "^0.5.13",
|
|
55
|
+
"axios": "^1.7.7",
|
|
56
56
|
"base64-arraybuffer": "^1.0.2",
|
|
57
57
|
"pako": "^2.1.0"
|
|
58
58
|
},
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"eslint-config-prettier": "^9.1.0",
|
|
67
67
|
"eslint-plugin-prettier": "^5.2.1",
|
|
68
68
|
"husky": "^9.1.5",
|
|
69
|
-
"lint-staged": "^15.2.
|
|
69
|
+
"lint-staged": "^15.2.10",
|
|
70
70
|
"parcel": "^2.12.0",
|
|
71
71
|
"prettier": "^3.3.3",
|
|
72
72
|
"typescript": "^5.3.2"
|