import { ReduxActionErrorTypes, ReduxActionTypes, } from "constants/ReduxActionConstants"; import { CurrentUserDetailsRequestPayload } from "constants/userConstants"; import { TokenPasswordUpdateRequest, VerifyTokenRequest } from "api/UserApi"; export const logoutUserSuccess = () => ({ type: ReduxActionTypes.LOGOUT_USER_SUCCESS, }); export const logoutUserError = (error: any) => ({ type: ReduxActionErrorTypes.LOGOUT_USER_ERROR, payload: { error, }, }); export const setCurrentUserDetails = () => ({ type: ReduxActionTypes.SET_CURRENT_USER_INIT, payload: CurrentUserDetailsRequestPayload, }); export const verifyInviteSuccess = () => ({ type: ReduxActionTypes.VERIFY_INVITE_SUCCESS, }); export const verifyInvite = (payload: VerifyTokenRequest) => ({ type: ReduxActionTypes.VERIFY_INVITE_INIT, payload, }); export const verifyInviteError = (error: any) => ({ type: ReduxActionErrorTypes.VERIFY_INVITE_ERROR, payload: { error }, }); export const invitedUserSignup = ( payload: TokenPasswordUpdateRequest & { resolve: any; reject: any }, ) => ({ type: ReduxActionTypes.INVITED_USER_SIGNUP, payload, }); export const invitedUserSignupSuccess = () => ({ type: ReduxActionTypes.INVITED_USER_SIGNUP_SUCCESS, }); export const invitedUserSignupError = (error: any) => ({ type: ReduxActionErrorTypes.INVITED_USER_SIGNUP_ERROR, payload: { error, }, });