@regulaforensics/document-reader-webclient 7.6.303-nightly → 7.6.304-rc
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 +2 -29
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -271,18 +271,6 @@ 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;
|
|
286
274
|
}
|
|
287
275
|
/**
|
|
288
276
|
*
|
|
@@ -380,12 +368,6 @@ export interface AuthParams {
|
|
|
380
368
|
* @memberof AuthParams
|
|
381
369
|
*/
|
|
382
370
|
checkLetterScreen?: boolean;
|
|
383
|
-
/**
|
|
384
|
-
* This parameter is used to enable Security text check
|
|
385
|
-
* @type {boolean}
|
|
386
|
-
* @memberof AuthParams
|
|
387
|
-
*/
|
|
388
|
-
checkSecurityText?: boolean;
|
|
389
371
|
}
|
|
390
372
|
/**
|
|
391
373
|
* Regula Document Reader Web API
|
|
@@ -654,7 +636,6 @@ export enum CheckDiagnose {
|
|
|
654
636
|
OCR_QUALITY_INVALID_FONT = 221,
|
|
655
637
|
OCR_QUALITY_INVALID_BACKGROUND = 222,
|
|
656
638
|
LASINK_INVALID_LINES_FREQUENCY = 230,
|
|
657
|
-
DOC_LIVENESS_DOCUMENT_NOT_LIVE = 238,
|
|
658
639
|
DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
|
|
659
640
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
|
|
660
641
|
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
|
|
@@ -6855,15 +6836,7 @@ export enum TextFieldType {
|
|
|
6855
6836
|
/**
|
|
6856
6837
|
* EF.CardAccess
|
|
6857
6838
|
*/
|
|
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
|
|
6839
|
+
EF_CARD_ACCESS = 692
|
|
6867
6840
|
}
|
|
6868
6841
|
/**
|
|
6869
6842
|
* Regula Document Reader Web API
|
|
@@ -8017,7 +7990,7 @@ export interface FaceApi {
|
|
|
8017
7990
|
*/
|
|
8018
7991
|
proxy_type?: number;
|
|
8019
7992
|
/**
|
|
8020
|
-
*
|
|
7993
|
+
* Minimum age of a child, at which portrait comparison result will be effective. Default: 13.
|
|
8021
7994
|
* @type {number}
|
|
8022
7995
|
* @memberof FaceApi
|
|
8023
7996
|
*/
|
package/package.json
CHANGED