ChangeEmailEvents

type ChangeEmailEvents =
  | { type: 'REQUEST'; email: string; options: ChangeEmailOptions }
  | { type: 'SUCCESS' }
  | { type: 'ERROR'; error: AuthErrorPayload | null }