@umituz/react-native-firebase 2.4.52 → 2.4.54
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.54",
|
|
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",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@types/react": "~19.1.10",
|
|
70
70
|
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
71
71
|
"@typescript-eslint/parser": "^8.52.0",
|
|
72
|
-
"@umituz/react-native-design-system": "
|
|
72
|
+
"@umituz/react-native-design-system": "^4.25.34",
|
|
73
73
|
"eslint": "^9.39.2",
|
|
74
74
|
"eslint-plugin-react": "^7.37.5",
|
|
75
75
|
"eslint-plugin-react-native": "^5.0.0",
|
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
EmailAuthProvider,
|
|
11
11
|
type User,
|
|
12
12
|
} from "firebase/auth";
|
|
13
|
+
// @ts-ignore - expo-apple-authentication is an optional peer dependency
|
|
13
14
|
import * as AppleAuthentication from "expo-apple-authentication";
|
|
14
15
|
import { Platform } from "react-native";
|
|
15
16
|
import { generateNonce, hashNonce } from "../../../auth/infrastructure/services/crypto.util";
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* This store provides minimal state for low-level Firebase operations.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import { createStore, type SetState, type GetState } from "@umituz/react-native-design-system";
|
|
10
|
+
import { createStore, type SetState, type GetState } from "@umituz/react-native-design-system/storage";
|
|
11
11
|
import { onAuthStateChanged, type User, type Auth } from "firebase/auth";
|
|
12
12
|
|
|
13
13
|
interface AuthState {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Creates a ready-to-use InitModule for app initialization
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import type { InitModule } from '@umituz/react-native-design-system';
|
|
6
|
+
import type { InitModule } from '@umituz/react-native-design-system/init';
|
|
7
7
|
import { initializeAllFirebaseServices } from '../shared/infrastructure/config/services/FirebaseInitializationService';
|
|
8
8
|
|
|
9
9
|
export interface FirebaseInitModuleConfig {
|