@regulaforensics/document-reader-webclient 8.1.367-nightly → 8.1.369-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/main/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +23 -5
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -7085,7 +7085,19 @@ export enum TextFieldType {
|
|
|
7085
7085
|
/**
|
|
7086
7086
|
* Airline code
|
|
7087
7087
|
*/
|
|
7088
|
-
AIRLINE_CODE = 694
|
|
7088
|
+
AIRLINE_CODE = 694,
|
|
7089
|
+
/**
|
|
7090
|
+
* MVC Agency
|
|
7091
|
+
*/
|
|
7092
|
+
FT_MVC_AGENCY = 695,
|
|
7093
|
+
/**
|
|
7094
|
+
* Issuing state code alpha
|
|
7095
|
+
*/
|
|
7096
|
+
FT_ISSUING_STATE_CODE_ALPHA2 = 696,
|
|
7097
|
+
/**
|
|
7098
|
+
* Nationality code alpha
|
|
7099
|
+
*/
|
|
7100
|
+
FT_NATIONALITY_CODE_ALPHA2 = 697
|
|
7089
7101
|
}
|
|
7090
7102
|
/**
|
|
7091
7103
|
* Regula Document Reader Web API
|
|
@@ -9762,7 +9774,7 @@ export interface OneCandidate {
|
|
|
9762
9774
|
* @type {string}
|
|
9763
9775
|
* @memberof OneCandidate
|
|
9764
9776
|
*/
|
|
9765
|
-
'DocumentName'
|
|
9777
|
+
'DocumentName'?: string;
|
|
9766
9778
|
/**
|
|
9767
9779
|
* Unique document type template identifier (Regula\'s internal numeric code)
|
|
9768
9780
|
* @type {number}
|
|
@@ -9792,7 +9804,7 @@ export interface OneCandidate {
|
|
|
9792
9804
|
* @type {FDSIDList}
|
|
9793
9805
|
* @memberof OneCandidate
|
|
9794
9806
|
*/
|
|
9795
|
-
'FDSIDList'
|
|
9807
|
+
'FDSIDList'?: FDSIDList;
|
|
9796
9808
|
/**
|
|
9797
9809
|
* Combination of lighting scheme identifiers (Light enum) required to conduct OCR for this type of document
|
|
9798
9810
|
* @type {number}
|
|
@@ -9873,7 +9885,7 @@ export interface ChosenDocumentType {
|
|
|
9873
9885
|
* @type {string}
|
|
9874
9886
|
* @memberof ChosenDocumentType
|
|
9875
9887
|
*/
|
|
9876
|
-
'DocumentName'
|
|
9888
|
+
'DocumentName'?: string;
|
|
9877
9889
|
/**
|
|
9878
9890
|
* Unique document type template identifier (Regula\'s internal numeric code)
|
|
9879
9891
|
* @type {number}
|
|
@@ -9903,7 +9915,7 @@ export interface ChosenDocumentType {
|
|
|
9903
9915
|
* @type {FDSIDList}
|
|
9904
9916
|
* @memberof ChosenDocumentType
|
|
9905
9917
|
*/
|
|
9906
|
-
'FDSIDList'
|
|
9918
|
+
'FDSIDList'?: FDSIDList;
|
|
9907
9919
|
/**
|
|
9908
9920
|
* Combination of lighting scheme identifiers (Light enum) required to conduct OCR for this type of document
|
|
9909
9921
|
* @type {number}
|
|
@@ -15261,6 +15273,12 @@ export interface ProcessParams {
|
|
|
15261
15273
|
* @memberof ProcessParams
|
|
15262
15274
|
*/
|
|
15263
15275
|
'generateAlpha2Codes'?: boolean;
|
|
15276
|
+
/**
|
|
15277
|
+
* Limits the number of pages to be processed from a PDF file.
|
|
15278
|
+
* @type {number}
|
|
15279
|
+
* @memberof ProcessParams
|
|
15280
|
+
*/
|
|
15281
|
+
'pdfPagesLimit'?: number;
|
|
15264
15282
|
}
|
|
15265
15283
|
/**
|
|
15266
15284
|
*
|
package/package.json
CHANGED