@react-native-firebase/auth 21.13.0 → 21.14.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [21.14.0](https://github.com/invertase/react-native-firebase/compare/v21.13.0...v21.14.0) (2025-04-14)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **auth:** correct modular AuthListenerCallback type ([#8436](https://github.com/invertase/react-native-firebase/issues/8436)) ([d94a2d8](https://github.com/invertase/react-native-firebase/commit/d94a2d8e3786b69eb43d18eb0f329e5492ceaeb1))
11
+
6
12
  ## [21.13.0](https://github.com/invertase/react-native-firebase/compare/v21.12.3...v21.13.0) (2025-03-31)
7
13
 
8
14
  ### Features
@@ -16,7 +16,7 @@
16
16
  */
17
17
 
18
18
  import { ReactNativeFirebase } from '@react-native-firebase/app';
19
- import { FirebaseAuthTypes, CallbackOrObserver, AuthListenerCallback } from '../index';
19
+ import { FirebaseAuthTypes, CallbackOrObserver } from '../index';
20
20
  import { firebase } from '..';
21
21
 
22
22
  import Auth = FirebaseAuthTypes.Module;
@@ -182,7 +182,7 @@ export function isSignInWithEmailLink(auth: Auth, emailLink: string): boolean;
182
182
  */
183
183
  export function onAuthStateChanged(
184
184
  auth: Auth,
185
- nextOrObserver: CallbackOrObserver<AuthListenerCallback>,
185
+ nextOrObserver: CallbackOrObserver<FirebaseAuthTypes.AuthListenerCallback>,
186
186
  ): () => void;
187
187
 
188
188
  /**
@@ -194,7 +194,7 @@ export function onAuthStateChanged(
194
194
  */
195
195
  export function onIdTokenChanged(
196
196
  auth: Auth,
197
- nextOrObserver: CallbackOrObserver<AuthListenerCallback>,
197
+ nextOrObserver: CallbackOrObserver<FirebaseAuthTypes.AuthListenerCallback>,
198
198
  ): () => void;
199
199
 
200
200
  /**
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '21.13.0';
2
+ module.exports = '21.14.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "21.13.0",
3
+ "version": "21.14.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - The authentication module provides an easy-to-use API to integrate an authentication workflow into new and existing applications. React Native Firebase provides access to all Firebase authentication methods and identity providers.",
6
6
  "main": "lib/index.js",
@@ -27,7 +27,7 @@
27
27
  "plist": "^3.1.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@react-native-firebase/app": "21.13.0",
30
+ "@react-native-firebase/app": "21.14.0",
31
31
  "expo": ">=47.0.0"
32
32
  },
33
33
  "devDependencies": {
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "d4d02d15431a0be091a7417833e0180479f5e788"
45
+ "gitHead": "7c7beaab9cf8a619927a33ef7a15b8000e2874c2"
46
46
  }