@regulaforensics/document-reader-webclient 8.2.436-nightly → 8.2.437-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.cjs +3 -3
- package/dist/index.d.ts +19 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5087,9 +5087,9 @@ export declare enum LCID {
|
|
|
5087
5087
|
*/
|
|
5088
5088
|
ESTONIAN = 1061,
|
|
5089
5089
|
/**
|
|
5090
|
-
*
|
|
5090
|
+
* Faroese
|
|
5091
5091
|
*/
|
|
5092
|
-
|
|
5092
|
+
FAROESE = 1080,
|
|
5093
5093
|
/**
|
|
5094
5094
|
* Farsi
|
|
5095
5095
|
*/
|
|
@@ -8773,6 +8773,12 @@ export declare interface ProcessParams {
|
|
|
8773
8773
|
* @memberof ProcessParams
|
|
8774
8774
|
*/
|
|
8775
8775
|
'pdfPagesLimit'?: number;
|
|
8776
|
+
/**
|
|
8777
|
+
* This parameter if enabled will ignore the minimum barcode resolution needed to start processing.
|
|
8778
|
+
* @type {boolean}
|
|
8779
|
+
* @memberof ProcessParams
|
|
8780
|
+
*/
|
|
8781
|
+
'disableAuthResolutionFilter'?: boolean;
|
|
8776
8782
|
}
|
|
8777
8783
|
|
|
8778
8784
|
/**
|
|
@@ -15370,7 +15376,15 @@ export declare enum TextFieldType {
|
|
|
15370
15376
|
/**
|
|
15371
15377
|
* Nationality code (Alpha-2)
|
|
15372
15378
|
*/
|
|
15373
|
-
FT_NATIONALITY_CODE_ALPHA2 = 697
|
|
15379
|
+
FT_NATIONALITY_CODE_ALPHA2 = 697,
|
|
15380
|
+
/**
|
|
15381
|
+
* First issue date check digit
|
|
15382
|
+
*/
|
|
15383
|
+
FT_FIRST_ISSUE_DATE_CHECK_DIGIT = 698,
|
|
15384
|
+
/**
|
|
15385
|
+
* First issue date checksum
|
|
15386
|
+
*/
|
|
15387
|
+
FT_FIRST_ISSUE_DATE_CHECKSUM = 699
|
|
15374
15388
|
}
|
|
15375
15389
|
|
|
15376
15390
|
/**
|
|
@@ -15706,13 +15720,13 @@ export declare interface TransactionProcessResult {
|
|
|
15706
15720
|
* @type {OutData}
|
|
15707
15721
|
* @memberof TransactionProcessResult
|
|
15708
15722
|
*/
|
|
15709
|
-
'
|
|
15723
|
+
'outData'?: OutData;
|
|
15710
15724
|
/**
|
|
15711
15725
|
*
|
|
15712
15726
|
* @type {InData}
|
|
15713
15727
|
* @memberof TransactionProcessResult
|
|
15714
15728
|
*/
|
|
15715
|
-
'
|
|
15729
|
+
'inData'?: InData;
|
|
15716
15730
|
/**
|
|
15717
15731
|
*
|
|
15718
15732
|
* @type {string}
|