File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @firebase/auth " : patch
3
+ ---
4
+
5
+ Update custom claim type of ` ParsedToken ` to be ` any `
Original file line number Diff line number Diff line change @@ -538,7 +538,7 @@ export function parseActionCodeURL(link: string): ActionCodeURL | null;
538
538
539
539
// @public
540
540
export interface ParsedToken {
541
- [key : string ]: string | object | undefined ;
541
+ [key : string ]: any ;
542
542
' auth_time' ? : string ;
543
543
' exp' ? : string ;
544
544
' firebase' ? : {
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
+ /* eslint-disable @typescript-eslint/no-explicit-any */
19
+
18
20
import { FirebaseApp } from '@firebase/app' ;
19
21
import {
20
22
CompleteFn ,
@@ -104,7 +106,7 @@ export interface ParsedToken {
104
106
'identities' ?: Record < string , string > ;
105
107
} ;
106
108
/** Map of any additional custom claims. */
107
- [ key : string ] : string | object | undefined ;
109
+ [ key : string ] : any ;
108
110
}
109
111
110
112
/**
You can’t perform that action at this time.
0 commit comments