@regulaforensics/document-reader-webclient 7.6.303-nightly → 7.6.305-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/main/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +11 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3313,7 +3313,11 @@ export enum ImageQualityCheckType {
|
|
|
3313
3313
|
/**
|
|
3314
3314
|
* Signals if the document image is bright enough
|
|
3315
3315
|
*/
|
|
3316
|
-
Brightness = 9
|
|
3316
|
+
Brightness = 9,
|
|
3317
|
+
/**
|
|
3318
|
+
* Signals if the document image has occlusion
|
|
3319
|
+
*/
|
|
3320
|
+
Occlusion = 10
|
|
3317
3321
|
}
|
|
3318
3322
|
/**
|
|
3319
3323
|
*
|
|
@@ -8210,7 +8214,11 @@ export enum InputImageQualityChecks {
|
|
|
8210
8214
|
/**
|
|
8211
8215
|
* Signals if the document image is bright enough
|
|
8212
8216
|
*/
|
|
8213
|
-
Brightness = "brightnessCheck"
|
|
8217
|
+
Brightness = "brightnessCheck",
|
|
8218
|
+
/**
|
|
8219
|
+
* Signals if the document image has occlusion
|
|
8220
|
+
*/
|
|
8221
|
+
Occlusion = "occlusionCheck"
|
|
8214
8222
|
}
|
|
8215
8223
|
/**
|
|
8216
8224
|
*
|
|
@@ -10904,6 +10912,7 @@ export const instanceOfProcessRequest: (data: any) => data is ProcessRequestExt;
|
|
|
10904
10912
|
export class DocumentReaderApi {
|
|
10905
10913
|
constructor(configuration?: ConfigurationParameters, basePath?: string, axios?: AxiosInstance);
|
|
10906
10914
|
ping(xRequestID?: string): Promise<DeviceInfo>;
|
|
10915
|
+
health(xRequestID?: string): Promise<Healthcheck>;
|
|
10907
10916
|
/**
|
|
10908
10917
|
*
|
|
10909
10918
|
* @summary Process list of documents images and return extracted data
|
package/package.json
CHANGED