export interface UpdateAjusteDto { fechaAjuste: string; // "yyyy-MM-dd" tipoAjuste: 'Credito' | 'Debito'; monto: number; motivo: string; }