Skip to content

Commit 2123db8

Browse files
author
regula-bot
committed
Merge remote-tracking branch 'origin/develop' into stable
2 parents 4b37080 + 9b494f5 commit 2123db8

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

src/models/check-diagnose.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ export enum CheckDiagnose {
9393
TEXT_COLOR_SHOULD_BE_GREEN = 131,
9494
TEXT_COLOR_SHOULD_BE_RED = 132,
9595
TEXT_SHOULD_BE_BLACK = 133,
96+
TEXT_IS_ABSENT = 134,
9697
BARCODE_WAS_READ_WITH_ERRORS = 140,
9798
BARCODE_DATA_FORMAT_ERROR = 141,
9899
BARCODE_SIZE_PARAMS_ERROR = 142,

src/models/image-quality-check-type.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ export enum ImageQualityCheckType {
4343
*/
4444
Portrait = 7,
4545
/**
46+
* Signals if the document contains handwritten text in the scanned fields
47+
*/
48+
Handwritten = 8,
49+
/**
4650
* Signals if the document image is bright enough
4751
*/
4852
Brightness = 9,

src/models/process-params.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,12 @@ export interface ProcessParams {
451451
* @memberof ProcessParams
452452
*/
453453
'disableAuthResolutionFilter'?: boolean;
454+
/**
455+
* When enabled, this parameter marks security checks that don’t meet minimum requirements as \'Failed\' (instead of \'WasNotDone\'), which causes the overall security status to be \'Failed\'.
456+
* @type {boolean}
457+
* @memberof ProcessParams
458+
*/
459+
'strictSecurityChecks'?: boolean;
454460
}
455461

456462

0 commit comments

Comments
 (0)