pipedrive 12.0.0-rc.6 → 12.0.0-rc.7
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 +6 -0
- package/dist/api/GoalsApi.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -13,6 +13,12 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
|
|
13
13
|
* api/v1/OrganizationFields#getOrganizationFields
|
14
14
|
* api/v1/PersonFields#getPersonFields
|
15
15
|
* api/v1/ProductFields#getProductFields
|
16
|
+
### Added
|
17
|
+
- Adding pagination parameters documentation for endpoints:
|
18
|
+
* api/v1/DealFields#getDealFields
|
19
|
+
* api/v1/OrganizationFields#getOrganizationFields
|
20
|
+
* api/v1/PersonFields#getPersonFields
|
21
|
+
* api/v1/ProductFields#getProductFields
|
16
22
|
### Changed
|
17
23
|
- Changed POST /v1/webhooks to accept `application/json` instead of `application/x-www-form-urlencoded` to reflect the reality
|
18
24
|
### Added
|
package/dist/api/GoalsApi.js
CHANGED
@@ -160,8 +160,8 @@ var GoalsApi = /*#__PURE__*/function () {
|
|
160
160
|
* Get result of a goal
|
161
161
|
* Gets progress of a goal for specified period.
|
162
162
|
* @param {String} id ID of the goal that the results are looked for.
|
163
|
-
* @param {Date} periodStart Start date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD.
|
164
|
-
* @param {Date} periodEnd End date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD.
|
163
|
+
* @param {Date} periodStart Start date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD. This date must be the same or after the goal duration start date.
|
164
|
+
* @param {Date} periodEnd End date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD. This date must be the same or before the goal duration end date.
|
165
165
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetGoalResultResponse200} and HTTP response
|
166
166
|
*/
|
167
167
|
|
@@ -218,8 +218,8 @@ var GoalsApi = /*#__PURE__*/function () {
|
|
218
218
|
* Get result of a goal
|
219
219
|
* Gets progress of a goal for specified period.
|
220
220
|
* @param {String} id ID of the goal that the results are looked for.
|
221
|
-
* @param {Date} periodStart Start date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD.
|
222
|
-
* @param {Date} periodEnd End date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD.
|
221
|
+
* @param {Date} periodStart Start date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD. This date must be the same or after the goal duration start date.
|
222
|
+
* @param {Date} periodEnd End date of the period for which to find progress of a goal. Date in format of YYYY-MM-DD. This date must be the same or before the goal duration end date.
|
223
223
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetGoalResultResponse200}
|
224
224
|
*/
|
225
225
|
|