@regulaforensics/vp-frontend-document-components 7.6.2066-nightly → 7.6.2068-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 +3 -6
- package/dist/main.iife.js +2 -2
- package/dist/main.js +4 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export declare interface BaseRequest {
|
|
|
9
9
|
tag?: string;
|
|
10
10
|
tenant?: string;
|
|
11
11
|
env?: string;
|
|
12
|
+
imageInputParam?: ImageInputParamType;
|
|
13
|
+
processParam: DocumentReaderProcessParam;
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
export declare enum CameraFacingMode {
|
|
@@ -431,10 +433,7 @@ export declare interface ImageInputParamType {
|
|
|
431
433
|
resolutionType: number;
|
|
432
434
|
}
|
|
433
435
|
|
|
434
|
-
export declare
|
|
435
|
-
imageInputParam?: ImageInputParamType;
|
|
436
|
-
processParam: Pick<DocumentReaderProcessParam, 'returnPackageForReprocess' | 'returnUncroppedImage' | 'scenario' | 'backendProcessing'>;
|
|
437
|
-
}
|
|
436
|
+
export declare type ImageProcessingRequest = BaseRequest;
|
|
438
437
|
|
|
439
438
|
export declare enum ImageQualityChecks {
|
|
440
439
|
Glares = "glaresCheck",
|
|
@@ -508,9 +507,7 @@ export declare interface ProcessingRequest extends BaseRequest {
|
|
|
508
507
|
delegateURL: string;
|
|
509
508
|
httpHeaders?: Record<string, string>;
|
|
510
509
|
};
|
|
511
|
-
processParam: DocumentReaderProcessParam;
|
|
512
510
|
imagesList?: Array<DocumentReaderImage>;
|
|
513
|
-
imageInputParam?: ImageInputParamType;
|
|
514
511
|
}
|
|
515
512
|
|
|
516
513
|
export declare interface ProcessRejectResponse extends ProcessResponse {
|