@regulaforensics/document-reader-webclient 8.3.491-rc → 8.3.493-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.cjs +5 -5
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4432,6 +4432,10 @@ export declare enum ImageQualityCheckType {
|
|
|
4432
4432
|
* Signals if the portrait is present
|
|
4433
4433
|
*/
|
|
4434
4434
|
Portrait = 7,
|
|
4435
|
+
/**
|
|
4436
|
+
* Signals if the document contains handwritten text in the scanned fields
|
|
4437
|
+
*/
|
|
4438
|
+
Handwritten = 8,
|
|
4435
4439
|
/**
|
|
4436
4440
|
* Signals if the document image is bright enough
|
|
4437
4441
|
*/
|
|
@@ -8775,6 +8779,12 @@ export declare interface ProcessParams {
|
|
|
8775
8779
|
* @memberof ProcessParams
|
|
8776
8780
|
*/
|
|
8777
8781
|
'disableAuthResolutionFilter'?: boolean;
|
|
8782
|
+
/**
|
|
8783
|
+
* When enabled, this parameter marks security checks that don’t meet minimum requirements as \'Failed\' (instead of \'WasNotDone\'), which causes the overall security status to be \'Failed\'.
|
|
8784
|
+
* @type {boolean}
|
|
8785
|
+
* @memberof ProcessParams
|
|
8786
|
+
*/
|
|
8787
|
+
'strictSecurityChecks'?: boolean;
|
|
8778
8788
|
}
|
|
8779
8789
|
|
|
8780
8790
|
/**
|