@umituz/react-native-firebase 2.4.22 → 2.4.24

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": "2.4.22",
3
+ "version": "2.4.24",
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",
@@ -0,0 +1,28 @@
1
+ /**
2
+ * FirebaseClient - Barrel re-export
3
+ * Aggregates exports from refactored sub-modules for backward compatibility
4
+ */
5
+
6
+ // Functions
7
+ export {
8
+ initializeFirebase,
9
+ getFirebaseApp,
10
+ autoInitializeFirebase,
11
+ initializeAllFirebaseServices,
12
+ isFirebaseInitialized,
13
+ getFirebaseInitializationError,
14
+ resetFirebaseClient,
15
+ } from './services/FirebaseInitializationService';
16
+
17
+ // Types
18
+ export type {
19
+ AuthInitializer,
20
+ ServiceInitializationOptions,
21
+ ServiceInitializationResult,
22
+ } from './services/FirebaseInitializationService';
23
+
24
+ export type { FirebaseApp } from './initializers/FirebaseAppInitializer';
25
+
26
+ // Singleton instance
27
+ import { FirebaseClientSingleton } from './clients/FirebaseClientSingleton';
28
+ export const firebaseClient = FirebaseClientSingleton.getInstance();