@mos-connection/model
Advanced tools
Changelog
4.2.0 (2024-12-05)
Changelog
4.1.0 (2024-04-02)
Changelog
4.0.0 (2024-02-02)
mosDevice.sendRequestAllMOSObjects()
. MosObjects are now returned to the mosDevice.onMOSObjects()
callback.Migration guide:
// Before:
const mosObjs = await mosDevice.sendRequestAllMOSObjects()
// After:
mosDevice.onMOSObjects((mosObjs: IMOSObject[]) => {
//
})
const ack = await mosDevice.sendRequestAllMOSObjects()