@firebase/app-check-interop-types 0.2.0 → 0.3.0-20230523191304
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/index.d.ts +4 -0
- package/package.json +1 -1
- package/CHANGELOG.md +0 -19
package/index.d.ts
CHANGED
|
@@ -20,6 +20,10 @@ export interface FirebaseAppCheckInternal {
|
|
|
20
20
|
// is present. Returns null if no token is present and no token requests are in-flight.
|
|
21
21
|
getToken(forceRefresh?: boolean): Promise<AppCheckTokenResult>;
|
|
22
22
|
|
|
23
|
+
// Always returns a fresh limited-use token suitable for Replay Protection.
|
|
24
|
+
// The returned token must be used and consumed as soon as possible.
|
|
25
|
+
getLimitedUseToken(): Promise<AppCheckTokenResult>;
|
|
26
|
+
|
|
23
27
|
// Registers a listener to changes in the token state. There can be more than one listener
|
|
24
28
|
// registered at the same time for one or more FirebaseAppAttestation instances. The
|
|
25
29
|
// listeners call back on the UI thread whenever the current token associated with this
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/app-check-interop-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-20230523191304",
|
|
4
4
|
"description": "@firebase/app-check-interop-types Types",
|
|
5
5
|
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
|
|
6
6
|
"license": "Apache-2.0",
|
package/CHANGELOG.md
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# @firebase/app-check-interop-types
|
|
2
|
-
|
|
3
|
-
## 0.2.0
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- [`1625f7a95`](https://github.com/firebase/firebase-js-sdk/commit/1625f7a95cc3ffb666845db0a8044329be74b5be) [#6799](https://github.com/firebase/firebase-js-sdk/pull/6799) - Update TypeScript version to 4.7.4.
|
|
8
|
-
|
|
9
|
-
## 0.1.1
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- [`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.
|
|
14
|
-
|
|
15
|
-
## 0.1.0
|
|
16
|
-
|
|
17
|
-
### Minor Changes
|
|
18
|
-
|
|
19
|
-
- [`81c131abe`](https://github.com/firebase/firebase-js-sdk/commit/81c131abea7001c5933156ff6b0f3925f16ff052) [#4860](https://github.com/firebase/firebase-js-sdk/pull/4860) - Release the Firebase App Check package.
|