mirror of
https://github.com/hempyhemp/hh-auto-reply.git
synced 2026-07-24 21:04:58 +00:00
Some checks are pending
Deploy / deploy (push) Has started running
♻️ chore(src/hh/handlers/region): очищает кэш вакансий при изменении региона ♻️ chore(src/hh/bot-commands): очищает кэш вакансий при сбросе запроса ♻️ chore(src/hh/handlers/settings): очищает кэш вакансий при изменении режима поиска ♻️ chore(src/hh/handlers/resume): очищает кэш вакансий при сохранении резюме
26 lines
447 B
TypeScript
26 lines
447 B
TypeScript
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<VacancyRef & { message: string }>
|
|
error?: string
|
|
}
|
|
|
|
export interface ResumeListItem {
|
|
title: string
|
|
href: string
|
|
}
|