@react-native-firebase/auth 23.2.1 → 23.2.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/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.2.2](https://github.com/invertase/react-native-firebase/compare/v23.2.1...v23.2.2) (2025-09-03)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **auth:** export TOTP types in modular style ([45c0649](https://github.com/invertase/react-native-firebase/commit/45c064911b2657f344d1f19303a145964fbfe178))
11
+
6
12
  ## [23.2.1](https://github.com/invertase/react-native-firebase/compare/v23.2.0...v23.2.1) (2025-09-01)
7
13
 
8
14
  **Note:** Version bump only for package @react-native-firebase/auth
package/lib/index.js CHANGED
@@ -48,6 +48,7 @@ import OAuthProvider from './providers/OAuthProvider';
48
48
  import OIDCAuthProvider from './providers/OIDCAuthProvider';
49
49
  import PhoneAuthProvider from './providers/PhoneAuthProvider';
50
50
  import TwitterAuthProvider from './providers/TwitterAuthProvider';
51
+ import { TotpSecret } from './TotpSecret';
51
52
  import version from './version';
52
53
  import fallBackModule from './web/RNFBAuthModule';
53
54
 
@@ -68,6 +69,7 @@ export {
68
69
  FacebookAuthProvider,
69
70
  PhoneMultiFactorGenerator,
70
71
  TotpMultiFactorGenerator,
72
+ TotpSecret,
71
73
  OAuthProvider,
72
74
  OIDCAuthProvider,
73
75
  PhoneAuthState,
@@ -795,6 +795,8 @@ export {
795
795
  OIDCAuthProvider,
796
796
  PhoneAuthProvider,
797
797
  PhoneMultiFactorGenerator,
798
+ TotpMultiFactorGenerator,
799
+ TotpSecret,
798
800
  TwitterAuthProvider,
799
801
  PhoneAuthState,
800
802
  } from '../index';
@@ -18,7 +18,6 @@
18
18
  import { getApp } from '@react-native-firebase/app';
19
19
  import { fetchPasswordPolicy } from '../password-policy/passwordPolicyApi';
20
20
  import { PasswordPolicyImpl } from '../password-policy/PasswordPolicyImpl';
21
- import FacebookAuthProvider from '../providers/FacebookAuthProvider';
22
21
  import { MultiFactorUser } from '../multiFactor';
23
22
  import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
24
23
 
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.2.1';
2
+ module.exports = '23.2.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "23.2.1",
3
+ "version": "23.2.2",
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.2.1",
30
+ "@react-native-firebase/app": "23.2.2",
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": "79455d150fd162c23a1fd57af5d1a497303a5407"
46
+ "gitHead": "a1a50e6dad639b4b71859961a9926ac24e3280e9"
47
47
  }