Releases: mikejac/node-red-contrib-google-smarthome
Releases · mikejac/node-red-contrib-google-smarthome
v0.0.59
v0.0.58
v0.0.57
v0.0.56
v0.0.55
v0.0.54
v0.0.53
- Support for switches (@Chrischi-)
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
}
}