@regulaforensics/ionic-native-document-reader 8.2.147-nightly → 8.2.149-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/example/package.json +3 -3
- package/index.d.ts +19 -0
- package/index.js +7 -1
- package/ngx/index.d.ts +19 -0
- package/ngx/index.js +8 -2
- package/package.json +1 -1
- package/reactExample/package.json +3 -3
package/example/package.json
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
},
|
|
14
14
|
"private": true,
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@regulaforensics/ionic-native-document-reader": "8.2.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "8.2.
|
|
18
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "8.2.
|
|
16
|
+
"@regulaforensics/ionic-native-document-reader": "8.2.149-nightly",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "8.2.171-nightly",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "8.2.520-nightly",
|
|
19
19
|
"cordova-plugin-camera": "7.0.0",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
21
21
|
"@awesome-cordova-plugins/core": "6.6.0",
|
package/index.d.ts
CHANGED
|
@@ -716,6 +716,7 @@ export declare class ProcessParams {
|
|
|
716
716
|
generateDTCVC?: boolean;
|
|
717
717
|
strictDLCategoryExpiry?: boolean;
|
|
718
718
|
generateAlpha2Codes?: boolean;
|
|
719
|
+
disableAuthResolutionFilter?: boolean;
|
|
719
720
|
barcodeParserType?: number;
|
|
720
721
|
perspectiveAngle?: number;
|
|
721
722
|
minDPI?: number;
|
|
@@ -835,6 +836,7 @@ export declare class Customization {
|
|
|
835
836
|
changeFrameButtonExpandImage?: string;
|
|
836
837
|
changeFrameButtonCollapseImage?: string;
|
|
837
838
|
livenessAnimationImage?: string;
|
|
839
|
+
multipageButtonImage?: string;
|
|
838
840
|
statusTextFont?: Font;
|
|
839
841
|
resultStatusTextFont?: Font;
|
|
840
842
|
multipageButtonTextFont?: Font;
|
|
@@ -3198,6 +3200,8 @@ export declare const eVisualFieldType: {
|
|
|
3198
3200
|
FT_MVC_AGENCY: number;
|
|
3199
3201
|
FT_ISSUING_STATE_CODE_ALPHA2: number;
|
|
3200
3202
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
3203
|
+
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
3204
|
+
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
3201
3205
|
};
|
|
3202
3206
|
export declare const DocReaderOrientation: {
|
|
3203
3207
|
ALL: number;
|
|
@@ -5603,6 +5607,8 @@ export declare const Enum: {
|
|
|
5603
5607
|
FT_MVC_AGENCY: number;
|
|
5604
5608
|
FT_ISSUING_STATE_CODE_ALPHA2: number;
|
|
5605
5609
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
5610
|
+
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
5611
|
+
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
5606
5612
|
};
|
|
5607
5613
|
DocReaderOrientation: {
|
|
5608
5614
|
ALL: number;
|
|
@@ -5893,6 +5899,19 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
5893
5899
|
* @return {Promise<any>} Returns a promise
|
|
5894
5900
|
*/
|
|
5895
5901
|
setEnv(env: string | null): Promise<any>;
|
|
5902
|
+
/**
|
|
5903
|
+
*
|
|
5904
|
+
*
|
|
5905
|
+
* @return {Promise<any>} Returns a promise
|
|
5906
|
+
*/
|
|
5907
|
+
getLocale(): Promise<any>;
|
|
5908
|
+
/**
|
|
5909
|
+
*
|
|
5910
|
+
*
|
|
5911
|
+
* @param {string} locale
|
|
5912
|
+
* @return {Promise<any>} Returns a promise
|
|
5913
|
+
*/
|
|
5914
|
+
setLocale(locale: string | null): Promise<any>;
|
|
5896
5915
|
/**
|
|
5897
5916
|
*
|
|
5898
5917
|
*
|