SignInSubmitCodeResultState type

SignInSubmitCodeResult 的可能狀態。 這包括:

  • 登入完成狀態:登入流程已成功完成。
  • SignInFailedState:登入流程失敗。
  • AuthMethodRegistrationRequiredState:使用者需要註冊一種認證方法。
  • MfaAwaitingState:使用者處於多重身份驗證(MFA)等待狀態。
type SignInSubmitCodeResultState =
  | SignInCompletedState
  | SignInFailedState
  | AuthMethodRegistrationRequiredState
  | MfaAwaitingState