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
3 changes: 3 additions & 0 deletions src/models/check-diagnose.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export enum CheckDiagnose {
FIELD_POS_CORRECTOR_LANDMARKS_CHECK_ERROR = 83,
FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR = 84,
FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR = 85,
FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION = 86,
OVI_IR_INVISIBLE = 90,
OVI_INSUFFICIENT_AREA = 91,
OVI_COLOR_INVARIABLE = 92,
Expand Down Expand Up @@ -103,6 +104,7 @@ export enum CheckDiagnose {
BARCODE_SIZE_PARAMS_ERROR = 142,
NOT_ALL_BARCODES_READ = 143,
GLARES_IN_BARCODE_AREA = 144,
NO_CERTIFICATE_FOR_DIGITAL_SIGNATURE_CHECK = 145,
PORTRAIT_COMPARISON_PORTRAITS_DIFFER = 150,
PORTRAIT_COMPARISON_NO_SERVICE_REPLY = 151,
PORTRAIT_COMPARISON_SERVICE_ERROR = 152,
Expand Down Expand Up @@ -132,6 +134,7 @@ export enum CheckDiagnose {
OCR_QUALITY_INVALID_FONT = 221,
OCR_QUALITY_INVALID_BACKGROUND = 222,
LASINK_INVALID_LINES_FREQUENCY = 230,
DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
CHD_ICAO_IDB_BASE32_ERROR = 243,
Expand Down
6 changes: 5 additions & 1 deletion src/models/scenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ export enum Scenario {
/**
* Scenario for obtaining an original image without any processing
*/
CAPTURE = 'Capture'
CAPTURE = 'Capture',
/**
* Processing scenario for Digital Travel Credentials (DTC-VC) data processing
*/
DTC = 'DTC'
}


Expand Down
10 changes: 9 additions & 1 deletion src/models/security-feature-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,15 @@ export enum SecurityFeatureType {
/**
* Contact chip check
*/
CONTACT_CHIP_CLASSIFICATION = 51
CONTACT_CHIP_CLASSIFICATION = 51,
/**
* Head position check
*/
HEAD_POSITION_CHECK = 52,
/**
* Black and white copy check
*/
LIVENESS_BLACK_AND_WHITE_COPY_CHECK = 53
}


Expand Down
18 changes: 17 additions & 1 deletion src/models/text-field-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1165,6 +1165,18 @@ export enum TextFieldType {
*/
ISO_ISSUER_ID_NUMBER = 336,
/**
* DTC version
*/
DTC_VERSION = 337,
/**
* DTC ID
*/
DTC_ID = 338,
/**
* DTC date of expiry
*/
DTC_DATE_OF_EXPIRY = 339,
/**
* GNIB number
*/
GNIB_NUMBER = 340,
Expand Down Expand Up @@ -2571,7 +2583,11 @@ export enum TextFieldType {
/**
* Date of First Positive Test Result
*/
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT = 691
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT = 691,
/**
* EF.CardAccess
*/
EF_CARD_ACCESS = 692
}


Expand Down
Loading