@regulaforensics/document-reader-webclient 7.6.295-nightly → 7.6.297-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 +16 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -277,6 +277,12 @@ export interface LivenessParams {
|
|
|
277
277
|
* @memberof LivenessParams
|
|
278
278
|
*/
|
|
279
279
|
checkBlackAndWhiteCopy?: boolean;
|
|
280
|
+
/**
|
|
281
|
+
* This parameter is used to enable Dynaprint check
|
|
282
|
+
* @type {boolean}
|
|
283
|
+
* @memberof LivenessParams
|
|
284
|
+
*/
|
|
285
|
+
checkDynaprint?: boolean;
|
|
280
286
|
}
|
|
281
287
|
/**
|
|
282
288
|
*
|
|
@@ -6849,7 +6855,15 @@ export enum TextFieldType {
|
|
|
6849
6855
|
/**
|
|
6850
6856
|
* EF.CardAccess
|
|
6851
6857
|
*/
|
|
6852
|
-
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
|
|
6853
6867
|
}
|
|
6854
6868
|
/**
|
|
6855
6869
|
* Regula Document Reader Web API
|
|
@@ -8003,7 +8017,7 @@ export interface FaceApi {
|
|
|
8003
8017
|
*/
|
|
8004
8018
|
proxy_type?: number;
|
|
8005
8019
|
/**
|
|
8006
|
-
*
|
|
8020
|
+
* The age threshold for the portrait comparison. Default: 13.
|
|
8007
8021
|
* @type {number}
|
|
8008
8022
|
* @memberof FaceApi
|
|
8009
8023
|
*/
|
package/package.json
CHANGED