@onekeyfe/react-native-keychain-module 1.1.21 → 1.1.23

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.
@@ -38,7 +38,7 @@ class KeychainModuleCore {
38
38
  throw KeychainModuleError.encodingFailed
39
39
  }
40
40
 
41
- let enableSync = params.enableSync ?? true // Default to disabled; callers must explicitly opt in to iCloud sync
41
+ let enableSync = params.enableSync ?? true // Default to enabled for iCloud sync
42
42
 
43
43
  var query: [String: Any] = [
44
44
  kSecClass as String: kSecClassGenericPassword,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onekeyfe/react-native-keychain-module",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "description": "react-native-keychain-module",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
package/README.md DELETED
@@ -1,39 +0,0 @@
1
- # react-native-keychain-module
2
-
3
- react-native-keychain-module
4
-
5
- ## Installation
6
-
7
-
8
- ```sh
9
- npm install react-native-keychain-module react-native-nitro-modules
10
-
11
- > `react-native-nitro-modules` is required as this library relies on [Nitro Modules](https://nitro.margelo.com/).
12
- ```
13
-
14
-
15
- ## Usage
16
-
17
-
18
- ```js
19
- import { multiply } from 'react-native-keychain-module';
20
-
21
- // ...
22
-
23
- const result = multiply(3, 7);
24
- ```
25
-
26
-
27
- ## Contributing
28
-
29
- - [Development workflow](CONTRIBUTING.md#development-workflow)
30
- - [Sending a pull request](CONTRIBUTING.md#sending-a-pull-request)
31
- - [Code of conduct](CODE_OF_CONDUCT.md)
32
-
33
- ## License
34
-
35
- MIT
36
-
37
- ---
38
-
39
- Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)