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