Skip to content

Commit 5504f16

Browse files
committed
Commit: 070f535d
1 parent 5afaa39 commit 5504f16

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

src/models/auth-params.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ export interface AuthParams {
111111
* @memberof AuthParams
112112
*/
113113
checkLetterScreen?: boolean;
114+
/**
115+
* This parameter is used to enable Security text check
116+
* @type {boolean}
117+
* @memberof AuthParams
118+
*/
119+
checkSecurityText?: boolean;
114120
}
115121

116122

src/models/check-diagnose.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ export enum CheckDiagnose {
134134
OCR_QUALITY_INVALID_FONT = 221,
135135
OCR_QUALITY_INVALID_BACKGROUND = 222,
136136
LASINK_INVALID_LINES_FREQUENCY = 230,
137+
DOC_LIVENESS_DOCUMENT_NOT_LIVE = 238,
137138
DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
138139
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
139140
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,

src/models/liveness-params.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ export interface LivenessParams {
4444
* @memberof LivenessParams
4545
*/
4646
checkED?: boolean;
47+
/**
48+
* This parameter is used to enable Black and white copy check
49+
* @type {boolean}
50+
* @memberof LivenessParams
51+
*/
52+
checkBlackAndWhiteCopy?: boolean;
4753
}
4854

4955

0 commit comments

Comments
 (0)