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