@regulaforensics/document-reader-webclient 9.8.1029-rc → 9.8.1031-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/dist/index.d.ts +30 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4623,6 +4623,18 @@ export declare interface ImageQA {
|
|
|
4623
4623
|
* @memberof ImageQA
|
|
4624
4624
|
*/
|
|
4625
4625
|
'glaresCheckParams'?: GlaresCheckParams;
|
|
4626
|
+
/**
|
|
4627
|
+
* This option enables the occlusion detection to identify cases where parts of a document are covered by fingers, hands, or other objects during image capture.
|
|
4628
|
+
* @type {boolean}
|
|
4629
|
+
* @memberof ImageQA
|
|
4630
|
+
*/
|
|
4631
|
+
'occlusionCheck'?: boolean;
|
|
4632
|
+
/**
|
|
4633
|
+
*
|
|
4634
|
+
* @type {OcclusionCheckParams}
|
|
4635
|
+
* @memberof ImageQA
|
|
4636
|
+
*/
|
|
4637
|
+
'occlusionCheckParams'?: OcclusionCheckParams;
|
|
4626
4638
|
}
|
|
4627
4639
|
|
|
4628
4640
|
/**
|
|
@@ -6427,6 +6439,24 @@ export declare interface MRZTestQualityItem {
|
|
|
6427
6439
|
*/
|
|
6428
6440
|
export declare type MRZTestQualityResult = MRZTestQualityItem & ResultItem;
|
|
6429
6441
|
|
|
6442
|
+
/**
|
|
6443
|
+
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
6444
|
+
* Do not edit the file manually.
|
|
6445
|
+
*/
|
|
6446
|
+
/**
|
|
6447
|
+
*
|
|
6448
|
+
* @export
|
|
6449
|
+
* @interface OcclusionCheckParams
|
|
6450
|
+
*/
|
|
6451
|
+
export declare interface OcclusionCheckParams {
|
|
6452
|
+
/**
|
|
6453
|
+
* The maximum size for the occluded area of a document; only those exceeding this size will be validated
|
|
6454
|
+
* @type {number}
|
|
6455
|
+
* @memberof OcclusionCheckParams
|
|
6456
|
+
*/
|
|
6457
|
+
'maxOcclusionPart'?: number;
|
|
6458
|
+
}
|
|
6459
|
+
|
|
6430
6460
|
export declare class OCRSecurityTextChecks implements AuthenticityCheckResult {
|
|
6431
6461
|
List: Array<OCRSecurityTextResult>;
|
|
6432
6462
|
Result: CheckResult;
|
package/package.json
CHANGED