File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export interface StartPhoneMfaSignInRequest {
54
54
export interface StartTotpMfaSignInRequest {
55
55
mfaPendingCredential : string ;
56
56
mfaEnrollmentId : string ;
57
- TotpSignInInfo : {
57
+ totpSignInInfo : {
58
58
verificationCode : string ;
59
59
} ;
60
60
tenantId ?: string ;
@@ -67,7 +67,7 @@ export interface StartPhoneMfaSignInResponse {
67
67
}
68
68
69
69
export interface StartTotpMfaSignInResponse {
70
- TotpSignInInfo : {
70
+ totpSignInInfo : {
71
71
verificationCode : string ;
72
72
} ;
73
73
}
Original file line number Diff line number Diff line change @@ -162,8 +162,7 @@ export class TotpMultiFactorAssertionImpl
162
162
mfaPendingCredential : string
163
163
) : Promise < FinalizeMfaResponse > {
164
164
_assert (
165
- typeof this . enrollmentId !== 'undefined' &&
166
- typeof this . otp !== 'undefined' ,
165
+ this . enrollmentId !== undefined ,
167
166
auth ,
168
167
AuthErrorCode . ARGUMENT_ERROR
169
168
) ;
You can’t perform that action at this time.
0 commit comments