File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ export interface FinalizeTotpMfaSignInRequest {
113
113
mfaPendingCredential : string ;
114
114
verificationCode : string
115
115
tenantId ?: string ;
116
+ mfaEnrollmentId ?: string
116
117
}
117
118
118
119
export interface FinalizePhoneMfaSignInResponse extends FinalizeMfaResponse { }
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ export class TotpMultiFactorAssertionImpl
156
156
/** @internal */
157
157
_finalizeSignIn (
158
158
auth : AuthInternal ,
159
- mfaPendingCredential : string
159
+ mfaPendingCredential : string ,
160
160
) : Promise < FinalizeMfaResponse > {
161
161
_assert (
162
162
typeof this . enrollmentId !== 'undefined'
@@ -167,6 +167,7 @@ export class TotpMultiFactorAssertionImpl
167
167
return finalizeSignInTotpMfa ( auth , {
168
168
mfaPendingCredential,
169
169
verificationCode : this . otp ,
170
+ mfaEnrollmentId : this . enrollmentId
170
171
} ) ;
171
172
}
172
173
}
You can’t perform that action at this time.
0 commit comments