@regulaforensics/ionic-native-document-reader 9.7.631-beta → 9.7.632-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/README.md +0 -1
- package/example/package.json +4 -5
- package/index.d.ts +27 -4
- package/index.js +27 -3
- package/ngx/index.d.ts +27 -4
- package/ngx/index.js +27 -3
- package/package.json +1 -1
- package/reactExample/package.json +3 -3
package/ngx/index.d.ts
CHANGED
|
@@ -683,6 +683,7 @@ export declare class FaceApiParams {
|
|
|
683
683
|
proxy?: string;
|
|
684
684
|
proxyPassword?: string;
|
|
685
685
|
proxyType?: number;
|
|
686
|
+
livenessTransactionId?: string;
|
|
686
687
|
static fromJson(jsonObject?: any): FaceApiParams | undefined;
|
|
687
688
|
}
|
|
688
689
|
export declare class BackendProcessingConfig {
|
|
@@ -708,6 +709,10 @@ export declare class LivenessParams {
|
|
|
708
709
|
checkBarcodeBackground?: boolean;
|
|
709
710
|
static fromJson(jsonObject?: any): LivenessParams | undefined;
|
|
710
711
|
}
|
|
712
|
+
export declare class AuthenticityPropertiesParams {
|
|
713
|
+
checkHoldersSignature?: boolean;
|
|
714
|
+
static fromJson(jsonObject?: any): AuthenticityPropertiesParams | undefined;
|
|
715
|
+
}
|
|
711
716
|
export declare class AuthenticityParams {
|
|
712
717
|
useLivenessCheck?: boolean;
|
|
713
718
|
livenessParams?: LivenessParams;
|
|
@@ -725,6 +730,8 @@ export declare class AuthenticityParams {
|
|
|
725
730
|
checkPhotoComparison?: boolean;
|
|
726
731
|
checkLetterScreen?: boolean;
|
|
727
732
|
checkSecurityText?: boolean;
|
|
733
|
+
checkProperties?: boolean;
|
|
734
|
+
propertiesParams?: AuthenticityPropertiesParams;
|
|
728
735
|
static fromJson(jsonObject?: any): AuthenticityParams | undefined;
|
|
729
736
|
}
|
|
730
737
|
export declare class ProcessParams {
|
|
@@ -1250,6 +1257,8 @@ export declare const eRPRM_Authenticity: {
|
|
|
1250
1257
|
OVI: number;
|
|
1251
1258
|
LIVENESS: number;
|
|
1252
1259
|
OCR: number;
|
|
1260
|
+
ENCRYPTED_IPI: number;
|
|
1261
|
+
AUTHENTICITY_PROPERTY: number;
|
|
1253
1262
|
};
|
|
1254
1263
|
export declare const CustomizationColor: {
|
|
1255
1264
|
RFID_PROCESSING_SCREEN_BACKGROUND: string;
|
|
@@ -2009,7 +2018,6 @@ export declare const eCheckDiagnose: {
|
|
|
2009
2018
|
CHD_DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED: number;
|
|
2010
2019
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED: number;
|
|
2011
2020
|
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND: number;
|
|
2012
|
-
DOC_LIVENESS_VIRTUAL_CAMERA_DETECTED: number;
|
|
2013
2021
|
ICAO_IDB_BASE_32_ERROR: number;
|
|
2014
2022
|
ICAO_IDB_ZIPPED_ERROR: number;
|
|
2015
2023
|
ICAO_IDB_MESSAGE_ZONE_EMPTY: number;
|
|
@@ -2017,6 +2025,10 @@ export declare const eCheckDiagnose: {
|
|
|
2017
2025
|
ICAO_IDB_SIGNATURE_MUST_NOT_BE_PRESENT: number;
|
|
2018
2026
|
ICAO_IDB_CERTIFICATE_MUST_NOT_BE_PRESENT: number;
|
|
2019
2027
|
INCORRECT_OBJECT_COLOR: number;
|
|
2028
|
+
DOC_LIVENESS_VIRTUAL_CAMERA_DETECTED: number;
|
|
2029
|
+
CHD_PROPERTY_NO_SIGNATURE: number;
|
|
2030
|
+
CHD_PROPERTY_TEXT_AS_SIGNATURE: number;
|
|
2031
|
+
CHD_PROPERTY_FINGERPRINT_AS_SIGNATURE: number;
|
|
2020
2032
|
};
|
|
2021
2033
|
export declare const eMDLIntentToRetain: {
|
|
2022
2034
|
FALSE: number;
|
|
@@ -2419,6 +2431,7 @@ export declare const eRPRM_SecurityFeatureType: {
|
|
|
2419
2431
|
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_BARCODEVSGHOST: number;
|
|
2420
2432
|
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_GHOSTVSLIVE: number;
|
|
2421
2433
|
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_EXTVSGHOST: number;
|
|
2434
|
+
SECURITY_FEATURE_TYPE_SIGNATURE_PRESENCE: number;
|
|
2422
2435
|
};
|
|
2423
2436
|
export declare const OnlineMode: {
|
|
2424
2437
|
MANUAL: number;
|
|
@@ -3525,7 +3538,9 @@ export declare const eVisualFieldType: {
|
|
|
3525
3538
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
3526
3539
|
FT_DATA_DATE_OF_EXPIRY: number;
|
|
3527
3540
|
FT_CONSUL: number;
|
|
3528
|
-
|
|
3541
|
+
FT_DLCLASSCODE_B3_FROM: number;
|
|
3542
|
+
FT_DLCLASSCODE_B3_TO: number;
|
|
3543
|
+
FT_DLCLASSCODE_B3_NOTES: number;
|
|
3529
3544
|
};
|
|
3530
3545
|
export declare const DocReaderOrientation: {
|
|
3531
3546
|
ALL: number;
|
|
@@ -3792,6 +3807,8 @@ export declare const Enum: {
|
|
|
3792
3807
|
OVI: number;
|
|
3793
3808
|
LIVENESS: number;
|
|
3794
3809
|
OCR: number;
|
|
3810
|
+
ENCRYPTED_IPI: number;
|
|
3811
|
+
AUTHENTICITY_PROPERTY: number;
|
|
3795
3812
|
};
|
|
3796
3813
|
CustomizationColor: {
|
|
3797
3814
|
RFID_PROCESSING_SCREEN_BACKGROUND: string;
|
|
@@ -4551,7 +4568,6 @@ export declare const Enum: {
|
|
|
4551
4568
|
CHD_DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED: number;
|
|
4552
4569
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED: number;
|
|
4553
4570
|
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND: number;
|
|
4554
|
-
DOC_LIVENESS_VIRTUAL_CAMERA_DETECTED: number;
|
|
4555
4571
|
ICAO_IDB_BASE_32_ERROR: number;
|
|
4556
4572
|
ICAO_IDB_ZIPPED_ERROR: number;
|
|
4557
4573
|
ICAO_IDB_MESSAGE_ZONE_EMPTY: number;
|
|
@@ -4559,6 +4575,10 @@ export declare const Enum: {
|
|
|
4559
4575
|
ICAO_IDB_SIGNATURE_MUST_NOT_BE_PRESENT: number;
|
|
4560
4576
|
ICAO_IDB_CERTIFICATE_MUST_NOT_BE_PRESENT: number;
|
|
4561
4577
|
INCORRECT_OBJECT_COLOR: number;
|
|
4578
|
+
DOC_LIVENESS_VIRTUAL_CAMERA_DETECTED: number;
|
|
4579
|
+
CHD_PROPERTY_NO_SIGNATURE: number;
|
|
4580
|
+
CHD_PROPERTY_TEXT_AS_SIGNATURE: number;
|
|
4581
|
+
CHD_PROPERTY_FINGERPRINT_AS_SIGNATURE: number;
|
|
4562
4582
|
};
|
|
4563
4583
|
eMDLIntentToRetain: {
|
|
4564
4584
|
FALSE: number;
|
|
@@ -4961,6 +4981,7 @@ export declare const Enum: {
|
|
|
4961
4981
|
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_BARCODEVSGHOST: number;
|
|
4962
4982
|
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_GHOSTVSLIVE: number;
|
|
4963
4983
|
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_EXTVSGHOST: number;
|
|
4984
|
+
SECURITY_FEATURE_TYPE_SIGNATURE_PRESENCE: number;
|
|
4964
4985
|
};
|
|
4965
4986
|
OnlineMode: {
|
|
4966
4987
|
MANUAL: number;
|
|
@@ -6067,7 +6088,9 @@ export declare const Enum: {
|
|
|
6067
6088
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
6068
6089
|
FT_DATA_DATE_OF_EXPIRY: number;
|
|
6069
6090
|
FT_CONSUL: number;
|
|
6070
|
-
|
|
6091
|
+
FT_DLCLASSCODE_B3_FROM: number;
|
|
6092
|
+
FT_DLCLASSCODE_B3_TO: number;
|
|
6093
|
+
FT_DLCLASSCODE_B3_NOTES: number;
|
|
6071
6094
|
};
|
|
6072
6095
|
DocReaderOrientation: {
|
|
6073
6096
|
ALL: number;
|