@regulaforensics/document-reader-webclient 7.6.294-rc → 7.6.295-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 +13 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -271,6 +271,12 @@ export interface LivenessParams {
|
|
|
271
271
|
* @memberof LivenessParams
|
|
272
272
|
*/
|
|
273
273
|
checkED?: boolean;
|
|
274
|
+
/**
|
|
275
|
+
* This parameter is used to enable Black and white copy check
|
|
276
|
+
* @type {boolean}
|
|
277
|
+
* @memberof LivenessParams
|
|
278
|
+
*/
|
|
279
|
+
checkBlackAndWhiteCopy?: boolean;
|
|
274
280
|
}
|
|
275
281
|
/**
|
|
276
282
|
*
|
|
@@ -368,6 +374,12 @@ export interface AuthParams {
|
|
|
368
374
|
* @memberof AuthParams
|
|
369
375
|
*/
|
|
370
376
|
checkLetterScreen?: boolean;
|
|
377
|
+
/**
|
|
378
|
+
* This parameter is used to enable Security text check
|
|
379
|
+
* @type {boolean}
|
|
380
|
+
* @memberof AuthParams
|
|
381
|
+
*/
|
|
382
|
+
checkSecurityText?: boolean;
|
|
371
383
|
}
|
|
372
384
|
/**
|
|
373
385
|
* Regula Document Reader Web API
|
|
@@ -636,6 +648,7 @@ export enum CheckDiagnose {
|
|
|
636
648
|
OCR_QUALITY_INVALID_FONT = 221,
|
|
637
649
|
OCR_QUALITY_INVALID_BACKGROUND = 222,
|
|
638
650
|
LASINK_INVALID_LINES_FREQUENCY = 230,
|
|
651
|
+
DOC_LIVENESS_DOCUMENT_NOT_LIVE = 238,
|
|
639
652
|
DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
|
|
640
653
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
|
|
641
654
|
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
|
package/package.json
CHANGED