@firebase/auth-compat 0.3.7 → 0.4.0-20230413163153
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 +11 -0
- package/dist/auth-compat/index.d.ts +1 -0
- package/dist/auth-compat/test/helpers/helpers.d.ts +1 -0
- package/dist/esm/auth-compat/test/helpers/helpers.d.ts +1 -0
- package/dist/esm/index.node.esm.js +1 -1
- package/dist/firebase-auth.js +1 -1
- package/dist/firebase-auth.js.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm2017.js +1 -1
- package/dist/index.node.cjs.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @firebase/auth-compat
|
|
2
2
|
|
|
3
|
+
## 0.4.0-20230413163153
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b04f04081`](https://github.com/firebase/firebase-js-sdk/commit/b04f0408139f75c69b6f6eea396f3e961f658bd1) [#7191](https://github.com/firebase/firebase-js-sdk/pull/7191) - [feature] Added Firebase App Check support to Firebase Auth.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`b04f04081`](https://github.com/firebase/firebase-js-sdk/commit/b04f0408139f75c69b6f6eea396f3e961f658bd1), [`6b8e0c13d`](https://github.com/firebase/firebase-js-sdk/commit/6b8e0c13daaf476c7e6ea034006250d1f33dd828)]:
|
|
12
|
+
- @firebase/auth@0.23.0-20230413163153
|
|
13
|
+
|
|
3
14
|
## 0.3.7
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -68,6 +68,7 @@ declare module "@firebase/auth" {
|
|
|
68
68
|
function getMultiFactorResolver(auth: types.FirebaseAuth, error: MultiFactorError): MultiFactorResolver;
|
|
69
69
|
function getRedirectResult(auth: types.FirebaseAuth, resolver?: PopupRedirectResolver): Promise<UserCredential | null>;
|
|
70
70
|
function initializeAuth(app: FirebaseAppCompat, deps?: Dependencies): Auth;
|
|
71
|
+
function initializeRecaptchaConfig(auth: types.FirebaseAuth): Promise<void>;
|
|
71
72
|
function isSignInWithEmailLink(auth: types.FirebaseAuth, emailLink: string): boolean;
|
|
72
73
|
function linkWithCredential(user: types.User, credential: AuthCredential): Promise<UserCredential>;
|
|
73
74
|
function linkWithPhoneNumber(user: types.User, phoneNumber: string, appVerifier: ApplicationVerifier): Promise<ConfirmationResult>;
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
import { Provider } from '@firebase/component';
|
|
18
18
|
import '../..';
|
|
19
19
|
export declare const FAKE_HEARTBEAT_CONTROLLER_PROVIDER: Provider<"heartbeat">;
|
|
20
|
+
export declare const FAKE_APP_CHECK_CONTROLLER_PROVIDER: Provider<"app-check-internal">;
|
|
20
21
|
export declare function initializeTestInstance(): void;
|
|
21
22
|
export declare function cleanUpTestInstance(): Promise<void>;
|
|
22
23
|
export declare function randomEmail(): string;
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
import { Provider } from '@firebase/component';
|
|
18
18
|
import '../..';
|
|
19
19
|
export declare const FAKE_HEARTBEAT_CONTROLLER_PROVIDER: Provider<"heartbeat">;
|
|
20
|
+
export declare const FAKE_APP_CHECK_CONTROLLER_PROVIDER: Provider<"app-check-internal">;
|
|
20
21
|
export declare function initializeTestInstance(): void;
|
|
21
22
|
export declare function cleanUpTestInstance(): Promise<void>;
|
|
22
23
|
export declare function randomEmail(): string;
|