pipedrive 12.0.0-rc.6 → 12.0.0-rc.7

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipedrive",
3
- "version": "12.0.0-rc.6",
3
+ "version": "12.0.0-rc.7",
4
4
  "description": "Pipedrive REST client for NodeJS",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",