export type JobDraft = {
  title: string;
  description: string;
  missions: string;

  salaryPeriod: "monthly" | "yearly";
  salaryMin: number | null;
  salaryMax: number | null;

  skills: string[];
  softSkills: string[];
  benefits: string[];
  adaptations: string[];
  hardships: string[];

  visibility: "standard" | "premium";
};

export const EMPTY_JOB: JobDraft = {
  title: "",
  description: "",
  missions: "",

  salaryPeriod: "monthly",
  salaryMin: null,
  salaryMax: null,

  skills: [],
  softSkills: [],
  benefits: [],
  adaptations: [],
  hardships: [],

  visibility: "standard",
};
