File tree 4 files changed +15
-14
lines changed
4 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Secure Storage for React Native (Android & iOS) - Keychain & Keystore
4
4
5
+ ## v2.0.7
6
+ - Thanks to [ @Merlier ] ( https://github.com/Merlier ) .
7
+ - Thanks to [ @corlissc ] ( https://github.com/corlissc ) .
8
+
5
9
## v3.0.0-beta.0
6
10
This version still under development. But you can look and try. [ v3.0.0-development Branch] ( https://github.com/talut/rn-secure-storage/tree/v3.0.0-development )
7
11
Original file line number Diff line number Diff line change 1
1
import { NativeModules } from 'react-native' ;
2
2
3
3
export const ACCESSIBLE = {
4
- WHEN_UNLOCKED : 'AccessibleWhenUnlocked' ,
5
- AFTER_FIRST_UNLOCK : 'AccessibleAfterFirstUnlock' ,
6
- ALWAYS : 'AccessibleAlways' ,
7
- WHEN_PASSCODE_SET_THIS_DEVICE_ONLY : 'AccessibleWhenPasscodeSetThisDeviceOnly' ,
8
- WHEN_UNLOCKED_THIS_DEVICE_ONLY : 'AccessibleWhenUnlockedThisDeviceOnly' ,
9
- AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY : 'AccessibleAfterFirstUnlockThisDeviceOnly' ,
10
- ALWAYS_THIS_DEVICE_ONLY : 'AccessibleAlwaysThisDeviceOnly' ,
4
+ WHEN_UNLOCKED : 'AccessibleWhenUnlocked' ,
5
+ AFTER_FIRST_UNLOCK : 'AccessibleAfterFirstUnlock' ,
6
+ ALWAYS : 'AccessibleAlways' ,
7
+ WHEN_PASSCODE_SET_THIS_DEVICE_ONLY : 'AccessibleWhenPasscodeSetThisDeviceOnly' ,
8
+ WHEN_UNLOCKED_THIS_DEVICE_ONLY : 'AccessibleWhenUnlockedThisDeviceOnly' ,
9
+ AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY : 'AccessibleAfterFirstUnlockThisDeviceOnly' ,
10
+ ALWAYS_THIS_DEVICE_ONLY : 'AccessibleAlwaysThisDeviceOnly' ,
11
11
} ;
12
12
const { RNSecureStorage} = NativeModules ;
13
13
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " rn-secure-storage" ,
3
- "version" : " 2.0.7 " ,
3
+ "version" : " 2.0.8 " ,
4
4
"description" : " Secure Storage for React Native (Android & iOS) - Keychain & Keystore" ,
5
- "publishConfig" : {"registry" : " https://npm.pkg.github.com/@talut" },
6
5
"main" : " index.js" ,
7
- "types" : " typescript/ rn-secure-storage.d.ts" ,
6
+ "types" : " rn-secure-storage.d.ts" ,
8
7
"keywords" : [
9
8
" react-native" ,
10
9
" ios" ,
Original file line number Diff line number Diff line change 1
- // Type definitions for rn-secure-storage 1.0.9
2
- // Project: https://github.com/akiver/rn-secure-storage
3
- // Definitions by: AkiVer <https://github.com/akiver>
4
- // TypeScript Version: 2.8
1
+ // Type definitions for rn-secure-storage 2.0.7
2
+ // Project: https://github.com/talut/rn-secure-storage
5
3
6
4
declare module "rn-secure-storage" {
7
5
export enum ACCESSIBLE {
You can’t perform that action at this time.
0 commit comments