export interface ApplyOptions { query: string area?: string maxApplies?: number searchMode?: 'text' | 'resume' resumeId?: string excludedWords?: string } export interface VacancyRef { title: string href: string } export interface ApplyResult { applied: VacancyRef[] skipped: VacancyRef[] errors: Array error?: string } export interface ResumeListItem { title: string href: string }