Skip to content

feat(react-native): improves interface for composite filters #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/modules.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# react-query-firebase v2.0.3
# react-query-firebase v2.1.4

## Modules

Expand Down
2 changes: 1 addition & 1 deletion docs/react-native/analytics/functions/useAnalytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useAnalytics(): Module
```

Defined in: [react-native/analytics/useAnalytics.ts:9](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/analytics/useAnalytics.ts#L9)
Defined in: [react-native/analytics/useAnalytics.ts:9](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/analytics/useAnalytics.ts#L9)

Hook to access Firebase analytics from the Firebase context.

Expand Down
2 changes: 1 addition & 1 deletion docs/react-native/analytics/functions/useLogEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useLogEvent(options): object
```

Defined in: [react-native/analytics/useLogEvent.ts:19](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/analytics/useLogEvent.ts#L19)
Defined in: [react-native/analytics/useLogEvent.ts:19](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/analytics/useLogEvent.ts#L19)

Custom hook to create a log event function that logs an analytics event with specified parameters.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useSetAnalyticsCollectionEnabled(options): void
```

Defined in: [react-native/analytics/useSetAnalyticsCollectionEnabled.ts:14](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/analytics/useSetAnalyticsCollectionEnabled.ts#L14)
Defined in: [react-native/analytics/useSetAnalyticsCollectionEnabled.ts:14](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/analytics/useSetAnalyticsCollectionEnabled.ts#L14)

Custom hook to enable or disable analytics collection

Expand Down
2 changes: 1 addition & 1 deletion docs/react-native/auth/functions/useAuth.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useAuth(): Module
```

Defined in: [react-native/auth/useAuth.ts:9](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useAuth.ts#L9)
Defined in: [react-native/auth/useAuth.ts:9](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useAuth.ts#L9)

Custom hook to retrieve the authentication object from the Firebase context.

Expand Down
25 changes: 25 additions & 0 deletions docs/react-native/auth/functions/useAuthStateReady.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[react-query-firebase](../../../modules.md) / [react-native/auth](../index.md) / useAuthStateReady

# Function: useAuthStateReady()

```ts
function useAuthStateReady(): boolean
```

Defined in: [react-native/auth/useAuthStateReady.ts:20](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useAuthStateReady.ts#L20)

A custom hook that determines if the Firebase authentication state is ready.
It uses Firebase authentication to check if the auth state is ready and updates the state accordingly.

## Returns

`boolean`

## Example

```jsx
export const MyComponent = () => {
const isAuthStateReady = useAuthStateReady();
console.log(isAuthStateReady);
};
```
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useCreateUserWitEmailAndPasswordMutation<TContext>(options): UseMutationResult<UserCredential, NativeFirebaseError, UseCreateUserWitEmailAndPasswordMutationVariables, TContext>
```

Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:19](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L19)
Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:19](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L19)

Custom hook to initiate a user creation process using email and password with Firebase authentication.
This hook utilizes the `useMutation` functionality to support creating new user credentials asynchronously.
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native/auth/functions/useCurrentUser.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useCurrentUser(): null | User
```

Defined in: [react-native/auth/useCurrentUser.ts:9](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useCurrentUser.ts#L9)
Defined in: [react-native/auth/useCurrentUser.ts:9](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useCurrentUser.ts#L9)

Hook that provides the current authenticated user from Firebase Auth.
It listens for changes in the authentication state and updates the user accordingly.
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native/auth/functions/useIdToken.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useIdToken(): object
```

Defined in: [react-native/auth/useIdToken.ts:36](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useIdToken.ts#L36)
Defined in: [react-native/auth/useIdToken.ts:36](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useIdToken.ts#L36)

A hook to manage the ID token.
It monitors changes to the ID token and provides the token itself along with a refresh method to update the token when needed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useReauthenticateWitCredentialMutation<TContext>(options): UseMutationResult<UserCredential, NativeFirebaseError, UseReauthenticateWitCredentialMutationVariables, TContext>
```

Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:19](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitCredentialMutation.ts#L19)
Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:19](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitCredentialMutation.ts#L19)

Custom hook to create a mutation for re-authenticating a user with a given credential.
This hook utilizes useMutation from React Query to manage the asynchronous re-authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useReauthenticateWitRedirectMutation<TContext>(options): UseMutationResult<void, NativeFirebaseError, UseReauthenticateWitRedirectMutationVariables, TContext>
```

Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:21](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitRedirectMutation.ts#L21)
Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:21](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitRedirectMutation.ts#L21)

Custom hook that provides a mutation to reauthenticate a user with a given authentication provider using redirection.
This hook uses the `useMutation` hook from the React Query library to handle async mutation logic.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useSendEmailVerificationMutation<TContext>(options): UseMutationResult<void, NativeFirebaseError, UseSendEmailVerificationMutationVariables, TContext>
```

Defined in: [react-native/auth/useSendEmailVerificationMutation.ts:17](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useSendEmailVerificationMutation.ts#L17)
Defined in: [react-native/auth/useSendEmailVerificationMutation.ts:17](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useSendEmailVerificationMutation.ts#L17)

A custom hook to create a mutation for sending an email verification to a user using Firebase.
This uses the `useMutation` hook from a query library and wraps it with specific configuration options.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useSignInWitEmailAndPasswordMutation<TContext>(options): UseMutationResult<UserCredential, NativeFirebaseError, UseSignInWitEmailAndPasswordMutationVariables, TContext>
```

Defined in: [react-native/auth/useSignInWitEmailAndPasswordMutation.ts:20](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useSignInWitEmailAndPasswordMutation.ts#L20)
Defined in: [react-native/auth/useSignInWitEmailAndPasswordMutation.ts:20](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useSignInWitEmailAndPasswordMutation.ts#L20)

Custom hook to perform a sign-in operation using email and password with Firebase Authentication.
It utilizes the `useMutation` hook to manage the asynchronous operation and its state.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useSignInWitRedirectMutation<TContext>(options): UseMutationResult<void, NativeFirebaseError, UseSignInWitRedirectMutationVariables, TContext>
```

Defined in: [react-native/auth/useSignInWitRedirectMutation.ts:19](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useSignInWitRedirectMutation.ts#L19)
Defined in: [react-native/auth/useSignInWitRedirectMutation.ts:19](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useSignInWitRedirectMutation.ts#L19)

Custom hook for handling Firebase authentication using sign-in with redirect functionality.
This hook utilizes the `useMutation` mechanism to perform the sign-in operation.
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native/auth/functions/useSignOutMutation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useSignOutMutation<TContext>(options): UseMutationResult<void, NativeFirebaseError, void, TContext>
```

Defined in: [react-native/auth/useSignOutMutation.ts:15](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useSignOutMutation.ts#L15)
Defined in: [react-native/auth/useSignOutMutation.ts:15](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useSignOutMutation.ts#L15)

Custom hook for handling the sign-out mutation using Firebase authentication.
It wraps the useMutation hook to provide a sign-out function with Firebase.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function useUpdateProfileMutation<TContext>(options): UseMutationResult<void, NativeFirebaseError, UseUpdateProfileMutationVariables, TContext>
```

Defined in: [react-native/auth/useUpdateProfileMutation.ts:18](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useUpdateProfileMutation.ts#L18)
Defined in: [react-native/auth/useUpdateProfileMutation.ts:18](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useUpdateProfileMutation.ts#L18)

Custom hook to manage the mutation for updating a user's profile.
Utilizes Firebase for updating the user's display name.
Expand Down
1 change: 1 addition & 0 deletions docs/react-native/auth/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@

## Hook

- [useAuthStateReady](functions/useAuthStateReady.md)
- [useIdToken](functions/useIdToken.md)
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
type UseCreateUserWitEmailAndPasswordMutationVariables = object;
```

Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L7)
Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L7)

## Properties

Expand All @@ -16,7 +16,7 @@ Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:7](ht
email: string;
```

Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L8)
Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L8)

***

Expand All @@ -26,4 +26,4 @@ Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:8](ht
password: string;
```

Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:9](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L9)
Defined in: [react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts:9](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useCreateUserWitEmailAndPasswordMutation.ts#L9)
6 changes: 3 additions & 3 deletions docs/react-native/auth/type-aliases/UseIdTokenResult.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
type UseIdTokenResult = object;
```

Defined in: [react-native/auth/useIdToken.ts:9](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useIdToken.ts#L9)
Defined in: [react-native/auth/useIdToken.ts:9](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useIdToken.ts#L9)

## Properties

Expand All @@ -16,7 +16,7 @@ Defined in: [react-native/auth/useIdToken.ts:9](https://github.com/vpishuk/react
idToken: string;
```

Defined in: [react-native/auth/useIdToken.ts:10](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useIdToken.ts#L10)
Defined in: [react-native/auth/useIdToken.ts:10](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useIdToken.ts#L10)

***

Expand All @@ -26,7 +26,7 @@ Defined in: [react-native/auth/useIdToken.ts:10](https://github.com/vpishuk/reac
refresh: () => Promise<string | undefined>;
```

Defined in: [react-native/auth/useIdToken.ts:11](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useIdToken.ts#L11)
Defined in: [react-native/auth/useIdToken.ts:11](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useIdToken.ts#L11)

#### Returns

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
type UseReauthenticateWitCredentialMutationVariables = object;
```

Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:6](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitCredentialMutation.ts#L6)
Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:6](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitCredentialMutation.ts#L6)

## Properties

Expand All @@ -16,7 +16,7 @@ Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:6](http
credential: FirebaseAuthTypes.AuthCredential;
```

Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitCredentialMutation.ts#L7)
Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitCredentialMutation.ts#L7)

***

Expand All @@ -26,4 +26,4 @@ Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:7](http
user: FirebaseAuthTypes.User;
```

Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitCredentialMutation.ts#L8)
Defined in: [react-native/auth/useReauthenticateWitCredentialMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitCredentialMutation.ts#L8)
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
type UseReauthenticateWitRedirectMutationVariables = object;
```

Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitRedirectMutation.ts#L7)
Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitRedirectMutation.ts#L7)

## Properties

Expand All @@ -16,7 +16,7 @@ Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:7](https:
authProvider: FirebaseAuthTypes.AuthProvider;
```

Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitRedirectMutation.ts#L8)
Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitRedirectMutation.ts#L8)

***

Expand All @@ -26,7 +26,7 @@ Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:8](https:
optional popupRedirectResolver: PopupRedirectResolver;
```

Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:9](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitRedirectMutation.ts#L9)
Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:9](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitRedirectMutation.ts#L9)

***

Expand All @@ -36,4 +36,4 @@ Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:9](https:
user: FirebaseAuthTypes.User;
```

Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:10](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useReauthenticateWitRedirectMutation.ts#L10)
Defined in: [react-native/auth/useReauthenticateWitRedirectMutation.ts:10](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useReauthenticateWitRedirectMutation.ts#L10)
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
type UseSendEmailVerificationMutationVariables = object;
```

Defined in: [react-native/auth/useSendEmailVerificationMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useSendEmailVerificationMutation.ts#L7)
Defined in: [react-native/auth/useSendEmailVerificationMutation.ts:7](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useSendEmailVerificationMutation.ts#L7)

## Properties

Expand All @@ -16,4 +16,4 @@ Defined in: [react-native/auth/useSendEmailVerificationMutation.ts:7](https://gi
user: FirebaseAuthTypes.User;
```

Defined in: [react-native/auth/useSendEmailVerificationMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/09a15a5d938c4bdaa4fd86491bcf8ea41c16371f/react-native/auth/useSendEmailVerificationMutation.ts#L8)
Defined in: [react-native/auth/useSendEmailVerificationMutation.ts:8](https://github.com/vpishuk/react-query-firebase/blob/10e2945f75363a784c3dfc0e90b9f7a489dcc848/react-native/auth/useSendEmailVerificationMutation.ts#L8)
Loading