@firebase/auth-compat 0.2.23 → 0.2.24
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 +12 -0
- package/dist/auth-compat/index.d.ts +1 -1
- package/dist/esm/index.node.esm.js +2 -2
- package/dist/firebase-auth.js +1 -1
- package/dist/firebase-auth.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm2017.js +2 -2
- package/dist/index.node.cjs.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @firebase/auth-compat
|
|
2
2
|
|
|
3
|
+
## 0.2.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4af28c1a4`](https://github.com/firebase/firebase-js-sdk/commit/4af28c1a42bd25ce2353f694ca1724c6101cbce5) [#6682](https://github.com/firebase/firebase-js-sdk/pull/6682) - Upgrade TypeScript to 4.7.4.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`4af28c1a4`](https://github.com/firebase/firebase-js-sdk/commit/4af28c1a42bd25ce2353f694ca1724c6101cbce5)]:
|
|
10
|
+
- @firebase/auth@0.20.11
|
|
11
|
+
- @firebase/auth-types@0.11.1
|
|
12
|
+
- @firebase/component@0.5.21
|
|
13
|
+
- @firebase/util@1.7.3
|
|
14
|
+
|
|
3
15
|
## 0.2.23
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -50,7 +50,7 @@ declare module '@firebase/app-compat' {
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
import { FirebaseApp as FirebaseAppCompat } from "@firebase/app-compat";
|
|
53
|
-
import { User, Unsubscribe, ActionCodeInfo, UserCredential, Auth, IdTokenResult, MultiFactorError, MultiFactorResolver, PopupRedirectResolver, Dependencies, AuthCredential, ApplicationVerifier, ConfirmationResult, AuthProvider, MultiFactorUser, NextOrObserver, ErrorFn, CompleteFn, ActionCodeSettings, Persistence, PhoneAuthCredential } from "@firebase/auth";
|
|
53
|
+
import { type User, type Unsubscribe, type ActionCodeInfo, type UserCredential, type Auth, type IdTokenResult, type MultiFactorError, type MultiFactorResolver, type PopupRedirectResolver, type Dependencies, type AuthCredential, type ApplicationVerifier, type ConfirmationResult, type AuthProvider, type MultiFactorUser, type NextOrObserver, type ErrorFn, type CompleteFn, type ActionCodeSettings, type Persistence, type PhoneAuthCredential } from "@firebase/auth";
|
|
54
54
|
declare module "@firebase/auth" {
|
|
55
55
|
function applyActionCode(auth: types.FirebaseAuth, oobCode: string): Promise<void>;
|
|
56
56
|
function beforeAuthStateChanged(auth: types.FirebaseAuth, callback: (user: User | null) => void | Promise<void>, onAbort?: () => void): Unsubscribe;
|
|
@@ -2,11 +2,11 @@ import firebase from '@firebase/app-compat';
|
|
|
2
2
|
import * as exp from '@firebase/auth/internal';
|
|
3
3
|
import { FetchProvider } from '@firebase/auth/internal';
|
|
4
4
|
import { Component } from '@firebase/component';
|
|
5
|
-
import { isBrowserExtension, isReactNative, isNode,
|
|
5
|
+
import { isBrowserExtension, getUA, isReactNative, isNode, isIndexedDBAvailable, isIE, FirebaseError } from '@firebase/util';
|
|
6
6
|
import * as fetchImpl from 'node-fetch';
|
|
7
7
|
|
|
8
8
|
var name = "@firebase/auth-compat";
|
|
9
|
-
var version = "0.2.
|
|
9
|
+
var version = "0.2.24";
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* @license
|