File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -820,7 +820,7 @@ export namespace admin.auth {
820
820
* When not provided in an `admin.auth.TenantAwareAuth` context, the user is uploaded
821
821
* to the tenant corresponding to that `TenantAwareAuth` instance's tenant ID.
822
822
*/
823
- tenantId ?: string | null ;
823
+ tenantId ?: string ;
824
824
825
825
/**
826
826
* The user's multi-factor related properties.
Original file line number Diff line number Diff line change @@ -99,14 +99,14 @@ export interface DecodedIdToken {
99
99
sign_in_provider : string ;
100
100
sign_in_second_factor ?: string ;
101
101
second_factor_identifier ?: string ;
102
+ tenant ?: string ;
102
103
[ key : string ] : any ;
103
104
} ;
104
105
iat : number ;
105
106
iss : string ;
106
107
phone_number ?: string ;
107
108
picture ?: string ;
108
109
sub : string ;
109
- tenant ?: string ;
110
110
uid : string ;
111
111
[ key : string ] : any ;
112
112
}
Original file line number Diff line number Diff line change @@ -148,9 +148,9 @@ export enum MultiFactorId {
148
148
*/
149
149
export abstract class MultiFactorInfo {
150
150
public readonly uid : string ;
151
- public readonly displayName : string ;
151
+ public readonly displayName ? : string ;
152
152
public readonly factorId : MultiFactorId ;
153
- public readonly enrollmentTime : string ;
153
+ public readonly enrollmentTime ? : string ;
154
154
155
155
/**
156
156
* Initializes the MultiFactorInfo associated subclass using the server side.
You can’t perform that action at this time.
0 commit comments