UNPKG

@azure/msal-browser

Version:
71 lines (63 loc) 2.25 kB
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AuthFlowResultBase } from "../../../core/auth_flow/AuthFlowResultBase.js"; import { SignUpResendCodeError } from "../error_type/SignUpError.js"; import type { SignUpCodeRequiredState } from "../state/SignUpCodeRequiredState.js"; import { SignUpFailedState } from "../state/SignUpFailedState.js"; import { SIGN_UP_FAILED_STATE_TYPE, SIGN_UP_CODE_REQUIRED_STATE_TYPE, } from "../../../core/auth_flow/AuthFlowStateTypes.js"; /* * Result of resending code in a sign-up operation. */ export class SignUpResendCodeResult extends AuthFlowResultBase< SignUpResendCodeResultState, SignUpResendCodeError, void > { /** * Creates a new instance of SignUpResendCodeResult. * @param state The state of the result. */ constructor(state: SignUpResendCodeResultState) { super(state); } /** * Creates a new instance of SignUpResendCodeResult with an error. * @param error The error that occurred. * @returns {SignUpResendCodeResult} A new instance of SignUpResendCodeResult with the error set. */ static createWithError(error: unknown): SignUpResendCodeResult { const result = new SignUpResendCodeResult(new SignUpFailedState()); result.error = new SignUpResendCodeError( SignUpResendCodeResult.createErrorData(error) ); return result; } /** * Checks if the result is in a failed state. */ isFailed(): this is SignUpResendCodeResult & { state: SignUpFailedState } { return this.state.stateType === SIGN_UP_FAILED_STATE_TYPE; } /** * Checks if the result is in a code required state. */ isCodeRequired(): this is SignUpResendCodeResult & { state: SignUpCodeRequiredState; } { return this.state.stateType === SIGN_UP_CODE_REQUIRED_STATE_TYPE; } } /** * The possible states for the SignUpResendCodeResult. * This includes: * - SignUpCodeRequiredState: The sign-up process requires a code. * - SignUpFailedState: The sign-up process has failed. */ export type SignUpResendCodeResultState = | SignUpCodeRequiredState | SignUpFailedState;