@umituz/react-native-auth 3.4.40 → 3.4.42
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.42",
|
|
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,10 +32,9 @@
|
|
|
32
32
|
"url": "git+https://github.com/umituz/react-native-auth.git"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@umituz/react-native-
|
|
36
|
-
"@umituz/react-native-
|
|
37
|
-
"@umituz/react-native-
|
|
38
|
-
"@umituz/react-native-tanstack": "latest"
|
|
35
|
+
"@umituz/react-native-design-system": "*",
|
|
36
|
+
"@umituz/react-native-firebase": "*",
|
|
37
|
+
"@umituz/react-native-localization": "*"
|
|
39
38
|
},
|
|
40
39
|
"peerDependencies": {
|
|
41
40
|
"@react-navigation/native": ">=6.0.0",
|
|
@@ -65,9 +64,6 @@
|
|
|
65
64
|
"@typescript-eslint/parser": "^7.0.0",
|
|
66
65
|
"@umituz/react-native-design-system": "latest",
|
|
67
66
|
"@umituz/react-native-design-system-theme": "latest",
|
|
68
|
-
"@umituz/react-native-filesystem": "latest",
|
|
69
|
-
"@umituz/react-native-haptics": "latest",
|
|
70
|
-
"@umituz/react-native-uuid": "latest",
|
|
71
67
|
"eslint": "^8.57.0",
|
|
72
68
|
"expo-apple-authentication": "^6.0.0",
|
|
73
69
|
"expo-application": "^7.0.8",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* TanStack Query mutations for auth operations
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { useMutation } from "@umituz/react-native-
|
|
6
|
+
import { useMutation } from "@umituz/react-native-design-system";
|
|
7
7
|
import { getAuthService } from "../../../infrastructure/services/AuthService";
|
|
8
8
|
import type { SignUpParams, SignInParams } from "../../../application/ports/IAuthService";
|
|
9
9
|
import type { AuthUser } from "../../../domain/entities/AuthUser";
|
|
@@ -6,8 +6,7 @@
|
|
|
6
6
|
import React, { useEffect, useState } from "react";
|
|
7
7
|
import { createStackNavigator, StackScreenProps } from "@react-navigation/stack";
|
|
8
8
|
import { useAppDesignTokens } from "@umituz/react-native-design-system";
|
|
9
|
-
import { storageRepository } from "@umituz/react-native-
|
|
10
|
-
import { unwrap } from "@umituz/react-native-storage";
|
|
9
|
+
import { storageRepository, unwrap } from "@umituz/react-native-design-system";
|
|
11
10
|
import { LoginScreen } from "../screens/LoginScreen";
|
|
12
11
|
import { RegisterScreen } from "../screens/RegisterScreen";
|
|
13
12
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* Firebase auth changes are synced via initializeAuthListener().
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
import { createStore } from "@umituz/react-native-
|
|
9
|
+
import { createStore } from "@umituz/react-native-design-system";
|
|
10
10
|
import type { AuthUser } from "../../domain/entities/AuthUser";
|
|
11
11
|
import { mapToAuthUser } from "../../infrastructure/utils/UserMapper";
|
|
12
12
|
import type { AuthState, AuthActions, UserType } from "../../types/auth-store.types";
|