@regulaforensics/ionic-native-document-reader 7.3.325-nightly → 7.3.328-beta
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 +78 -2
- package/index.js +34 -2
- package/ngx/index.d.ts +78 -2
- package/ngx/index.js +35 -3
- 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/cordova-plugin-document-reader-api": "
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "
|
|
18
|
-
"@regulaforensics/ionic-native-document-reader": "7.3.
|
|
16
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "",
|
|
18
|
+
"@regulaforensics/ionic-native-document-reader": "7.3.328-beta",
|
|
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
|
@@ -709,6 +709,8 @@ export declare class ProcessParams {
|
|
|
709
709
|
imageOutputMaxWidth?: number;
|
|
710
710
|
processAuth?: number;
|
|
711
711
|
convertCase?: number;
|
|
712
|
+
logLevel?: string;
|
|
713
|
+
mrzDetectMode?: number;
|
|
712
714
|
measureSystem?: number;
|
|
713
715
|
forceDocID?: number;
|
|
714
716
|
dateFormat?: string;
|
|
@@ -983,6 +985,7 @@ export declare const CustomizationColor: {
|
|
|
983
985
|
RFID_PROCESSING_SCREEN_PROGRESS_BAR: string;
|
|
984
986
|
RFID_PROCESSING_SCREEN_PROGRESS_BAR_BACKGROUND: string;
|
|
985
987
|
RFID_PROCESSING_SCREEN_RESULT_LABEL_TEXT: string;
|
|
988
|
+
RFID_PROCESSING_SCREEN_LOADING_BAR: string;
|
|
986
989
|
};
|
|
987
990
|
export declare const eRFID_ErrorCodes: {
|
|
988
991
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -1584,6 +1587,9 @@ export declare const eCheckDiagnose: {
|
|
|
1584
1587
|
FIELD_POS_CORRECTOR_HIGHLIGHT_IR: number;
|
|
1585
1588
|
FIELD_POS_CORRECTOR_GLARES_IN_PHOTO_AREA: number;
|
|
1586
1589
|
FIELD_POS_CORRECTOR_PHOTO_REPLACED: number;
|
|
1590
|
+
FIELD_POS_CORRECTOR_LANDMARKS_CHECK_ERROR: number;
|
|
1591
|
+
FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR: number;
|
|
1592
|
+
FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR: number;
|
|
1587
1593
|
OVI_IR_INVISIBLE: number;
|
|
1588
1594
|
OVI_INSUFFICIENT_AREA: number;
|
|
1589
1595
|
OVI_COLOR_INVARIABLE: number;
|
|
@@ -1655,7 +1661,7 @@ export declare const eCheckDiagnose: {
|
|
|
1655
1661
|
ICAO_IDB_SIGNATURE_MUST_BE_PRESENT: number;
|
|
1656
1662
|
ICAO_IDB_SIGNATURE_MUST_NOT_BE_PRESENT: number;
|
|
1657
1663
|
ICAO_IDB_CERTIFICATE_MUST_NOT_BE_PRESENT: number;
|
|
1658
|
-
|
|
1664
|
+
INCORRECT_OBJECT_COLOR: number;
|
|
1659
1665
|
};
|
|
1660
1666
|
export declare const RFIDDelegate: {
|
|
1661
1667
|
NULL: number;
|
|
@@ -1668,6 +1674,13 @@ export declare const TextProcessing: {
|
|
|
1668
1674
|
ocLowercase: number;
|
|
1669
1675
|
ocCapital: number;
|
|
1670
1676
|
};
|
|
1677
|
+
export declare const LogLevel: {
|
|
1678
|
+
FatalError: string;
|
|
1679
|
+
Error: string;
|
|
1680
|
+
Warning: string;
|
|
1681
|
+
Info: string;
|
|
1682
|
+
Debug: string;
|
|
1683
|
+
};
|
|
1671
1684
|
export declare const AnimationImage: {
|
|
1672
1685
|
UNKNOWN: number;
|
|
1673
1686
|
PASSPORT_SINGLE_PAGE: number;
|
|
@@ -3083,6 +3096,14 @@ export declare const eVisualFieldType: {
|
|
|
3083
3096
|
FT_DATE_OF_RETIREMENT: number;
|
|
3084
3097
|
FT_DOCUMENT_STATUS: number;
|
|
3085
3098
|
FT_SIGNATURE: number;
|
|
3099
|
+
FT_UNIQUE_CERTIFICATE_IDENTIFIER: number;
|
|
3100
|
+
FT_EMAIL: number;
|
|
3101
|
+
FT_DATE_OF_SPECIMEN_COLLECTION: number;
|
|
3102
|
+
FT_TYPE_OF_TESTING: number;
|
|
3103
|
+
FT_RESULT_OF_TESTING: number;
|
|
3104
|
+
FT_METHOD_OF_TESTING: number;
|
|
3105
|
+
FT_DIGITAL_TRAVEL_AUTHORIZATION_NUMBER: number;
|
|
3106
|
+
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT: number;
|
|
3086
3107
|
};
|
|
3087
3108
|
export declare const DocReaderOrientation: {
|
|
3088
3109
|
ALL: number;
|
|
@@ -3279,6 +3300,11 @@ export declare const eRPRM_Lights: {
|
|
|
3279
3300
|
RPRM_LIGHT_OVD: number;
|
|
3280
3301
|
RPRM_LIGHT_WHITE_FULL_OVD: number;
|
|
3281
3302
|
};
|
|
3303
|
+
export declare const eMrzDetectionModes: {
|
|
3304
|
+
DEFAULT: number;
|
|
3305
|
+
RESIZE_BINARIZE_WINDOW: number;
|
|
3306
|
+
BLUR_BEFORE_BINARIZATION: number;
|
|
3307
|
+
};
|
|
3282
3308
|
export declare const Enum: {
|
|
3283
3309
|
FontStyle: {
|
|
3284
3310
|
NORMAL: number;
|
|
@@ -3317,6 +3343,7 @@ export declare const Enum: {
|
|
|
3317
3343
|
RFID_PROCESSING_SCREEN_PROGRESS_BAR: string;
|
|
3318
3344
|
RFID_PROCESSING_SCREEN_PROGRESS_BAR_BACKGROUND: string;
|
|
3319
3345
|
RFID_PROCESSING_SCREEN_RESULT_LABEL_TEXT: string;
|
|
3346
|
+
RFID_PROCESSING_SCREEN_LOADING_BAR: string;
|
|
3320
3347
|
};
|
|
3321
3348
|
eRFID_ErrorCodes: {
|
|
3322
3349
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -3918,6 +3945,9 @@ export declare const Enum: {
|
|
|
3918
3945
|
FIELD_POS_CORRECTOR_HIGHLIGHT_IR: number;
|
|
3919
3946
|
FIELD_POS_CORRECTOR_GLARES_IN_PHOTO_AREA: number;
|
|
3920
3947
|
FIELD_POS_CORRECTOR_PHOTO_REPLACED: number;
|
|
3948
|
+
FIELD_POS_CORRECTOR_LANDMARKS_CHECK_ERROR: number;
|
|
3949
|
+
FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR: number;
|
|
3950
|
+
FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR: number;
|
|
3921
3951
|
OVI_IR_INVISIBLE: number;
|
|
3922
3952
|
OVI_INSUFFICIENT_AREA: number;
|
|
3923
3953
|
OVI_COLOR_INVARIABLE: number;
|
|
@@ -3989,7 +4019,7 @@ export declare const Enum: {
|
|
|
3989
4019
|
ICAO_IDB_SIGNATURE_MUST_BE_PRESENT: number;
|
|
3990
4020
|
ICAO_IDB_SIGNATURE_MUST_NOT_BE_PRESENT: number;
|
|
3991
4021
|
ICAO_IDB_CERTIFICATE_MUST_NOT_BE_PRESENT: number;
|
|
3992
|
-
|
|
4022
|
+
INCORRECT_OBJECT_COLOR: number;
|
|
3993
4023
|
};
|
|
3994
4024
|
RFIDDelegate: {
|
|
3995
4025
|
NULL: number;
|
|
@@ -4002,6 +4032,13 @@ export declare const Enum: {
|
|
|
4002
4032
|
ocLowercase: number;
|
|
4003
4033
|
ocCapital: number;
|
|
4004
4034
|
};
|
|
4035
|
+
LogLevel: {
|
|
4036
|
+
FatalError: string;
|
|
4037
|
+
Error: string;
|
|
4038
|
+
Warning: string;
|
|
4039
|
+
Info: string;
|
|
4040
|
+
Debug: string;
|
|
4041
|
+
};
|
|
4005
4042
|
AnimationImage: {
|
|
4006
4043
|
UNKNOWN: number;
|
|
4007
4044
|
PASSPORT_SINGLE_PAGE: number;
|
|
@@ -5417,6 +5454,14 @@ export declare const Enum: {
|
|
|
5417
5454
|
FT_DATE_OF_RETIREMENT: number;
|
|
5418
5455
|
FT_DOCUMENT_STATUS: number;
|
|
5419
5456
|
FT_SIGNATURE: number;
|
|
5457
|
+
FT_UNIQUE_CERTIFICATE_IDENTIFIER: number;
|
|
5458
|
+
FT_EMAIL: number;
|
|
5459
|
+
FT_DATE_OF_SPECIMEN_COLLECTION: number;
|
|
5460
|
+
FT_TYPE_OF_TESTING: number;
|
|
5461
|
+
FT_RESULT_OF_TESTING: number;
|
|
5462
|
+
FT_METHOD_OF_TESTING: number;
|
|
5463
|
+
FT_DIGITAL_TRAVEL_AUTHORIZATION_NUMBER: number;
|
|
5464
|
+
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT: number;
|
|
5420
5465
|
};
|
|
5421
5466
|
DocReaderOrientation: {
|
|
5422
5467
|
ALL: number;
|
|
@@ -5613,6 +5658,11 @@ export declare const Enum: {
|
|
|
5613
5658
|
RPRM_LIGHT_OVD: number;
|
|
5614
5659
|
RPRM_LIGHT_WHITE_FULL_OVD: number;
|
|
5615
5660
|
};
|
|
5661
|
+
eMrzDetectionModes: {
|
|
5662
|
+
DEFAULT: number;
|
|
5663
|
+
RESIZE_BINARIZE_WINDOW: number;
|
|
5664
|
+
BLUR_BEFORE_BINARIZATION: number;
|
|
5665
|
+
};
|
|
5616
5666
|
};
|
|
5617
5667
|
/**
|
|
5618
5668
|
* @name DocumentReader
|
|
@@ -5688,6 +5738,32 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
5688
5738
|
* @return {Promise<any>} Returns a promise
|
|
5689
5739
|
*/
|
|
5690
5740
|
setTag(tag: string | null): Promise<any>;
|
|
5741
|
+
/**
|
|
5742
|
+
*
|
|
5743
|
+
*
|
|
5744
|
+
* @return {Promise<any>} Returns a promise
|
|
5745
|
+
*/
|
|
5746
|
+
getTenant(): Promise<any>;
|
|
5747
|
+
/**
|
|
5748
|
+
*
|
|
5749
|
+
*
|
|
5750
|
+
* @param {string} tenant
|
|
5751
|
+
* @return {Promise<any>} Returns a promise
|
|
5752
|
+
*/
|
|
5753
|
+
setTenant(tenant: string | null): Promise<any>;
|
|
5754
|
+
/**
|
|
5755
|
+
*
|
|
5756
|
+
*
|
|
5757
|
+
* @return {Promise<any>} Returns a promise
|
|
5758
|
+
*/
|
|
5759
|
+
getEnv(): Promise<any>;
|
|
5760
|
+
/**
|
|
5761
|
+
*
|
|
5762
|
+
*
|
|
5763
|
+
* @param {string} env
|
|
5764
|
+
* @return {Promise<any>} Returns a promise
|
|
5765
|
+
*/
|
|
5766
|
+
setEnv(env: string | null): Promise<any>;
|
|
5691
5767
|
/**
|
|
5692
5768
|
*
|
|
5693
5769
|
*
|