@regulaforensics/document-reader-webclient 7.7.343-nightly → 7.7.345-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 +40 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -297,6 +297,12 @@ export interface LivenessParams {
|
|
|
297
297
|
* @memberof LivenessParams
|
|
298
298
|
*/
|
|
299
299
|
'checkDynaprint'?: boolean;
|
|
300
|
+
/**
|
|
301
|
+
* This parameter is used to enable Geometry check
|
|
302
|
+
* @type {boolean}
|
|
303
|
+
* @memberof LivenessParams
|
|
304
|
+
*/
|
|
305
|
+
'checkGeometry'?: boolean;
|
|
300
306
|
}
|
|
301
307
|
/**
|
|
302
308
|
*
|
|
@@ -921,7 +927,31 @@ export enum Light {
|
|
|
921
927
|
/**
|
|
922
928
|
* For internal use
|
|
923
929
|
*/
|
|
924
|
-
WHITE_SPECIAL = 4194304
|
|
930
|
+
WHITE_SPECIAL = 4194304,
|
|
931
|
+
/**
|
|
932
|
+
* White UV
|
|
933
|
+
*/
|
|
934
|
+
WHITE_UV = 134,
|
|
935
|
+
/**
|
|
936
|
+
* White full hologram
|
|
937
|
+
*/
|
|
938
|
+
WHITE_FULL_HOLO = 67108870,
|
|
939
|
+
/**
|
|
940
|
+
* HR light
|
|
941
|
+
*/
|
|
942
|
+
HR_LIGHT = 1073741824,
|
|
943
|
+
/**
|
|
944
|
+
* HR white
|
|
945
|
+
*/
|
|
946
|
+
HR_WHITE = 1073741830,
|
|
947
|
+
/**
|
|
948
|
+
* HR UV
|
|
949
|
+
*/
|
|
950
|
+
HR_UV = 1073741952,
|
|
951
|
+
/**
|
|
952
|
+
* HR IR
|
|
953
|
+
*/
|
|
954
|
+
HR_IR = 1073741848
|
|
925
955
|
}
|
|
926
956
|
/**
|
|
927
957
|
*
|
|
@@ -1253,7 +1283,15 @@ export enum SecurityFeatureType {
|
|
|
1253
1283
|
/**
|
|
1254
1284
|
* Black and white copy check
|
|
1255
1285
|
*/
|
|
1256
|
-
LIVENESS_BLACK_AND_WHITE_COPY_CHECK = 53
|
|
1286
|
+
LIVENESS_BLACK_AND_WHITE_COPY_CHECK = 53,
|
|
1287
|
+
/**
|
|
1288
|
+
* Liveness dynaprint
|
|
1289
|
+
*/
|
|
1290
|
+
LIVENESS_DYNAPRINT = 54,
|
|
1291
|
+
/**
|
|
1292
|
+
* Liveness geometry check
|
|
1293
|
+
*/
|
|
1294
|
+
LIVENESS_GEOMETRY_CHECK = 55
|
|
1257
1295
|
}
|
|
1258
1296
|
/**
|
|
1259
1297
|
*
|
package/package.json
CHANGED