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
2 changes: 1 addition & 1 deletion src/models/face-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export interface FaceApi {
*/
proxy_type?: number;
/**
* Minimum age of a child, at which portrait comparison result will be effective. Default: 13.
* The age threshold for the portrait comparison. Default: 13.
* @type {number}
* @memberof FaceApi
*/
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 @@ -50,6 +50,12 @@ export interface LivenessParams {
* @memberof LivenessParams
*/
checkBlackAndWhiteCopy?: boolean;
/**
* This parameter is used to enable Dynaprint check
* @type {boolean}
* @memberof LivenessParams
*/
checkDynaprint?: boolean;
}


10 changes: 9 additions & 1 deletion src/models/text-field-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2587,7 +2587,15 @@ export enum TextFieldType {
/**
* EF.CardAccess
*/
EF_CARD_ACCESS = 692
EF_CARD_ACCESS = 692,
/**
* Short flight number
*/
SHORT_FLIGHT_NUMBER = 693,
/**
* Airline code
*/
AIRLINE_CODE = 694
}


Expand Down