pipedrive 18.1.0 → 18.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/dist/model/AddWebhookRequest.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -8,6 +8,12 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
|
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
10
|
|
11
|
+
## [18.1.1] - 2023-01-25
|
12
|
+
### Fixed
|
13
|
+
- Updated `user_id` description for `POST /webhooks/`
|
14
|
+
### Fixed
|
15
|
+
- Adds support for snake_case query params reported in pipedrive/client-nodejs#410
|
16
|
+
|
11
17
|
## [18.1.0] - 2023-01-20
|
12
18
|
### Changed
|
13
19
|
- Removed `location_lat` and `location_long` fields from the following endpoints activity details response:
|
@@ -450,7 +456,8 @@ structure
|
|
450
456
|
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
|
451
457
|
* Fixed typo in lead example response (`crrency` to `currency`)
|
452
458
|
|
453
|
-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v18.1.
|
459
|
+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v18.1.1...HEAD
|
460
|
+
[18.1.1]: https://github.com/pipedrive/api-docs/compare/v18.1.0...v18.1.1
|
454
461
|
[18.1.0]: https://github.com/pipedrive/api-docs/compare/v18.0.3...v18.1.0
|
455
462
|
[18.0.3]: https://github.com/pipedrive/api-docs/compare/v18.0.2...v18.0.3
|
456
463
|
[18.0.2]: https://github.com/pipedrive/api-docs/compare/v18.0.1...v18.0.2
|
@@ -115,7 +115,7 @@ AddWebhookRequest.prototype['event_action'] = undefined;
|
|
115
115
|
AddWebhookRequest.prototype['event_object'] = undefined;
|
116
116
|
|
117
117
|
/**
|
118
|
-
* The ID of the user this
|
118
|
+
* The ID of the user that this webhook will be authorized with. You have the option to use a different user's `user_id`. If it is not set, the current user's `user_id` will be used. As each webhook event is checked against a user’s permissions, the webhook will only be sent if the user has access to the specified object(s). If you want to receive notifications for all events, please use a top-level admin user’s `user_id`.
|
119
119
|
* @member {Number} user_id
|
120
120
|
*/
|
121
121
|
AddWebhookRequest.prototype['user_id'] = undefined;
|