Skip to content

Releases: pipedrive/client-nodejs

v2.0.3 Fix to sockjs-client for Node 4.2.x

05 Nov 12:11
Compare
Choose a tag to compare
  • 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

28 Sep 11:11
Compare
Choose a tag to compare
  • 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

16 Sep 07:03
Compare
Choose a tag to compare
Merge pull request #15 from pipedrive/strict_mode_scope_fix

strict_mode scope bugfix

Experimental data change listeners support

12 Jun 08:37
Compare
Choose a tag to compare
  • 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

12 Jun 08:38
Compare
Choose a tag to compare
  • You can now work with participants of a deal. Details in readme.
  • A few minor other fixes.