diff --git a/src/models/image-quality-check-type.ts b/src/models/image-quality-check-type.ts index e7843e6..4287139 100644 --- a/src/models/image-quality-check-type.ts +++ b/src/models/image-quality-check-type.ts @@ -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, diff --git a/src/models/process-params.ts b/src/models/process-params.ts index 468cb6b..144ca51 100644 --- a/src/models/process-params.ts +++ b/src/models/process-params.ts @@ -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; }