@umituz/react-native-firebase 1.13.61 → 1.13.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-firebase",
3
- "version": "1.13.61",
3
+ "version": "1.13.62",
4
4
  "description": "Unified Firebase package for React Native apps - Auth and Firestore services using Firebase JS SDK (no native modules).",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -32,7 +32,7 @@
32
32
  "url": "https://github.com/umituz/react-native-firebase"
33
33
  },
34
34
  "peerDependencies": {
35
- "@umituz/react-native-storage": "*",
35
+ "@umituz/react-native-design-system": "*",
36
36
  "expo-apple-authentication": ">=6.0.0",
37
37
  "expo-crypto": ">=13.0.0",
38
38
  "firebase": ">=10.0.0",
@@ -45,7 +45,7 @@
45
45
  "@types/react": "~19.1.10",
46
46
  "@typescript-eslint/eslint-plugin": "^8.52.0",
47
47
  "@typescript-eslint/parser": "^8.52.0",
48
- "@umituz/react-native-storage": "*",
48
+ "@umituz/react-native-design-system": "*",
49
49
  "eslint": "^9.39.2",
50
50
  "eslint-plugin-react": "^7.37.5",
51
51
  "eslint-plugin-react-native": "^5.0.0",
@@ -7,7 +7,7 @@
7
7
  * This store provides minimal state for low-level Firebase operations.
8
8
  */
9
9
 
10
- import { createStore } from "@umituz/react-native-storage";
10
+ import { createStore } from "@umituz/react-native-design-system";
11
11
  import { onAuthStateChanged, type User, type Auth } from "firebase/auth";
12
12
 
13
13
  declare const __DEV__: boolean;