@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 +1 -1
- package/src/domains/firestore/index.ts +2 -12
- package/src/index.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-firebase",
|
|
3
|
-
"version": "2.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
|
-
//
|
|
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