// Client-safe expense constants. Mirrors expense_kind in schema/_shared.ts. export type ExpenseKind = | 'water' | 'electricity' | 'gas' | 'internet' | 'phone' | 'cable' | 'waste' | 'maintenance' | 'repair' | 'cleaning' | 'insurance' | 'tax' | 'rent' | 'other'; export const EXPENSE_KINDS: readonly ExpenseKind[] = [ 'electricity', 'water', 'gas', 'internet', 'phone', 'cable', 'waste', 'maintenance', 'repair', 'cleaning', 'insurance', 'tax', 'rent', 'other' ] as const; export const EXPENSE_KIND_LABEL: Record = { water: 'Water', electricity: 'Electricity', gas: 'Gas', internet: 'Internet', phone: 'Phone', cable: 'Cable TV', waste: 'Waste', maintenance: 'Maintenance', repair: 'Repair', cleaning: 'Cleaning', insurance: 'Insurance', tax: 'Tax', rent: 'Rent', other: 'Other' };