@exodus/react-native-biometrics 0.1.0 → 0.1.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 ADDED
@@ -0,0 +1,4 @@
1
+ # Change Log
2
+
3
+ All notable changes to this projected will be documented in this file.
4
+ See [Conventional Commits](https://www.conventionalcommits.org) for commit guidelines.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/react-native-biometrics",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "React Native Biometrics",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -10,6 +10,7 @@
10
10
  "ios",
11
11
  "cpp",
12
12
  "index.js",
13
+ "CHANGELOG.md",
13
14
  "*.podspec",
14
15
  "!ios/build",
15
16
  "!android/build",
@@ -3,7 +3,7 @@ import { NativeModules } from 'react-native';
3
3
  const AndroidBiometrics = NativeModules.Biometrics;
4
4
 
5
5
  export default {
6
- authenticate: async (title, subtitle, description) => {
7
- return AndroidBiometrics.authenticate(title, subtitle, description);
6
+ authenticate: async ({ title, subtitle, cancelButtonText }) => {
7
+ return AndroidBiometrics.authenticate(title, subtitle, cancelButtonText);
8
8
  }
9
9
  }