SignInSubmitCodeResultState type

SignInSubmitCodeResult の考えられる状態。 これには、以下のことが含まれます。

  • SignInCompletedState: サインイン プロセスが正常に完了しました。
  • SignInFailedState: サインイン プロセスが失敗しました。
  • AuthMethodRegistrationRequiredState: ユーザーは認証方法を登録する必要があります。
  • MfaAwaitingState: ユーザーは多要素認証 (MFA) 待機状態です。
type SignInSubmitCodeResultState =
  | SignInCompletedState
  | SignInFailedState
  | AuthMethodRegistrationRequiredState
  | MfaAwaitingState