SendVerificationEmailEvents

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