@umituz/react-native-firebase 2.4.51 → 2.4.53

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.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-firebase",
3
- "version": "2.4.51",
3
+ "version": "2.4.53",
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",
@@ -69,7 +69,7 @@
69
69
  "@types/react": "~19.1.10",
70
70
  "@typescript-eslint/eslint-plugin": "^8.52.0",
71
71
  "@typescript-eslint/parser": "^8.52.0",
72
- "@umituz/react-native-design-system": "*",
72
+ "@umituz/react-native-design-system": "^4.25.34",
73
73
  "eslint": "^9.39.2",
74
74
  "eslint-plugin-react": "^7.37.5",
75
75
  "eslint-plugin-react-native": "^5.0.0",
@@ -121,11 +121,31 @@
121
121
  ],
122
122
  "sideEffects": false,
123
123
  "exports": {
124
- ".": "./src/index.ts",
125
- "./auth": "./src/auth/index.ts",
126
- "./firestore": "./src/firestore/index.ts",
127
- "./storage": "./src/storage/index.ts",
128
- "./init": "./src/init/index.ts",
124
+ ".": {
125
+ "react-native": "./src/index.ts",
126
+ "types": "./src/index.ts",
127
+ "default": "./src/index.ts"
128
+ },
129
+ "./auth": {
130
+ "react-native": "./src/auth/index.ts",
131
+ "types": "./src/auth/index.ts",
132
+ "default": "./src/auth/index.ts"
133
+ },
134
+ "./firestore": {
135
+ "react-native": "./src/firestore/index.ts",
136
+ "types": "./src/firestore/index.ts",
137
+ "default": "./src/firestore/index.ts"
138
+ },
139
+ "./storage": {
140
+ "react-native": "./src/storage/index.ts",
141
+ "types": "./src/storage/index.ts",
142
+ "default": "./src/storage/index.ts"
143
+ },
144
+ "./init": {
145
+ "react-native": "./src/init/index.ts",
146
+ "types": "./src/init/index.ts",
147
+ "default": "./src/init/index.ts"
148
+ },
129
149
  "./scripts": {
130
150
  "require": "./dist/scripts/index.js",
131
151
  "import": "./dist/scripts/index.js",
@@ -7,7 +7,7 @@
7
7
  * This store provides minimal state for low-level Firebase operations.
8
8
  */
9
9
 
10
- import { createStore, type SetState, type GetState } from "@umituz/react-native-design-system";
10
+ import { createStore, type SetState, type GetState } from "@umituz/react-native-design-system/storage";
11
11
  import { onAuthStateChanged, type User, type Auth } from "firebase/auth";
12
12
 
13
13
  interface AuthState {
@@ -3,7 +3,7 @@
3
3
  * Creates a ready-to-use InitModule for app initialization
4
4
  */
5
5
 
6
- import type { InitModule } from '@umituz/react-native-design-system';
6
+ import type { InitModule } from '@umituz/react-native-design-system/init';
7
7
  import { initializeAllFirebaseServices } from '../shared/infrastructure/config/services/FirebaseInitializationService';
8
8
 
9
9
  export interface FirebaseInitModuleConfig {