pipedrive 13.2.8 → 13.2.9
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 -3
- package/dist/api/ProductsApi.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -7,24 +7,29 @@ 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
|
+
|
11
|
+
## 13.2.9
|
12
|
+
### Changed
|
13
|
+
- Added missing oauth scopes to /products/{id}/permittedUsers endpoint
|
14
|
+
|
10
15
|
## 13.2.8
|
11
16
|
### Fixed
|
12
17
|
- Changed rotten_flag type to boolean in `StagesApi`
|
13
18
|
|
14
19
|
## 13.2.7
|
15
|
-
|
20
|
+
### Changed
|
16
21
|
- Added `everyone` parameter to `GET /v1/stages/{id}` endpoint
|
17
22
|
- Updated `/v1/deals` endpoint `stage_id` and added `pipeline_id` descriptions
|
18
23
|
|
19
24
|
## 13.2.6
|
20
|
-
|
25
|
+
### Changed
|
21
26
|
- Updated `POST /products`: parameter `name` is required
|
22
27
|
- Updated `PUT /deals/:dealId/products`: parameter `quantity` and `item_price` are required
|
23
28
|
- Updated `POST /deals/:dealId/products`: parameter `quantity` and `item_price` are required
|
24
29
|
-
|
25
30
|
|
26
31
|
## 13.2.5
|
27
|
-
|
32
|
+
### Changed
|
28
33
|
- Updated `POST /notes`: parameter `content` is required
|
29
34
|
- Updated `POST /organizations`: parameter `name` is required
|
30
35
|
- Updated `POST /persons`: parameter `name` is required
|
package/dist/api/ProductsApi.js
CHANGED
@@ -608,7 +608,7 @@ var ProductsApi = /*#__PURE__*/function () {
|
|
608
608
|
}
|
609
609
|
}
|
610
610
|
|
611
|
-
var authNames = ['api_key'];
|
611
|
+
var authNames = ['api_key', 'oauth2'];
|
612
612
|
var accepts = ['application/json'];
|
613
613
|
var returnType = _UserIDs["default"];
|
614
614
|
return this.apiClient.callApi('/products/{id}/permittedUsers', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|