@umituz/react-native-auth 1.0.0 → 1.0.2

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": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Firebase Authentication wrapper for React Native apps - Secure, type-safe, and production-ready",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -52,4 +52,3 @@
52
52
  "LICENSE"
53
53
  ]
54
54
  }
55
-
@@ -12,7 +12,7 @@ import {
12
12
  type User,
13
13
  type Auth,
14
14
  } from "firebase/auth";
15
- import type { IAuthService, SignUpParams, SignInParams } from "../application/ports/IAuthService";
15
+ import type { IAuthService, SignUpParams, SignInParams } from "../../application/ports/IAuthService";
16
16
  import {
17
17
  AuthInitializationError,
18
18
  AuthValidationError,
@@ -22,9 +22,9 @@ import {
22
22
  AuthWrongPasswordError,
23
23
  AuthUserNotFoundError,
24
24
  AuthNetworkError,
25
- } from "../domain/errors/AuthError";
26
- import type { AuthConfig } from "../domain/value-objects/AuthConfig";
27
- import { DEFAULT_AUTH_CONFIG } from "../domain/value-objects/AuthConfig";
25
+ } from "../../domain/errors/AuthError";
26
+ import type { AuthConfig } from "../../domain/value-objects/AuthConfig";
27
+ import { DEFAULT_AUTH_CONFIG } from "../../domain/value-objects/AuthConfig";
28
28
 
29
29
  /**
30
30
  * Validate email format
@@ -5,7 +5,7 @@
5
5
 
6
6
  import { useEffect, useState, useCallback } from "react";
7
7
  import type { User } from "firebase/auth";
8
- import { getAuthService } from "../infrastructure/services/AuthService";
8
+ import { getAuthService } from "../../infrastructure/services/AuthService";
9
9
 
10
10
  export interface UseAuthResult {
11
11
  /** Current authenticated user */