Skip to content

v0.0.53

Compare
Choose a tag to compare
@Caprico85 Caprico85 released this 29 Dec 22:38
· 1127 commits to master since this release
754a892

Breaking change:
The command field in output messages from device nodes was moved outside of the payload. This was done to prevent INVALID_ARGUMENT errors.

Previously a message looked like this:

{
    payload: {
        command: "action.devices.commands.OnOff",
        on: false
    }
}

Now the message looks like this:

{
    // command is now outside of payload
    command: "action.devices.commands.OnOff",
    payload: {
        on: false
    }
}