Skip to content

Commit

Permalink
mobile: update mmkv package
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarahm-ed committed Nov 25, 2023
1 parent cbb0a51 commit cfc3a83
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions apps/mobile/app/common/database/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class KV {
return this.storage.removeItem(key);
}

async removeMulti(...keys) {
async removeMulti(keys) {
return this.storage.removeItems(...keys);
}

Expand Down Expand Up @@ -149,7 +149,7 @@ export default {
clear: () => DefaultStorage.clear(),
getAllKeys: () => DefaultStorage.getAllKeys(),
writeMulti: (items) => DefaultStorage.writeMulti(items),
removeMulti: (...keys) => DefaultStorage.removeMulti(...keys),
removeMulti: (keys) => DefaultStorage.removeMulti(keys),
encrypt,
decrypt,
decryptMulti,
Expand Down
4 changes: 2 additions & 2 deletions apps/mobile/native/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ PODS:
- React-Core
- react-native-keep-awake (1.2.0):
- React-Core
- react-native-mmkv-storage (0.10.0-alpha.10):
- react-native-mmkv-storage (0.10.0-alpha.11):
- MMKV (~> 1.3.1)
- React
- React-Core
Expand Down Expand Up @@ -875,7 +875,7 @@ SPEC CHECKSUMS:
react-native-image-resizer: 00ceb0e05586c7aadf061eea676957a6c2ec60fa
react-native-in-app-review: db8bb167a5f238e7ceca5c242d6b36ce8c4404a4
react-native-keep-awake: caee3ff89eaa21dfe29010f0d143566874a04441
react-native-mmkv-storage: 20822e28e98745961da533bb6d6ce9964910c827
react-native-mmkv-storage: e798639f91601896f1c84f4eb3d6f19af2f4a160
react-native-netinfo: ccbe1085dffd16592791d550189772e13bf479e2
react-native-notification-sounds: da78c828fe1bcbb92d8b505d5261890ed315ff39
react-native-orientation: f1caf84d65f1a4fd4511a18f2b924e634ad7a628
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"react-native-image-picker": "4.1.2",
"react-native-in-app-review": "4.3.3",
"react-native-keychain": "4.0.5",
"react-native-mmkv-storage": "^0.10.0-alpha.10",
"react-native-mmkv-storage": "^0.10.0-alpha.11",
"react-native-modal-datetime-picker": "14.0.0",
"react-native-navigation-bar-color": "2.0.2",
"react-native-notification-sounds": "0.5.5",
Expand Down
16 changes: 8 additions & 8 deletions apps/mobile/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cfc3a83

Please sign in to comment.