import { getServiceHost } from './utils'; export async function history(): Promise { const dockerAddress = await getServiceHost('external_composition', 3012); const res = await fetch(`http://${dockerAddress}/_history`, { method: 'GET', headers: { accept: 'application/json', 'content-type': 'application/json', }, }); return res.json(); }