@umituz/react-native-firebase 2.6.6 → 2.6.7

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.6.6",
3
+ "version": "2.6.7",
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",
@@ -102,16 +102,6 @@ export type { UseFirestoreQueryOptions } from './presentation/hooks/useFirestore
102
102
  export type { UseFirestoreMutationOptions } from './presentation/hooks/useFirestoreMutation';
103
103
  export type { UseFirestoreSnapshotOptions } from './presentation/hooks/useFirestoreSnapshot';
104
104
 
105
- // Re-export commonly used Firebase Firestore types
106
- export type {
107
- Timestamp,
108
- DocumentSnapshot,
109
- QuerySnapshot,
110
- DocumentReference,
111
- CollectionReference,
112
- Query,
113
- Transaction,
114
- } from 'firebase/firestore';
115
-
116
- // Firebase types are available from the 'firebase' package directly
105
+ // Export Firestore types directly from firebase package
117
106
  // Import them in your app: import { Timestamp } from 'firebase/firestore';
107
+
package/src/index.ts CHANGED
@@ -32,8 +32,6 @@ export type {
32
32
  ServiceInitializationResult,
33
33
  } from "./shared/infrastructure/config/services/FirebaseInitializationService";
34
34
 
35
- export type { FirebaseApp } from 'firebase/app';
36
-
37
35
  // Type Guards
38
36
  export {
39
37
  isFirestoreError,