@regulaforensics/document-reader-webclient 9.5.864-rc → 9.5.865-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/dist/index.d.ts +12 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6043,6 +6043,12 @@ export declare interface LivenessParams {
|
|
|
6043
6043
|
* @memberof LivenessParams
|
|
6044
6044
|
*/
|
|
6045
6045
|
'checkGeometry'?: boolean;
|
|
6046
|
+
/**
|
|
6047
|
+
* This parameter is used to enable Barcode background check as part of the Liveness checks
|
|
6048
|
+
* @type {boolean}
|
|
6049
|
+
* @memberof LivenessParams
|
|
6050
|
+
*/
|
|
6051
|
+
'checkBarcodeBackground'?: boolean;
|
|
6046
6052
|
}
|
|
6047
6053
|
|
|
6048
6054
|
/**
|
|
@@ -9089,12 +9095,6 @@ export declare interface ProcessParams {
|
|
|
9089
9095
|
* @memberof ProcessParams
|
|
9090
9096
|
*/
|
|
9091
9097
|
'mrzFormatsFilter'?: Array<MRZFormat>;
|
|
9092
|
-
/**
|
|
9093
|
-
* When enabled, make sure that in series processing MRZ is located fully inside the result document image, if present on the document. Enabling this option may add extra processing time, by disabling optimizations, but allows more stability in output image quality. Disabled by default.
|
|
9094
|
-
* @type {boolean}
|
|
9095
|
-
* @memberof ProcessParams
|
|
9096
|
-
*/
|
|
9097
|
-
'forceReadMrzBeforeLocate'?: boolean;
|
|
9098
9098
|
/**
|
|
9099
9099
|
* This option can be disabled to stop parsing after barcode is read. Enabled by default.
|
|
9100
9100
|
* @type {boolean}
|
|
@@ -9263,6 +9263,12 @@ export declare interface ProcessParams {
|
|
|
9263
9263
|
* @memberof ProcessParams
|
|
9264
9264
|
*/
|
|
9265
9265
|
'checkVDS'?: boolean;
|
|
9266
|
+
/**
|
|
9267
|
+
* When enabled, the age check status affects the overall status.
|
|
9268
|
+
* @type {boolean}
|
|
9269
|
+
* @memberof ProcessParams
|
|
9270
|
+
*/
|
|
9271
|
+
'strictAgeCheck'?: boolean;
|
|
9266
9272
|
}
|
|
9267
9273
|
|
|
9268
9274
|
/**
|
package/package.json
CHANGED