Skip to content

v3.0.0

Compare
Choose a tag to compare
@gr2m gr2m released this 22 Nov 07:44

3.0.0 (2017-11-22)

Features

BREAKING CHANGES

  • event.data is now event.payload
  • event handlers are no called with single {id, name, payload} object

Before

webhooks.on(push, (data, {id, name}) => {})

Now

webhooks.on(push, ({id, name, payload}) => {})