@regulaforensics/cordova-plugin-document-reader-api 9.4.518-nightly → 9.4.521-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 +2 -2
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/src/android/build.gradle +2 -2
- package/www/DocumentReader.js +13 -3
package/example/package.json
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"author": "Regula Forensics Inc.",
|
|
14
14
|
"license": "commercial",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "9.4.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.4.
|
|
16
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.4.521-rc",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.4.2340-rc",
|
|
18
18
|
"cordova-android": "13.0.0",
|
|
19
19
|
"cordova-ios": "7.1.1",
|
|
20
20
|
"cordova-plugin-add-swift-support": "2.0.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/cordova-plugin-document-reader-api",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.521-rc",
|
|
4
4
|
"description": "Cordova plugin for reading and validation of identification documents (API framework)",
|
|
5
5
|
"cordova": {
|
|
6
6
|
"id": "@regulaforensics/cordova-plugin-document-reader-api",
|
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="@regulaforensics/cordova-plugin-document-reader-api" version="9.4.
|
|
2
|
+
<plugin id="@regulaforensics/cordova-plugin-document-reader-api" version="9.4.521-rc" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
|
3
3
|
<name>DocumentReaderApi</name>
|
|
4
4
|
<description>Cordova plugin Document reader api</description>
|
|
5
5
|
<license>commercial</license>
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<source url="https://github.com/CocoaPods/Specs.git"/>
|
|
30
30
|
</config>
|
|
31
31
|
<pods>
|
|
32
|
-
<pod name="
|
|
32
|
+
<pod name="DocumentReaderStage" spec="9.4.6268" />
|
|
33
33
|
</pods>
|
|
34
34
|
</podspec>
|
|
35
35
|
</platform>
|
package/src/android/build.gradle
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
repositories {
|
|
2
2
|
maven {
|
|
3
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader/
|
|
3
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
dependencies {
|
|
8
8
|
//noinspection GradleDependency
|
|
9
|
-
implementation ('com.regula.documentreader:api:9.
|
|
9
|
+
implementation ('com.regula.documentreader:api:9.3.12784'){
|
|
10
10
|
transitive = true
|
|
11
11
|
}
|
|
12
12
|
}
|
package/www/DocumentReader.js
CHANGED
|
@@ -2779,9 +2779,9 @@ const eRFID_NotificationCodes = {
|
|
|
2779
2779
|
RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: 0x000D0000,
|
|
2780
2780
|
RFID_NOTIFICATION_RI_SECTOR_ID: 0x000E0000,
|
|
2781
2781
|
RFID_NOTIFICATION_BIOMETRICS_EMPTY_PLACEHOLDER: 0x000F0000,
|
|
2782
|
-
RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED:
|
|
2783
|
-
RFID_NOTIFICATION_TCC_TA_RESOURCES:
|
|
2784
|
-
RFID_NOTIFICATION_TCC_TA_SIGNATURE:
|
|
2782
|
+
RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED: 0x00100000,
|
|
2783
|
+
RFID_NOTIFICATION_TCC_TA_RESOURCES: 0x00110000,
|
|
2784
|
+
RFID_NOTIFICATION_TCC_TA_SIGNATURE: 0x00110001,
|
|
2785
2785
|
}
|
|
2786
2786
|
|
|
2787
2787
|
const CameraPosition = {
|
|
@@ -3311,6 +3311,8 @@ const eLDS_ParsingNotificationCodes = {
|
|
|
3311
3311
|
NTF_LDS_ICAO_CERTIFICATE_MRZ_COUNTRY_NON_MATCHING: 0x90000252,
|
|
3312
3312
|
NTF_LDS_ICAO_CERTIFICATE_ISSUER_COUNTRY_NON_UPPER_CASE: 0x90000253,
|
|
3313
3313
|
NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COUNTRY_NON_UPPER_CASE: 0x90000254,
|
|
3314
|
+
NTFLDS_SI_STORAGE_CS_NONCONSISTANT: 0x91000111,
|
|
3315
|
+
NTFLDS_SI_STORAGE_CS_PACE_CAM_KEY_MISSING: 0x9100011,
|
|
3314
3316
|
}
|
|
3315
3317
|
|
|
3316
3318
|
const eImageQualityCheckType = {
|
|
@@ -3877,6 +3879,13 @@ const eRFID_DataFile_Type = {
|
|
|
3877
3879
|
DFT_VDS: 900,
|
|
3878
3880
|
DFT_VDSNC: 901,
|
|
3879
3881
|
DFT_USERDEFINED: 1000,
|
|
3882
|
+
DFT_POST_CA_RESPONSE: 710,
|
|
3883
|
+
DFT_POST_CA_PUBLIC_KEY: 711,
|
|
3884
|
+
DFT_POST_CA_INFO: 712,
|
|
3885
|
+
DFT_POST_CA_DPARAMS: 713,
|
|
3886
|
+
DFT_POST_CA_CHECK_PK: 714,
|
|
3887
|
+
DFT_POST_CA_CHECK_SK: 715,
|
|
3888
|
+
DFT_ID_DG22: 122,
|
|
3880
3889
|
}
|
|
3881
3890
|
|
|
3882
3891
|
const eVisualFieldType = {
|
|
@@ -4537,6 +4546,7 @@ const eVisualFieldType = {
|
|
|
4537
4546
|
FT_NON_DOMICILED_INDICATOR: 702,
|
|
4538
4547
|
FT_JURISDICTION_SPECIFIC_DATA: 703,
|
|
4539
4548
|
FT_DATA_DATE_OF_EXPIRY: 704,
|
|
4549
|
+
FT_CONSUL: 705,
|
|
4540
4550
|
}
|
|
4541
4551
|
|
|
4542
4552
|
const DocReaderOrientation = {
|