Skip to content

Commit 61071fb

Browse files
committed
Update clients
1 parent 198eb2a commit 61071fb

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

src/models/check-diagnose.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export enum CheckDiagnose {
6969
FIELD_POS_CORRECTOR_LANDMARKS_CHECK_ERROR = 83,
7070
FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR = 84,
7171
FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR = 85,
72+
FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION = 86,
7273
OVI_IR_INVISIBLE = 90,
7374
OVI_INSUFFICIENT_AREA = 91,
7475
OVI_COLOR_INVARIABLE = 92,
@@ -103,6 +104,7 @@ export enum CheckDiagnose {
103104
BARCODE_SIZE_PARAMS_ERROR = 142,
104105
NOT_ALL_BARCODES_READ = 143,
105106
GLARES_IN_BARCODE_AREA = 144,
107+
NO_CERTIFICATE_FOR_DIGITAL_SIGNATURE_CHECK = 145,
106108
PORTRAIT_COMPARISON_PORTRAITS_DIFFER = 150,
107109
PORTRAIT_COMPARISON_NO_SERVICE_REPLY = 151,
108110
PORTRAIT_COMPARISON_SERVICE_ERROR = 152,
@@ -132,6 +134,7 @@ export enum CheckDiagnose {
132134
OCR_QUALITY_INVALID_FONT = 221,
133135
OCR_QUALITY_INVALID_BACKGROUND = 222,
134136
LASINK_INVALID_LINES_FREQUENCY = 230,
137+
DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
135138
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
136139
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
137140
CHD_ICAO_IDB_BASE32_ERROR = 243,

src/models/scenario.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ export enum Scenario {
9191
/**
9292
* Scenario for obtaining an original image without any processing
9393
*/
94-
CAPTURE = 'Capture'
94+
CAPTURE = 'Capture',
95+
/**
96+
* Processing scenario for Digital Travel Credentials (DTC-VC) data processing
97+
*/
98+
DTC = 'DTC'
9599
}
96100

97101

src/models/security-feature-type.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,15 @@ export enum SecurityFeatureType {
223223
/**
224224
* Contact chip check
225225
*/
226-
CONTACT_CHIP_CLASSIFICATION = 51
226+
CONTACT_CHIP_CLASSIFICATION = 51,
227+
/**
228+
* Head position check
229+
*/
230+
HEAD_POSITION_CHECK = 52,
231+
/**
232+
* Black and white copy check
233+
*/
234+
LIVENESS_BLACK_AND_WHITE_COPY_CHECK = 53
227235
}
228236

229237

src/models/text-field-type.ts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1165,6 +1165,18 @@ export enum TextFieldType {
11651165
*/
11661166
ISO_ISSUER_ID_NUMBER = 336,
11671167
/**
1168+
* DTC version
1169+
*/
1170+
DTC_VERSION = 337,
1171+
/**
1172+
* DTC ID
1173+
*/
1174+
DTC_ID = 338,
1175+
/**
1176+
* DTC date of expiry
1177+
*/
1178+
DTC_DATE_OF_EXPIRY = 339,
1179+
/**
11681180
* GNIB number
11691181
*/
11701182
GNIB_NUMBER = 340,
@@ -2571,7 +2583,11 @@ export enum TextFieldType {
25712583
/**
25722584
* Date of First Positive Test Result
25732585
*/
2574-
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT = 691
2586+
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT = 691,
2587+
/**
2588+
* EF.CardAccess
2589+
*/
2590+
EF_CARD_ACCESS = 692
25752591
}
25762592

25772593

0 commit comments

Comments
 (0)