import { VendorCandidates } from "@/db/schema/vendors" export interface CandidateColumnConfig { id: keyof VendorCandidates label: string group?: string excelHeader?: string type?: string } export const candidateColumnsConfig: CandidateColumnConfig[] = [ // Basic Info { id: "companyName", label: "Company Name", excelHeader: "Company Name", // group: "Basic Info", }, { id: "contactEmail", label: "Contact Email", excelHeader: "Contact Email", // group: "Basic Info", }, { id: "contactPhone", label: "Contact Phone", excelHeader: "Contact Phone", // group: "Basic Info", }, { id: "country", label: "Country", excelHeader: "Country", // group: "Basic Info", }, { id: "source", label: "Source", excelHeader: "Source", // group: "Basic Info", }, { id: "status", label: "Status", excelHeader: "Status", // group: "Basic Info", }, { id: "createdAt", label: "Created At", excelHeader: "Created At", // group: "Metadata", }, { id: "updatedAt", label: "Updated At", excelHeader: "Updated At", // group: "Metadata", }, ]