@umituz/react-native-firebase 2.4.64 → 2.4.65
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.
|
|
3
|
+
"version": "2.4.65",
|
|
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",
|
|
@@ -53,7 +53,7 @@ export function shouldSkipFirestoreQuery(
|
|
|
53
53
|
options: FirestoreQueryOptions = {},
|
|
54
54
|
): FirestoreQueryResult {
|
|
55
55
|
const {
|
|
56
|
-
skipForGuest =
|
|
56
|
+
skipForGuest = false,
|
|
57
57
|
skipIfNotAuthenticated = true,
|
|
58
58
|
verifyUserId: shouldVerifyUserId = true,
|
|
59
59
|
userId,
|
|
@@ -103,7 +103,7 @@ export function createFirestoreQueryOptions(
|
|
|
103
103
|
options: Partial<FirestoreQueryOptions> = {},
|
|
104
104
|
): FirestoreQueryOptions {
|
|
105
105
|
return {
|
|
106
|
-
skipForGuest: options.skipForGuest ??
|
|
106
|
+
skipForGuest: options.skipForGuest ?? false,
|
|
107
107
|
skipIfNotAuthenticated: options.skipIfNotAuthenticated ?? true,
|
|
108
108
|
verifyUserId: options.verifyUserId ?? true,
|
|
109
109
|
userId: options.userId,
|