export interface Customer { id: number full_name: string email?: string | null phone?: string | null address?: string | null notes?: string | null created_at: string updated_at: string } export type CustomerInsert = Omit export type CustomerUpdate = Partial