uqudosdk-cordova 3.7.0-patch.1 → 3.8.0-patch.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## 3.8.0
2
+
3
+ * New Document Support:
4
+ - Added support for Jordanian, Syrian, and Yemeni national IDs
5
+ * Android: Upgraded CameraX library to version 1.5.3. If your application also uses CameraX, you must upgrade to the same version. Please note that this version requires a minimum SDK level of 23, so starting from this release your application must set `minSdkVersion` to 23 in order to build successfully
6
+ * NFC: Added support for eID cards (ID-1 format) issued by countries that include a Machine Readable Zone (MRZ) on the back, comply with ICAO Doc 9303, and contain a contactless chip (ISO/IEC 14443 / NFC). This feature is available in the "Enrollment Flow" and "NFC / Reading Flow" using the document type GENERIC_ID or MRZ (when scanning only the back side). If a country is not supported, the NFC reading step is skipped according to the SDK’s default configuration
7
+ * Tampering Detection: The ID photo tampering detection model has been removed from the SDK, and disableTamperingRejection() is now a no-op
8
+ - What does this mean? From a tampering detection perspective, nothing changes, as all SDK checks continue to be performed on the server along with additional validations
9
+ - How am I impacted? There should be no impact if you follow best practices, specifically, validating SDK results on your side, including reviewing tampering detection scores
10
+ - For more information about this change, please contact support
11
+ * Miscellaneous: Minor bug fixes and improvements
12
+
1
13
  ## 3.7.0-patch.1
2
14
 
3
15
  * Resolved possible race condition that triggers a CalledFromWrongThreadException on UI and theme updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uqudosdk-cordova",
3
- "version": "3.7.0-patch.1",
3
+ "version": "3.8.0-patch.1",
4
4
  "description": "Plugin to link native Android and iOS SDK with the ionic application. Using this plugin, ionic apps can now use the Uqudo SDK for enrollment, account recovery and face recognition",
5
5
  "cordova": {
6
6
  "id": "uqudosdk-cordova",
package/plugin.xml CHANGED
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="uqudosdk-cordova" version="3.7.0-patch.1">
2
+ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="uqudosdk-cordova" version="3.8.0-patch.1">
3
3
  <name>UqudoIdPlugin</name>
4
4
  <js-module name="UqudoIdPlugin" src="www/UqudoIdPlugin.js">
5
5
  <clobbers target="cordova.plugins.UqudoIdPlugin" />
@@ -25,7 +25,7 @@
25
25
  <podspec>
26
26
  <config/>
27
27
  <pods use-frameworks="true">
28
- <pod name="UqudoSDK" spec="3.7.0" />
28
+ <pod name="UqudoSDK" spec="3.8.0" />
29
29
  </pods>
30
30
  </podspec>
31
31
  <podspec>
@@ -1,5 +1,5 @@
1
1
  repositories { maven { url "https://rm.dev.uqudo.io/repository/uqudo-public/" } }
2
2
 
3
3
  dependencies {
4
- implementation 'io.uqudo.sdk:Uqudo:3.7.0'
4
+ implementation 'io.uqudo.sdk:Uqudo:3.8.0'
5
5
  }
@@ -140,7 +140,10 @@ UqudoSDK.prototype.DocumentType = Object.freeze(
140
140
  IDN_ID: 'IDN_ID',
141
141
  IRQ_ID_NATIONAL: 'IRQ_ID_NATIONAL',
142
142
  IRQ_ID_RESIDENT: 'IRQ_ID_RESIDENT',
143
- MAR_ID: 'MAR_ID'
143
+ MAR_ID: 'MAR_ID',
144
+ YEM_ID: 'YEM_ID',
145
+ JOR_ID: 'JOR_ID',
146
+ SYR_ID: 'SYR_ID'
144
147
  }
145
148
  );
146
149
  var BackgroundCheckType = Object.freeze(