react-native-biometric-verifier 0.0.5 → 0.0.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-biometric-verifier",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "A React Native module for biometric verification with face recognition and QR code scanning",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -104,7 +104,7 @@ const BiometricVerificationModal = React.memo(({ data, qrscan = false, callback
104
104
 
105
105
  try {
106
106
  const body = { image: base64 }
107
- const header = { hrenemp: currentData }
107
+ const header = { faceid: currentData }
108
108
  const response = await networkServiceCall("POST",RECOGNIZE_URL,header,body);
109
109
  if (response.httpstatus === 200) {
110
110
  notifyMessage('Identity verified successfully!', 'success');