UNPKG

dirigera

Version:

A TypeScript client for IKEA's DIRIGERA smart home hub

14 lines (13 loc) 343 B
export default (got) => { return { async status() { return await got.get(`hub/status`).json(); }, async checkFirmwareUpdate() { await got.put(`hub/ota/check`).json(); }, async installFirmwareUpdate() { await got.put(`hub/ota/update`).json(); }, }; };