Closed iartemiev closed 2 weeks ago
Given the following incoming subscription message
{ "id":"ca7ba14c-e71a-45bf-b121-47a578b7c162", "type":"data", "event":"{\"some\":\"data\"}" }
Old
channel.subscribe({ next: (data) => console.log(data); /* { some: "data" } */ })
New
channel.subscribe({ next: (data) => console.log(data); /* { id: "ca7ba14c-e71a-45bf-b121-47a578b7c162", type: "data", event: { some: "data" } } */ })
yarn test
Description of changes
Given the following incoming subscription message
Old
New
Description of how you validated changes
Checklist
yarn test
passes