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
4 changes: 4 additions & 0 deletions src/models/image-quality-check-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ export enum ImageQualityCheckType {
*/
Portrait = 7,
/**
* Signals if the document contains handwritten text in the scanned fields
*/
Handwritten = 8,
/**
* Signals if the document image is bright enough
*/
Brightness = 9,
Expand Down
6 changes: 6 additions & 0 deletions src/models/process-params.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,12 @@ export interface ProcessParams {
* @memberof ProcessParams
*/
'disableAuthResolutionFilter'?: boolean;
/**
* 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\'.
* @type {boolean}
* @memberof ProcessParams
*/
'strictSecurityChecks'?: boolean;
}


Expand Down