react-native-kalapa-ekyc 1.3.0 → 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 +3 -2
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,8 @@ Complete guide for integrating Kalapa eKYC functionality into your React Native
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
## Changelog
|
|
8
|
-
|
|
8
|
+
### 1.3.1
|
|
9
|
+
- **Android**: Optimize QR-code step
|
|
9
10
|
### 1.3.0
|
|
10
11
|
- **TypeScript**: Fix default export being inferred as `any`. Spreading the native module (`...NativeModules.KalapaEkyc`) into the exported object previously erased all typing, so `KalapaEkyc.start()` and its result fell back to `any` in consumer code. The module is now declared via a `KalapaEkycModule` interface, so `start()` is fully typed and returns `Promise<KalapaEkycResponse>` (`{ kalapa_result: KalapaResult; session?: string }`) — no casting needed to access `kalapa_result` or its methods.
|
|
11
12
|
- **Android**: Update to latest version of Kalapa eKYC to use latest version of Android Camera X 1.6.1.
|
|
@@ -92,7 +93,7 @@ Complete guide for integrating Kalapa eKYC functionality into your React Native
|
|
|
92
93
|
| Android `compileSdkVersion` | 35 |
|
|
93
94
|
| Android `targetSdkVersion` | 35 |
|
|
94
95
|
| iOS Deployment Target | >= 13.0 |
|
|
95
|
-
| Kalapa Android SDK | 2.
|
|
96
|
+
| Kalapa Android SDK | 2.12.0 |
|
|
96
97
|
|
|
97
98
|
### Android
|
|
98
99
|
|
package/android/build.gradle
CHANGED