UNPKG

cotizaciones-uruguay

Version:
13 lines 427 B
import { getSoapClient } from './soapClient.js'; const groups = { 'INTERNATIONAL': 1, 'LOCAL': 2, 'LOCAL_RATES': 5, 'ALL': 0 }; export async function obtenerMonedas(group = 'ALL') { const client = await getSoapClient('awsbcumonedas'); const [result] = await client.ExecuteAsync({ Entrada: { Grupo: groups[group] } }); return result.Salida['wsmonedasout.Linea']; } //# sourceMappingURL=monedas.js.map