ChangePasswordEvents

type ChangePasswordEvents =
  | { type: 'REQUEST'; password: string; ticket: string }
  | { type: 'SUCCESS' }
  | { type: 'ERROR'; error: AuthErrorPayload | null }