@umituz/react-native-auth 3.4.10 → 3.4.11
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-auth",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.11",
|
|
4
4
|
"description": "Authentication service for React Native apps - Secure, type-safe, and production-ready. Provider-agnostic design with dependency injection, configurable validation, and comprehensive error handling.",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"url": "git+https://github.com/umituz/react-native-auth.git"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@umituz/react-native-design-system": "
|
|
36
|
-
"@umituz/react-native-firebase": "
|
|
37
|
-
"@umituz/react-native-localization": "
|
|
38
|
-
"@umituz/react-native-storage": "
|
|
39
|
-
"@umituz/react-native-tanstack": "
|
|
40
|
-
"@umituz/react-native-validation": "
|
|
35
|
+
"@umituz/react-native-design-system": "latest",
|
|
36
|
+
"@umituz/react-native-firebase": "latest",
|
|
37
|
+
"@umituz/react-native-localization": "latest",
|
|
38
|
+
"@umituz/react-native-storage": "latest",
|
|
39
|
+
"@umituz/react-native-tanstack": "latest",
|
|
40
|
+
"@umituz/react-native-validation": "latest"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@gorhom/bottom-sheet": ">=4.0.0",
|
|
@@ -70,14 +70,14 @@
|
|
|
70
70
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
71
71
|
"@typescript-eslint/parser": "^7.0.0",
|
|
72
72
|
"@umituz/react-native-design-system": "latest",
|
|
73
|
-
"@umituz/react-native-design-system-theme": "
|
|
74
|
-
"@umituz/react-native-firebase": "
|
|
75
|
-
"@umituz/react-native-haptics": "
|
|
76
|
-
"@umituz/react-native-localization": "
|
|
77
|
-
"@umituz/react-native-storage": "
|
|
78
|
-
"@umituz/react-native-tanstack": "
|
|
79
|
-
"@umituz/react-native-uuid": "
|
|
80
|
-
"@umituz/react-native-validation": "
|
|
73
|
+
"@umituz/react-native-design-system-theme": "latest",
|
|
74
|
+
"@umituz/react-native-firebase": "latest",
|
|
75
|
+
"@umituz/react-native-haptics": "latest",
|
|
76
|
+
"@umituz/react-native-localization": "latest",
|
|
77
|
+
"@umituz/react-native-storage": "latest",
|
|
78
|
+
"@umituz/react-native-tanstack": "latest",
|
|
79
|
+
"@umituz/react-native-uuid": "latest",
|
|
80
|
+
"@umituz/react-native-validation": "latest",
|
|
81
81
|
"eslint": "^8.57.0",
|
|
82
82
|
"expo-apple-authentication": "^6.0.0",
|
|
83
83
|
"expo-application": "^7.0.8",
|
|
@@ -171,7 +171,7 @@ export async function ensureUserDocument(
|
|
|
171
171
|
const db = getFirestore();
|
|
172
172
|
if (typeof __DEV__ !== "undefined" && __DEV__) {
|
|
173
173
|
// eslint-disable-next-line no-console
|
|
174
|
-
console.log("[UserDocumentService] db:", db, "type:", typeof db, "constructor:", db?.constructor?.name);
|
|
174
|
+
console.log("[UserDocumentService] db:", !!db, "type:", typeof db, "constructor:", db?.constructor?.name);
|
|
175
175
|
}
|
|
176
176
|
if (!db || !user.uid) return false;
|
|
177
177
|
|