@finos_sdk/sdk-ekyc 1.2.8 → 1.3.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/README.md +6 -6
- package/android/build.gradle +1 -1
- package/android/src/main/java/finos/sdk/ekyc/EKYCModule.kt +220 -119
- package/dist/EKYCModule.d.ts +9 -8
- package/dist/EKYCModule.js +89 -40
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/package.json +1 -1
- package/dist/src/modules/FinosEKYCModule.d.ts +20 -16
- package/dist/src/modules/FinosEKYCModule.js +49 -43
- package/dist/src/modules/FinosESignModule.d.ts +21 -16
- package/dist/src/modules/FinosESignModule.js +73 -218
- package/dist/src/types/ekycLivenessType.d.ts +11 -2
- package/dist/src/types/ekycLivenessType.js +7 -0
- package/package.json +2 -2
- package/src/modules/FinosEKYCModule.ts +89 -86
- package/src/modules/FinosESignModule.ts +117 -266
- package/src/modules/README.md +21 -2
- package/src/types/ekycLivenessType.ts +16 -2
- package/dist/finos_sdk-sdk-ekyc-1.2.8.tgz +0 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
React Native SDK for eKYC (electronic Know Your Customer) - Vietnamese CCCD NFC reading, OCR, Liveness detection, Face matching, and C06 residence verification.
|
|
7
7
|
|
|
8
|
-
**Version**: 1.2.
|
|
8
|
+
**Version**: 1.2.9
|
|
9
9
|
|
|
10
10
|
## 🚀 Features
|
|
11
11
|
|
|
@@ -482,7 +482,7 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
482
482
|
|
|
483
483
|
## 🔄 Migration Guide
|
|
484
484
|
|
|
485
|
-
### From Version 0.0.30 to 1.2.
|
|
485
|
+
### From Version 0.0.30 to 1.2.9
|
|
486
486
|
|
|
487
487
|
**New Features:**
|
|
488
488
|
- Unified `FinosEKYC.startEkycUI()` method for complete flows
|
|
@@ -492,7 +492,7 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
492
492
|
- GitHub Packages Maven repository integration (no local files required)
|
|
493
493
|
|
|
494
494
|
**Migration Steps:**
|
|
495
|
-
1. Update installation to version 1.2.
|
|
495
|
+
1. Update installation to version 1.2.9
|
|
496
496
|
2. Configure GitHub credentials for Maven repository (see Android Setup)
|
|
497
497
|
3. Update import statement to use `FinosEKYC` class
|
|
498
498
|
4. Consider using `startEkycUI` instead of individual modules
|
|
@@ -507,7 +507,7 @@ SdkEkyc.onNfcScanSuccess((data) => { ... });
|
|
|
507
507
|
await SdkEkyc.startNfcScan(config);
|
|
508
508
|
```
|
|
509
509
|
|
|
510
|
-
**After (1.2.
|
|
510
|
+
**After (1.2.9):**
|
|
511
511
|
```typescript
|
|
512
512
|
import { FinosEKYC } from '@finos_sdk/sdk-ekyc';
|
|
513
513
|
|
|
@@ -536,13 +536,13 @@ If migrating from the native Android SDK:
|
|
|
536
536
|
## 📦 Package Information
|
|
537
537
|
|
|
538
538
|
- **Package**: `@finos_sdk/sdk-ekyc`
|
|
539
|
-
- **Version**: 1.2.
|
|
539
|
+
- **Version**: 1.2.9
|
|
540
540
|
- **Platform**: Android (iOS support planned)
|
|
541
541
|
- **React Native**: 0.77.0+
|
|
542
542
|
- **License**: MIT
|
|
543
543
|
- **Repository**: [GitHub](https://github.com/finosvn/finos.ekyc.sdk)
|
|
544
544
|
|
|
545
|
-
## 🆕 What's New in v1.2.
|
|
545
|
+
## 🆕 What's New in v1.2.9
|
|
546
546
|
|
|
547
547
|
- ✨ Unified `startEkycUI` method for complete eKYC flows
|
|
548
548
|
- 🎨 Enhanced UI customization with `styleConfig`
|
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.
|
|
68
|
+
def sdkVersion = "1.3.1"
|
|
69
69
|
implementation("finos.sdk.ekyc:ekyc:$sdkVersion")
|
|
70
70
|
implementation("finos.sdk.ekyc:ekycui:$sdkVersion")
|
|
71
71
|
implementation("finos.sdk.ekyc:nfc:$sdkVersion")
|