v0.8.0 - Breaking Change for Event based automations
This release introduces a breaking change to event based automations. In particular, the structure of the event data has changed. Previously, the event data used to look like this:
status:
event: <ZOOM_EVENT_NAME>
payload:
...
token: <VERIFICATION_TOKEN>
Now the event data looks like this:
event: <ZOOM_EVENT_NAME>
payload:
...
token: <VERIFICATION_TOKEN>
This change allows you to trigger on a specific zoom event name (previously, because the event name was under the status
key, the event would only trigger if you knew the payload content as well because partial matches only work for top level keys).
This change has no impact to users who just use the binary sensor for automations.