@finos_sdk/sdk-ekyc 1.4.7 → 1.4.8
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/README.md +1 -1
- package/android/build.gradle +1 -1
- package/android/src/main/java/finos/sdk/ekyc/EKYCModule.kt +504 -38
- package/android/src/main/java/finos/sdk/ekyc/SDKeKYCExitHandlerManager.kt +28 -0
- package/dist/EKYCModule.d.ts +5 -2
- package/dist/EKYCModule.js +58 -4
- package/dist/index.d.ts +3 -3
- package/dist/package.json +1 -1
- package/dist/src/modules/FinosEKYCModule.d.ts +32 -4
- package/dist/src/modules/FinosEKYCModule.js +75 -1
- package/dist/src/types/ekycC06Type.d.ts +9 -0
- package/dist/src/types/ekycLivenessType.d.ts +0 -13
- package/dist/src/types/ekycNFCType.d.ts +10 -1
- package/dist/src/types/ekycOCRType.d.ts +9 -0
- package/dist/src/types/finos-ekyc.d.ts +1 -1
- package/dist/src/utils/utils.d.ts +2 -2
- package/dist/src/utils/utils.js +1 -1
- package/ios/EKYCModule.swift +17 -1
- package/ios/EKYCModuleBridge.m +8 -0
- package/package.json +1 -1
- package/src/modules/FinosEKYCModule.ts +85 -6
- package/src/types/ekycC06Type.ts +10 -0
- package/src/types/ekycLivenessType.ts +0 -15
- package/src/types/ekycNFCType.ts +12 -2
- package/src/types/ekycOCRType.ts +11 -1
- package/src/types/finos-ekyc.ts +1 -1
- package/src/utils/utils.ts +3 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
React Native SDK for eKYC (electronic Know Your Customer) and eSign. Features include Vietnamese CCCD NFC reading, OCR, Liveness detection, Face matching, C06 residence verification, SMS OTP verification, and Electronic Signature (eSign) capabilities.
|
|
7
7
|
|
|
8
|
-
**Version**: 1.4.
|
|
8
|
+
**Version**: 1.4.8
|
|
9
9
|
|
|
10
10
|
## Features
|
|
11
11
|
|
package/android/build.gradle
CHANGED
|
@@ -65,7 +65,7 @@ dependencies {
|
|
|
65
65
|
implementation 'com.facebook.react:react-android'
|
|
66
66
|
|
|
67
67
|
// Finos eKYC SDK dependencies from GitHub Packages Maven repository
|
|
68
|
-
def sdkVersion = "1.4.
|
|
68
|
+
def sdkVersion = "1.4.8"
|
|
69
69
|
implementation("finos.sdk.ekyc:ekyc:$sdkVersion")
|
|
70
70
|
implementation("finos.sdk.ekyc:ekycui:$sdkVersion")
|
|
71
71
|
implementation("finos.sdk.ekyc:nfc:$sdkVersion")
|