@regulaforensics/document-reader-webclient 7.5.155-nightly → 7.5.156-rc
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 +11 -5
- 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 сheck
|
|
920
920
|
*/
|
|
921
921
|
CHECK_DIGITAL_SIGNATURE = 50,
|
|
922
922
|
/**
|
|
923
|
-
* Contact
|
|
923
|
+
* Contact сhip check
|
|
924
924
|
*/
|
|
925
925
|
CONTACT_CHIP_CLASSIFICATION = 51
|
|
926
926
|
}
|
|
@@ -960,6 +960,12 @@ 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;
|
|
963
969
|
/**
|
|
964
970
|
*
|
|
965
971
|
* @type {AreaContainer}
|
|
@@ -10396,9 +10402,9 @@ export class LowLvlResponse implements ProcessResponse {
|
|
|
10396
10402
|
imagesResult(): ImagesResult | undefined;
|
|
10397
10403
|
barcodeResult(): DocBarCodeInfo | undefined;
|
|
10398
10404
|
documentTypeResults(): Array<ChosenDocumentTypeResult> | undefined;
|
|
10399
|
-
resultByType(type: Result):
|
|
10400
|
-
resultByTypeAndPage(type: Result, page_idx?: number):
|
|
10401
|
-
resultsByType(type: Result):
|
|
10405
|
+
resultByType(type: Result): ResultItem | undefined;
|
|
10406
|
+
resultByTypeAndPage(type: Result, page_idx?: number): ResultItem | undefined;
|
|
10407
|
+
resultsByType(type: Result): Array<ResultItem | AuthenticityResult | ImageQualityCheckList>;
|
|
10402
10408
|
}
|
|
10403
10409
|
export interface ProcessRequestImageWrapper extends Omit<ProcessRequestImage, 'ImageData'> {
|
|
10404
10410
|
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.156-rc",
|
|
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.12",
|
|
55
|
+
"axios": "^1.7.4",
|
|
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.9",
|
|
70
70
|
"parcel": "^2.12.0",
|
|
71
71
|
"prettier": "^3.3.3",
|
|
72
72
|
"typescript": "^5.3.2"
|