@regulaforensics/vp-frontend-document-components 7.5.1996-nightly → 7.5.2000-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 CHANGED
@@ -210,7 +210,7 @@ export declare interface DocumentReaderProcessParam {
210
210
  parseBarcodes?: boolean;
211
211
  splitNames?: boolean;
212
212
  imageQa?: {
213
- expectedPass?: Array<string>;
213
+ expectedPass?: Array<ImageQualityChecks>;
214
214
  dpiThreshold?: number;
215
215
  glaresCheck?: boolean;
216
216
  glaresCheckParams?: {
@@ -462,6 +462,16 @@ export declare interface ImageProcessingRequest extends BaseRequest {
462
462
  processParam: Pick<DocumentReaderProcessParam, 'returnPackageForReprocess' | 'returnUncroppedImage' | 'scenario' | 'backendProcessing'>;
463
463
  }
464
464
 
465
+ export declare enum ImageQualityChecks {
466
+ Glares = "glaresCheck",
467
+ Focus = "focusCheck",
468
+ Resolution = "dpiThreshold",
469
+ Perspective = "perspectiveCheck",
470
+ Bounds = "documentPosition",
471
+ Portrait = "portraitCheck",
472
+ Brightness = "brightnessCheck"
473
+ }
474
+
465
475
  export declare enum InternalScenarios {
466
476
  MrzAndLocate = "MrzAndLocate",
467
477
  MrzOrLocate = "MrzOrLocate",
@@ -618,6 +628,9 @@ export declare interface WidthAndHeight {
618
628
  height: number;
619
629
  }
620
630
 
631
+
632
+ export * from "@regulaforensics/document-reader-webclient";
633
+
621
634
  export { }
622
635
 
623
636