Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion src/models/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,31 @@ export enum Light {
/**
* For internal use
*/
WHITE_SPECIAL = 4194304
WHITE_SPECIAL = 4194304,
/**
* White UV
*/
WHITE_UV = 134,
/**
* White full hologram
*/
WHITE_FULL_HOLO = 67108870,
/**
* HR light
*/
HR_LIGHT = 1073741824,
/**
* HR white
*/
HR_WHITE = 1073741830,
/**
* HR UV
*/
HR_UV = 1073741952,
/**
* HR IR
*/
HR_IR = 1073741848
}


Expand Down
6 changes: 6 additions & 0 deletions src/models/liveness-params.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,11 @@ export interface LivenessParams {
* @memberof LivenessParams
*/
'checkDynaprint'?: boolean;
/**
* This parameter is used to enable Geometry check
* @type {boolean}
* @memberof LivenessParams
*/
'checkGeometry'?: boolean;
}

10 changes: 9 additions & 1 deletion src/models/security-feature-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,15 @@ export enum SecurityFeatureType {
/**
* Black and white copy check
*/
LIVENESS_BLACK_AND_WHITE_COPY_CHECK = 53
LIVENESS_BLACK_AND_WHITE_COPY_CHECK = 53,
/**
* Liveness dynaprint
*/
LIVENESS_DYNAPRINT = 54,
/**
* Liveness geometry check
*/
LIVENESS_GEOMETRY_CHECK = 55
}


Expand Down