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