@react-native-firebase/auth 23.8.3 → 23.8.4

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
+ ## [23.8.4](https://github.com/invertase/react-native-firebase/compare/v23.8.3...v23.8.4) (2026-01-24)
7
+
8
+ ### Bug Fixes
9
+
10
+ - internal cross-module references to transpiled code must be dist not src ([b03db0a](https://github.com/invertase/react-native-firebase/commit/b03db0aa3fb748ee039826ccd9c7e73bc3c78f6f))
11
+
6
12
  ## [23.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
7
13
 
8
14
  ### Bug Fixes
@@ -15,8 +15,13 @@
15
15
  *
16
16
  */
17
17
 
18
- import { isAndroid, isFunction, isIOS, promiseDefer } from '@react-native-firebase/app/lib/common';
19
- import NativeFirebaseError from '@react-native-firebase/app/lib/internal/NativeFirebaseError';
18
+ import {
19
+ isAndroid,
20
+ isFunction,
21
+ isIOS,
22
+ promiseDefer,
23
+ } from '@react-native-firebase/app/dist/module/common';
24
+ import NativeFirebaseError from '@react-native-firebase/app/dist/module/internal/NativeFirebaseError';
20
25
 
21
26
  let REQUEST_ID = 0;
22
27
 
package/lib/Settings.js CHANGED
@@ -15,7 +15,7 @@
15
15
  *
16
16
  */
17
17
 
18
- import { isAndroid } from '@react-native-firebase/app/lib/common';
18
+ import { isAndroid } from '@react-native-firebase/app/dist/module/common';
19
19
 
20
20
  export default class Settings {
21
21
  constructor(auth) {
@@ -15,7 +15,7 @@
15
15
  *
16
16
  */
17
17
 
18
- import { isOther } from '@react-native-firebase/app/lib/common';
18
+ import { isOther } from '@react-native-firebase/app/dist/module/common';
19
19
  import { TotpSecret } from './TotpSecret';
20
20
  import { getAuth } from './modular';
21
21
 
package/lib/TotpSecret.js CHANGED
@@ -14,7 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- import { isString } from '@react-native-firebase/app/lib/common';
17
+ import { isString } from '@react-native-firebase/app/dist/module/common';
18
18
 
19
19
  export class TotpSecret {
20
20
  constructor(secretKey, auth) {
package/lib/User.js CHANGED
@@ -15,7 +15,12 @@
15
15
  *
16
16
  */
17
17
 
18
- import { isObject, isString, isUndefined, isBoolean } from '@react-native-firebase/app/lib/common';
18
+ import {
19
+ isObject,
20
+ isString,
21
+ isUndefined,
22
+ isBoolean,
23
+ } from '@react-native-firebase/app/dist/module/common';
19
24
 
20
25
  export default class User {
21
26
  constructor(auth, user) {
@@ -1,4 +1,4 @@
1
- import { isOther } from '@react-native-firebase/app/lib/common';
1
+ import { isOther } from '@react-native-firebase/app/dist/module/common';
2
2
  import MultiFactorResolver from './MultiFactorResolver.js';
3
3
 
4
4
  /**
package/lib/index.js CHANGED
@@ -24,13 +24,13 @@ import {
24
24
  isString,
25
25
  isValidUrl,
26
26
  parseListenerOrObserver,
27
- } from '@react-native-firebase/app/lib/common';
28
- import { setReactNativeModule } from '@react-native-firebase/app/lib/internal/nativeModule';
27
+ } from '@react-native-firebase/app/dist/module/common';
28
+ import { setReactNativeModule } from '@react-native-firebase/app/dist/module/internal/nativeModule';
29
29
  import {
30
30
  FirebaseModule,
31
31
  createModuleNamespace,
32
32
  getFirebaseRoot,
33
- } from '@react-native-firebase/app/lib/internal';
33
+ } from '@react-native-firebase/app/dist/module/internal';
34
34
  import ConfirmationResult from './ConfirmationResult';
35
35
  import PhoneAuthListener from './PhoneAuthListener';
36
36
  import PhoneMultiFactorGenerator from './PhoneMultiFactorGenerator';
@@ -17,7 +17,7 @@
17
17
 
18
18
  import { getApp } from '@react-native-firebase/app';
19
19
  import { MultiFactorUser } from '../multiFactor';
20
- import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
20
+ import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
21
21
 
22
22
  /**
23
23
  * @typedef {import('@firebase/app-types').FirebaseApp} FirebaseApp
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.8.3';
2
+ module.exports = '23.8.4';
@@ -42,12 +42,16 @@ import {
42
42
  GithubAuthProvider,
43
43
  PhoneAuthProvider,
44
44
  OAuthProvider,
45
- } from '@react-native-firebase/app/lib/internal/web/firebaseAuth';
46
- import { guard, getWebError, emitEvent } from '@react-native-firebase/app/lib/internal/web/utils';
45
+ } from '@react-native-firebase/app/dist/module/internal/web/firebaseAuth';
46
+ import {
47
+ guard,
48
+ getWebError,
49
+ emitEvent,
50
+ } from '@react-native-firebase/app/dist/module/internal/web/utils';
47
51
  import {
48
52
  getReactNativeAsyncStorageInternal,
49
53
  isMemoryStorage,
50
- } from '@react-native-firebase/app/lib/internal/asyncStorage';
54
+ } from '@react-native-firebase/app/dist/module/internal/asyncStorage';
51
55
 
52
56
  /**
53
57
  * Resolves or rejects an auth method promise without a user (user was missing).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "23.8.3",
3
+ "version": "23.8.4",
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.8.3",
30
+ "@react-native-firebase/app": "23.8.4",
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": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
46
+ "gitHead": "30df38f6df8750ff753566eb961bb46c10a84fed"
47
47
  }