pipedrive 13.0.3 → 13.0.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +2 -0
- package/dist/api/ProductsApi.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,8 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
|
|
7
7
|
For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19).
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
|
+
### Fixed
|
11
|
+
- Fixed typo in `ids` query parameter description in GET /products
|
10
12
|
|
11
13
|
## 13.0.3
|
12
14
|
### Changed
|
package/dist/api/ProductsApi.js
CHANGED
@@ -629,7 +629,7 @@ var ProductsApi = /*#__PURE__*/function () {
|
|
629
629
|
* @param {Object} opts Optional parameters
|
630
630
|
* @param {Number} opts.userId If supplied, only Products owned by the given user will be returned
|
631
631
|
* @param {Number} opts.filterId ID of the filter to use
|
632
|
-
* @param {Array.<Number>} opts.ids An array of integers with the IDs of the Products that
|
632
|
+
* @param {Array.<Number>} opts.ids An array of integers with the IDs of the Products that should be returned in the response
|
633
633
|
* @param {String} opts.firstChar If supplied, only Products whose name starts with the specified letter will be returned (case insensitive)
|
634
634
|
* @param {Boolean} opts.getSummary If supplied, response will return the total numbers of Products in the `additional_data.summary.total_count` property
|
635
635
|
* @param {Number} opts.start Pagination start (default to 0)
|
@@ -680,7 +680,7 @@ var ProductsApi = /*#__PURE__*/function () {
|
|
680
680
|
* @param {Object} opts Optional parameters
|
681
681
|
* @param {Number} opts.userId If supplied, only Products owned by the given user will be returned
|
682
682
|
* @param {Number} opts.filterId ID of the filter to use
|
683
|
-
* @param {Array.<Number>} opts.ids An array of integers with the IDs of the Products that
|
683
|
+
* @param {Array.<Number>} opts.ids An array of integers with the IDs of the Products that should be returned in the response
|
684
684
|
* @param {String} opts.firstChar If supplied, only Products whose name starts with the specified letter will be returned (case insensitive)
|
685
685
|
* @param {Boolean} opts.getSummary If supplied, response will return the total numbers of Products in the `additional_data.summary.total_count` property
|
686
686
|
* @param {Number} opts.start Pagination start (default to 0)
|