Skip to content

Releases: pipedrive/client-nodejs

v7.0.0 Remove /authorizations endpoint

27 May 09:08
Compare
Choose a tag to compare

As the /authorizations endpoint is deprecated now and will be removed in December, we released new version of this library, without it.

v6.0.4 Fix item.save() issue

18 Mar 08:11
Compare
Choose a tag to compare

v6.0.3 Product variation support

13 Dec 11:43
Compare
Choose a tag to compare
  • Adds product variations to list of supported sub-objects to be able to update product variation for issue #20

see examples, which update variation of first product:
screen shot 2018-03-29 at 16 57 52

v6.0.2 Updated lodash and qs dependencies

08 Aug 12:22
Compare
Choose a tag to compare

v6.0.1 Updated Sinon to remove vulnerability issues

01 Aug 10:16
Compare
Choose a tag to compare

v6.0.0 Dropped support for old node versions

01 Aug 08:46
Compare
Choose a tag to compare
  • Only node versions 6, 8 and 10 are now supported
  • Updated mocha library dependency to 5.2.0 to remove vulnerability issues

v5.0.0 Removal of pushNotifications endpoint

05 Apr 11:59
Compare
Choose a tag to compare
  • Removes old pushNotifications endpoint. Webhooks should be used instead.

Breaking change: proper getUpdates() support

29 Mar 10:44
Compare
Choose a tag to compare
  • Previously, when one fetched deals and then did deal.getUpdates() on a specific deal object, it triggered an API request to /v1/deals/:id/updates which is a legacy endpoint, not supported and actually meant to go to full deprecation soon. Instead, the proper endpoint is now used, which is /v1/deals/:id/flow. An exception was needed to the interpretation of the API object structure blueprint.
  • tl;dr: /item/:id/flow used instead of /item/:id/updates endpoint is now used when fetching data with .getUpdates() method.

Support for related objects fetching

28 Mar 13:23
Compare
Choose a tag to compare

-Adds support for related objects fetching. In related objects (passed down as the sixth argument when fetching objects, or lists of objects) , Pipedrive API passes down things like pictures of persons, relevant user profile data etc that would be needed to properly render the underlying objects to a human being.
-Since related objects do not represent complete objects, they are not wrapped as collectionItems and thus have to be used as data stubs only. This is intentional by design.

Minor test coverage improvements for client.getAll()

27 Mar 13:59
Compare
Choose a tag to compare