Skip to content

Commit ce13e75

Browse files
authored
Merge pull request #70 from talut/v2.0.8
fix for builds
2 parents b61595d + 260cc58 commit ce13e75

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Secure Storage for React Native (Android & iOS) - Keychain & Keystore
44

5+
## v2.0.7
6+
- Thanks to [@Merlier](https://github.com/Merlier).
7+
- Thanks to [@corlissc](https://github.com/corlissc).
8+
59
## v3.0.0-beta.0
610
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)
711

index.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import {NativeModules} from 'react-native';
22

33
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',
1111
};
1212
const {RNSecureStorage} = NativeModules;
1313

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "rn-secure-storage",
3-
"version": "2.0.7",
3+
"version": "2.0.8",
44
"description": "Secure Storage for React Native (Android & iOS) - Keychain & Keystore",
5-
"publishConfig": {"registry": "https://npm.pkg.github.com/@talut"},
65
"main": "index.js",
7-
"types": "typescript/rn-secure-storage.d.ts",
6+
"types": "rn-secure-storage.d.ts",
87
"keywords": [
98
"react-native",
109
"ios",

typescript/rn-secure-storage.d.ts renamed to rn-secure-storage.d.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
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
53

64
declare module "rn-secure-storage" {
75
export enum ACCESSIBLE {

0 commit comments

Comments
 (0)