From 8e04e37b2c714cfd325c7137da9ef73792444ade Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 21 Aug 2025 06:33:52 +0000 Subject: [PATCH] Commit: 5671dcd5 --- src/models/image-quality-check-type.ts | 4 ++++ src/models/process-params.ts | 6 ++++++ 2 files changed, 10 insertions(+) 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; }