File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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;
538538
539539// @public
540540export interface ParsedToken {
541- [key : string ]: string | object | undefined ;
541+ [key : string ]: any ;
542542 ' auth_time' ? : string ;
543543 ' exp' ? : string ;
544544 ' firebase' ? : {
Original file line number Diff line number Diff line change 1515 * limitations under the License.
1616 */
1717
18+ /* eslint-disable @typescript-eslint/no-explicit-any */
19+
1820import { FirebaseApp } from '@firebase/app' ;
1921import {
2022 CompleteFn ,
@@ -104,7 +106,7 @@ export interface ParsedToken {
104106 'identities' ?: Record < string , string > ;
105107 } ;
106108 /** Map of any additional custom claims. */
107- [ key : string ] : string | object | undefined ;
109+ [ key : string ] : any ;
108110}
109111
110112/**
You can’t perform that action at this time.
0 commit comments