@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 +6 -0
- package/lib/index.js +2 -0
- package/lib/modular/index.d.ts +2 -0
- package/lib/modular/index.js +0 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
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,
|
package/lib/modular/index.d.ts
CHANGED
package/lib/modular/index.js
CHANGED
@@ -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.
|
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.
|
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.
|
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": "
|
46
|
+
"gitHead": "a1a50e6dad639b4b71859961a9926ac24e3280e9"
|
47
47
|
}
|