@react-native-firebase/auth 23.7.0 → 23.8.1

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,14 @@
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
+ ## [23.8.1](https://github.com/invertase/react-native-firebase/compare/v23.8.0...v23.8.1) (2026-01-13)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/auth
9
+
10
+ ## [23.8.0](https://github.com/invertase/react-native-firebase/compare/v23.7.0...v23.8.0) (2026-01-13)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/auth
13
+
6
14
  ## [23.7.0](https://github.com/invertase/react-native-firebase/compare/v23.6.0...v23.7.0) (2025-12-08)
7
15
 
8
16
  ### Features
package/lib/index.d.ts CHANGED
@@ -468,6 +468,7 @@ export namespace FirebaseAuthTypes {
468
468
  * A PhoneMultiFactorGenerator interface.
469
469
  */
470
470
  PhoneMultiFactorGenerator: PhoneMultiFactorGenerator;
471
+ SDK_VERSION: string;
471
472
  }
472
473
 
473
474
  /**
@@ -1647,6 +1648,11 @@ export namespace FirebaseAuthTypes {
1647
1648
  * TODO @salakar missing updateCurrentUser
1648
1649
  */
1649
1650
  export class Module extends FirebaseModule {
1651
+ /**
1652
+ * The current `FirebaseApp` instance for this Firebase service.
1653
+ */
1654
+ app: ReactNativeFirebase.FirebaseApp;
1655
+
1650
1656
  /**
1651
1657
  * Returns the current tenant Id or null if it has never been set
1652
1658
  *
@@ -2295,10 +2301,19 @@ export namespace FirebaseAuthTypes {
2295
2301
 
2296
2302
  export type CallbackOrObserver<T extends (...args: any[]) => any> = T | { next: T };
2297
2303
 
2298
- declare const defaultExport: ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
2304
+ type AuthNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
2299
2305
  FirebaseAuthTypes.Module,
2300
2306
  FirebaseAuthTypes.Statics
2301
- >;
2307
+ > & {
2308
+ auth: ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<
2309
+ FirebaseAuthTypes.Module,
2310
+ FirebaseAuthTypes.Statics
2311
+ >;
2312
+ firebase: ReactNativeFirebase.Module;
2313
+ app(name?: string): ReactNativeFirebase.FirebaseApp;
2314
+ };
2315
+
2316
+ declare const defaultExport: AuthNamespace;
2302
2317
 
2303
2318
  export const firebase: ReactNativeFirebase.Module & {
2304
2319
  auth: typeof defaultExport;
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.7.0';
2
+ module.exports = '23.8.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "23.7.0",
3
+ "version": "23.8.1",
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": "23.7.0",
30
+ "@react-native-firebase/app": "23.8.1",
31
31
  "expo": ">=47.0.0"
32
32
  },
33
33
  "devDependencies": {
@@ -43,5 +43,5 @@
43
43
  "access": "public",
44
44
  "provenance": true
45
45
  },
46
- "gitHead": "2a30c0b1e41a2b239172afd167f98a03fd422f2c"
46
+ "gitHead": "46b06d2b1100ec03c7807b4ff34b583b773a19d7"
47
47
  }