@regulaforensics/document-reader-webclient 7.6.298-rc → 7.6.299-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 +29 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -271,6 +271,18 @@ 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;
|
|
280
|
+
/**
|
|
281
|
+
* This parameter is used to enable Dynaprint check
|
|
282
|
+
* @type {boolean}
|
|
283
|
+
* @memberof LivenessParams
|
|
284
|
+
*/
|
|
285
|
+
checkDynaprint?: boolean;
|
|
274
286
|
}
|
|
275
287
|
/**
|
|
276
288
|
*
|
|
@@ -368,6 +380,12 @@ export interface AuthParams {
|
|
|
368
380
|
* @memberof AuthParams
|
|
369
381
|
*/
|
|
370
382
|
checkLetterScreen?: boolean;
|
|
383
|
+
/**
|
|
384
|
+
* This parameter is used to enable Security text check
|
|
385
|
+
* @type {boolean}
|
|
386
|
+
* @memberof AuthParams
|
|
387
|
+
*/
|
|
388
|
+
checkSecurityText?: boolean;
|
|
371
389
|
}
|
|
372
390
|
/**
|
|
373
391
|
* Regula Document Reader Web API
|
|
@@ -636,6 +654,7 @@ export enum CheckDiagnose {
|
|
|
636
654
|
OCR_QUALITY_INVALID_FONT = 221,
|
|
637
655
|
OCR_QUALITY_INVALID_BACKGROUND = 222,
|
|
638
656
|
LASINK_INVALID_LINES_FREQUENCY = 230,
|
|
657
|
+
DOC_LIVENESS_DOCUMENT_NOT_LIVE = 238,
|
|
639
658
|
DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
|
|
640
659
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
|
|
641
660
|
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
|
|
@@ -6836,7 +6855,15 @@ export enum TextFieldType {
|
|
|
6836
6855
|
/**
|
|
6837
6856
|
* EF.CardAccess
|
|
6838
6857
|
*/
|
|
6839
|
-
EF_CARD_ACCESS = 692
|
|
6858
|
+
EF_CARD_ACCESS = 692,
|
|
6859
|
+
/**
|
|
6860
|
+
* Short flight number
|
|
6861
|
+
*/
|
|
6862
|
+
SHORT_FLIGHT_NUMBER = 693,
|
|
6863
|
+
/**
|
|
6864
|
+
* Airline code
|
|
6865
|
+
*/
|
|
6866
|
+
AIRLINE_CODE = 694
|
|
6840
6867
|
}
|
|
6841
6868
|
/**
|
|
6842
6869
|
* Regula Document Reader Web API
|
|
@@ -7990,7 +8017,7 @@ export interface FaceApi {
|
|
|
7990
8017
|
*/
|
|
7991
8018
|
proxy_type?: number;
|
|
7992
8019
|
/**
|
|
7993
|
-
*
|
|
8020
|
+
* The age threshold for the portrait comparison. Default: 13.
|
|
7994
8021
|
* @type {number}
|
|
7995
8022
|
* @memberof FaceApi
|
|
7996
8023
|
*/
|
package/package.json
CHANGED