UNPKG

@azure/msal-browser

Version:
56 lines (53 loc) 1.98 kB
/*! @azure/msal-browser v4.21.0 2025-08-19 */ 'use strict'; import { AuthFlowResultBase } from '../../../core/auth_flow/AuthFlowResultBase.mjs'; import { SignUpSubmitPasswordError } from '../error_type/SignUpError.mjs'; import { SignUpAttributesRequiredState } from '../state/SignUpAttributesRequiredState.mjs'; import { SignUpCompletedState } from '../state/SignUpCompletedState.mjs'; import { SignUpFailedState } from '../state/SignUpFailedState.mjs'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /* * Result of a sign-up operation that requires a password. */ class SignUpSubmitPasswordResult extends AuthFlowResultBase { /** * Creates a new instance of SignUpSubmitPasswordResult. * @param state The state of the result. */ constructor(state) { super(state); } /** * Creates a new instance of SignUpSubmitPasswordResult with an error. * @param error The error that occurred. * @returns {SignUpSubmitPasswordResult} A new instance of SignUpSubmitPasswordResult with the error set. */ static createWithError(error) { const result = new SignUpSubmitPasswordResult(new SignUpFailedState()); result.error = new SignUpSubmitPasswordError(SignUpSubmitPasswordResult.createErrorData(error)); return result; } /** * Checks if the result is in a failed state. */ isFailed() { return this.state instanceof SignUpFailedState; } /** * Checks if the result is in an attributes required state. */ isAttributesRequired() { return this.state instanceof SignUpAttributesRequiredState; } /** * Checks if the result is in a completed state. */ isCompleted() { return this.state instanceof SignUpCompletedState; } } export { SignUpSubmitPasswordResult }; //# sourceMappingURL=SignUpSubmitPasswordResult.mjs.map