@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 CHANGED
@@ -8,7 +8,6 @@
8
8
  ```bash
9
9
  $ cd example
10
10
  $ npm install
11
- $ npx jetify
12
11
  $ ionic cordova prepare
13
12
  ```
14
13
 
@@ -13,9 +13,9 @@
13
13
  },
14
14
  "private": true,
15
15
  "dependencies": {
16
- "@regulaforensics/ionic-native-document-reader": "9.7.631-beta",
17
- "@regulaforensics/cordova-plugin-document-reader-api": "9.7.692-rc",
18
- "@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.7.2973-rc",
16
+ "@regulaforensics/ionic-native-document-reader": "9.7.632-rc",
17
+ "@regulaforensics/cordova-plugin-document-reader-api": "9.7.694-rc",
18
+ "@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.7.2989-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",
@@ -35,8 +35,7 @@
35
35
  "core-js": "^3.6.5",
36
36
  "rxjs": "~6.6.3",
37
37
  "tslib": "^2.0.1",
38
- "zone.js": "~0.11.1",
39
- "jetifier": "^2.0.0"
38
+ "zone.js": "~0.11.1"
40
39
  },
41
40
  "devDependencies": {
42
41
  "@angular-devkit/architect": "~0.1001.4",
package/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
- FT_CANTON_REFERENCE: number;
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
- FT_CANTON_REFERENCE: number;
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;