@regulaforensics/vp-frontend-document-components 8.2.2332-rc → 8.2.2335-nightly

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -190,7 +190,7 @@ export declare class DocumentReaderProcessor {
190
190
  shutdown(): void;
191
191
  }
192
192
 
193
- export declare type DocumentReaderProcessParam = Pick<ProcessParams, 'generateNumericCodes' | 'returnUncroppedImage' | 'log' | 'resultTypeOutput' | 'customParams' | 'imageOutputMaxHeight' | 'imageOutputMaxWidth' | 'fieldTypesFilter' | 'dateFormat' | 'measureSystem' | 'imageDpiOutMax' | 'alreadyCropped' | 'fastDocDetect' | 'updateOCRValidityByGlare' | 'returnCroppedBarcode' | 'forceDocFormat' | 'noGraphics' | 'depersonalizeLog' | 'multiDocOnImage' | 'shiftExpiryDate' | 'minimalHolderAge' | 'mrzFormatsFilter' | 'forceReadMrzBeforeLocate' | 'parseBarcodes' | 'splitNames' | 'doublePageSpread' | 'strictImageQuality' | 'doDetectCan' | 'generateDoublePageSpreadImage' | 'mrzDetectMode' | 'strictBarcodeDigitalSignatureCheck' | 'selectLongestNames'> & {
193
+ export declare type DocumentReaderProcessParam = Pick<ProcessParams, 'generateNumericCodes' | 'returnUncroppedImage' | 'log' | 'resultTypeOutput' | 'customParams' | 'imageOutputMaxHeight' | 'imageOutputMaxWidth' | 'fieldTypesFilter' | 'dateFormat' | 'measureSystem' | 'imageDpiOutMax' | 'alreadyCropped' | 'fastDocDetect' | 'updateOCRValidityByGlare' | 'returnCroppedBarcode' | 'forceDocFormat' | 'noGraphics' | 'depersonalizeLog' | 'multiDocOnImage' | 'shiftExpiryDate' | 'minimalHolderAge' | 'mrzFormatsFilter' | 'forceReadMrzBeforeLocate' | 'parseBarcodes' | 'splitNames' | 'doublePageSpread' | 'strictImageQuality' | 'doDetectCan' | 'generateDoublePageSpreadImage' | 'mrzDetectMode' | 'strictBarcodeDigitalSignatureCheck' | 'selectLongestNames' | 'disableAuthResolutionFilter'> & {
194
194
  generateAlpha2Codes?: boolean;
195
195
  returnPackageForReprocess?: boolean;
196
196
  scenario?: InternalScenarios;
@@ -247,7 +247,8 @@ export declare class DocumentReaderService {
247
247
  private sendMessage;
248
248
  private prepare;
249
249
  initialize(initData?: {
250
- license: string | undefined;
250
+ license?: string;
251
+ module?: ModuleType;
251
252
  }): Promise<License>;
252
253
  private doInitialize;
253
254
  private doProcess;
@@ -473,6 +474,11 @@ export declare enum MirrorType {
473
474
  noMirror = "noMirror"
474
475
  }
475
476
 
477
+ export declare enum ModuleType {
478
+ BarcodeMRZ = "BarcodeMRZ",
479
+ BoundsLite = "BoundsLite"
480
+ }
481
+
476
482
  export declare interface NewTransaction {
477
483
  ContainerList: ContainerList;
478
484
  TransactionInfo: TransactionInfo;