interface ConfirmSignInWithCustomChallenge {
    additionalInfo?: AuthAdditionalInfo;
    signInStep: "CONFIRM_SIGN_IN_WITH_CUSTOM_CHALLENGE";
}

Properties

additionalInfo?: AuthAdditionalInfo
signInStep: "CONFIRM_SIGN_IN_WITH_CUSTOM_CHALLENGE"

Auth step requires user to respond to a custom challenge.

Example

const challengeAnswer = 'my-custom-response';
await confirmSignIn({challengeResponse: challengeAnswer});