Releases: pipedrive/client-nodejs
Releases · pipedrive/client-nodejs
v2.0.3 Fix to sockjs-client for Node 4.2.x
- A fix to sockjs-client to have the library work properly under Node 4.2.x
- Added Travis integration
v2.0.2 strict_mode setting fix
- Pipedrive API can be consumed in a strict_mode — in which the objects put to and received from the API match exactly the format received via the live event listeners. It is currently encouraged for early adopters but will soon be generally recommended as well.
v2.0.1 Fix to modifying nested object
Merge pull request #15 from pipedrive/strict_mode_scope_fix strict_mode scope bugfix
Experimental data change listeners support
- We've added a way to bind live event listeners to your Pipedrive account. Once a data you have access to changes on the Pipedrive account, your provided callback will fire in your code. Technically, the Client instance has a new
.on(event, function)
method. You can invoke it with a event pattern (similar to push notifications, e.g. "deal.added", and a callback function that will receive the following arguments:event, data
) While this is experimental at this stage, we do not recommend running it in production just yet. For a real world example, see live-updates.js - A few very minor changes. Very few, very minor.
Added support for dealParticipants
- You can now work with participants of a deal. Details in readme.
- A few minor other fixes.