pipedrive 13.1.1 → 13.2.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,22 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## 13.2.1
12
+ ### Fixed
13
+ - Fixed wrong field name normalization for custom fields keys
14
+
15
+ ## 13.2.0
16
+ ### Changed
17
+ - Deprecate /v1/mailbox/mailMessages/{id} & /v1/mailbox/mailThreads/{id} response data property write_flag
18
+
19
+ ## 13.1.3
20
+ ### Fixed
21
+ - Fix replaceCamelCaseObj is not defined reference issue in ApiClient
22
+
23
+ ## 13.1.2
24
+ ### Fixed
25
+ - Styling fixes: capitalization, tutorial links' texts, code-highlighting in descriptions
26
+
11
27
  ## 13.1.1
12
28
  ### Changed
13
29
  - Changed person-related endpoints to include `marketing_status` body parameter: `POST /v1/persons`, `PUT /v1/persons/{id}`
package/README.md CHANGED
@@ -271,11 +271,11 @@ Class | Method | HTTP request | Description
271
271
  *Pipedrive.ActivitiesApi* | [**getActivity**](docs/ActivitiesApi.md#getActivity) | **GET** /activities/{id} | Get details of an activity
272
272
  *Pipedrive.ActivitiesApi* | [**updateActivity**](docs/ActivitiesApi.md#updateActivity) | **PUT** /activities/{id} | Update an activity
273
273
  *Pipedrive.ActivityFieldsApi* | [**getActivityFields**](docs/ActivityFieldsApi.md#getActivityFields) | **GET** /activityFields | Get all activity fields
274
- *Pipedrive.ActivityTypesApi* | [**addActivityType**](docs/ActivityTypesApi.md#addActivityType) | **POST** /activityTypes | Add new ActivityType
275
- *Pipedrive.ActivityTypesApi* | [**deleteActivityType**](docs/ActivityTypesApi.md#deleteActivityType) | **DELETE** /activityTypes/{id} | Delete an ActivityType
276
- *Pipedrive.ActivityTypesApi* | [**deleteActivityTypes**](docs/ActivityTypesApi.md#deleteActivityTypes) | **DELETE** /activityTypes | Delete multiple ActivityTypes in bulk
277
- *Pipedrive.ActivityTypesApi* | [**getActivityTypes**](docs/ActivityTypesApi.md#getActivityTypes) | **GET** /activityTypes | Get all ActivityTypes
278
- *Pipedrive.ActivityTypesApi* | [**updateActivityType**](docs/ActivityTypesApi.md#updateActivityType) | **PUT** /activityTypes/{id} | Update an ActivityType
274
+ *Pipedrive.ActivityTypesApi* | [**addActivityType**](docs/ActivityTypesApi.md#addActivityType) | **POST** /activityTypes | Add new activity type
275
+ *Pipedrive.ActivityTypesApi* | [**deleteActivityType**](docs/ActivityTypesApi.md#deleteActivityType) | **DELETE** /activityTypes/{id} | Delete an activity type
276
+ *Pipedrive.ActivityTypesApi* | [**deleteActivityTypes**](docs/ActivityTypesApi.md#deleteActivityTypes) | **DELETE** /activityTypes | Delete multiple activity types in bulk
277
+ *Pipedrive.ActivityTypesApi* | [**getActivityTypes**](docs/ActivityTypesApi.md#getActivityTypes) | **GET** /activityTypes | Get all activity types
278
+ *Pipedrive.ActivityTypesApi* | [**updateActivityType**](docs/ActivityTypesApi.md#updateActivityType) | **PUT** /activityTypes/{id} | Update an activity type
279
279
  *Pipedrive.CallLogsApi* | [**addCallLog**](docs/CallLogsApi.md#addCallLog) | **POST** /callLogs | Add a call log
280
280
  *Pipedrive.CallLogsApi* | [**addCallLogAudioFile**](docs/CallLogsApi.md#addCallLogAudioFile) | **POST** /callLogs/{id}/recordings | Attach an audio file to the call log
281
281
  *Pipedrive.CallLogsApi* | [**deleteCallLog**](docs/CallLogsApi.md#deleteCallLog) | **DELETE** /callLogs/{id} | Delete a call log
package/dist/ApiClient.js CHANGED
@@ -669,7 +669,7 @@ var ApiClient = /*#__PURE__*/function () {
669
669
  }, _callee, this, [[20, 26]]);
670
670
  }));
671
671
 
672
- function callApi(_x2, _x3, _x4, _x5, _x6, _x7, _x8, _x9, _x10, _x11, _x12, _x13) {
672
+ function callApi(_x, _x2, _x3, _x4, _x5, _x6, _x7, _x8, _x9, _x10, _x11, _x12) {
673
673
  return _callApi.apply(this, arguments);
674
674
  }
675
675
 
@@ -681,27 +681,25 @@ var ApiClient = /*#__PURE__*/function () {
681
681
 
682
682
  }, {
683
683
  key: "replaceCamelCaseObj",
684
- value: function (_replaceCamelCaseObj) {
685
- function replaceCamelCaseObj(_x) {
686
- return _replaceCamelCaseObj.apply(this, arguments);
687
- }
688
-
689
- replaceCamelCaseObj.toString = function () {
690
- return _replaceCamelCaseObj.toString();
691
- };
684
+ value: function replaceCamelCaseObj(obj) {
685
+ var _this3 = this;
692
686
 
693
- return replaceCamelCaseObj;
694
- }(function (obj) {
695
687
  var snakeCased = {};
696
688
 
697
689
  for (var key in obj) {
698
690
  var keyValue = obj[key];
699
691
  var isArray = Array.isArray(keyValue);
700
692
  var isObject = (0, _typeof2["default"])(keyValue) === 'object' && !isArray;
693
+ var isHash = /^[a-f0-9]{40}$/i.test(key);
701
694
  if (isArray) keyValue = keyValue.map(function (kv) {
702
- return (0, _typeof2["default"])(kv) === 'object' ? replaceCamelCaseObj(kv) : kv;
695
+ return (0, _typeof2["default"])(kv) === 'object' ? _this3.replaceCamelCaseObj(kv) : kv;
703
696
  });
704
- snakeCased[(0, _lodash.snakeCase)(key)] = isObject ? replaceCamelCaseObj(keyValue) : keyValue;
697
+
698
+ if (isHash) {
699
+ snakeCased[key] = isObject ? key : keyValue;
700
+ } else {
701
+ snakeCased[(0, _lodash.snakeCase)(key)] = isObject ? this.replaceCamelCaseObj(keyValue) : keyValue;
702
+ }
705
703
  }
706
704
 
707
705
  return snakeCased;
@@ -710,7 +708,7 @@ var ApiClient = /*#__PURE__*/function () {
710
708
  * Checks whether the API supports oauth2 type authorization.
711
709
  * @returns {Boolean} Whether oauth2 type authorization is supported by the API.
712
710
  */
713
- )
711
+
714
712
  }, {
715
713
  key: "isOauth2Supported",
716
714
  value: function isOauth2Supported() {
@@ -834,7 +832,7 @@ var ApiClient = /*#__PURE__*/function () {
834
832
  }, _callee2, this, [[10, 18]]);
835
833
  }));
836
834
 
837
- function authorize(_x14) {
835
+ function authorize(_x13) {
838
836
  return _authorize.apply(this, arguments);
839
837
  }
840
838
 
@@ -56,7 +56,7 @@ var ActivitiesApi = /*#__PURE__*/function () {
56
56
  }
57
57
  /**
58
58
  * Add an activity
59
- * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information on how to add an activity, see <a href=\"https://pipedrive.readme.io/docs/adding-an-activity\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
59
+ * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-an-activity\" target=\"_blank\" rel=\"noopener noreferrer\">adding an activity</a>.
60
60
  * @param {Object} opts Optional parameters
61
61
  * @param {module:model/ActivityPostObject} opts.activityPostObject
62
62
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/AddActivityResponse200} and HTTP response
@@ -94,7 +94,7 @@ var ActivitiesApi = /*#__PURE__*/function () {
94
94
  }
95
95
  /**
96
96
  * Add an activity
97
- * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information on how to add an activity, see <a href=\"https://pipedrive.readme.io/docs/adding-an-activity\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
97
+ * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-an-activity\" target=\"_blank\" rel=\"noopener noreferrer\">adding an activity</a>.
98
98
  * @param {Object} opts Optional parameters
99
99
  * @param {module:model/ActivityPostObject} opts.activityPostObject
100
100
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AddActivityResponse200}
@@ -45,12 +45,12 @@ var ActivityTypesApi = /*#__PURE__*/function () {
45
45
  this.apiClient = apiClient || _ApiClient["default"].instance;
46
46
  }
47
47
  /**
48
- * Add new ActivityType
49
- * Adds a new ActivityType and returns it upon success.
50
- * @param {String} name The name of the ActivityType
48
+ * Add new activity type
49
+ * Adds a new activity type.
50
+ * @param {String} name The name of the activity type
51
51
  * @param {module:model/IconKey} iconKey
52
52
  * @param {Object} opts Optional parameters
53
- * @param {String} opts.color A designated color for the ActivityType in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
53
+ * @param {String} opts.color A designated color for the activity type in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
54
54
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ActivityTypeCreateUpdateDeleteResponse} and HTTP response
55
55
  */
56
56
 
@@ -99,12 +99,12 @@ var ActivityTypesApi = /*#__PURE__*/function () {
99
99
  return this.apiClient.callApi('/activityTypes', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
100
100
  }
101
101
  /**
102
- * Add new ActivityType
103
- * Adds a new ActivityType and returns it upon success.
104
- * @param {String} name The name of the ActivityType
102
+ * Add new activity type
103
+ * Adds a new activity type.
104
+ * @param {String} name The name of the activity type
105
105
  * @param {module:model/IconKey} iconKey
106
106
  * @param {Object} opts Optional parameters
107
- * @param {String} opts.color A designated color for the ActivityType in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
107
+ * @param {String} opts.color A designated color for the activity type in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
108
108
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ActivityTypeCreateUpdateDeleteResponse}
109
109
  */
110
110
 
@@ -116,9 +116,9 @@ var ActivityTypesApi = /*#__PURE__*/function () {
116
116
  });
117
117
  }
118
118
  /**
119
- * Delete an ActivityType
120
- * Marks an ActivityType as deleted.
121
- * @param {Number} id The ID of the ActivityType
119
+ * Delete an activity type
120
+ * Marks an activity type as deleted.
121
+ * @param {Number} id The ID of the activity type
122
122
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ActivityTypeCreateUpdateDeleteResponse} and HTTP response
123
123
  */
124
124
 
@@ -159,9 +159,9 @@ var ActivityTypesApi = /*#__PURE__*/function () {
159
159
  return this.apiClient.callApi('/activityTypes/{id}', 'DELETE', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
160
160
  }
161
161
  /**
162
- * Delete an ActivityType
163
- * Marks an ActivityType as deleted.
164
- * @param {Number} id The ID of the ActivityType
162
+ * Delete an activity type
163
+ * Marks an activity type as deleted.
164
+ * @param {Number} id The ID of the activity type
165
165
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ActivityTypeCreateUpdateDeleteResponse}
166
166
  */
167
167
 
@@ -173,9 +173,9 @@ var ActivityTypesApi = /*#__PURE__*/function () {
173
173
  });
174
174
  }
175
175
  /**
176
- * Delete multiple ActivityTypes in bulk
177
- * Marks multiple ActivityTypes as deleted.
178
- * @param {String} ids The comma-separated ActivityType IDs
176
+ * Delete multiple activity types in bulk
177
+ * Marks multiple activity types as deleted.
178
+ * @param {String} ids The comma-separated activity type IDs
179
179
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ActivityTypeBulkDeleteResponse} and HTTP response
180
180
  */
181
181
 
@@ -216,9 +216,9 @@ var ActivityTypesApi = /*#__PURE__*/function () {
216
216
  return this.apiClient.callApi('/activityTypes', 'DELETE', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
217
217
  }
218
218
  /**
219
- * Delete multiple ActivityTypes in bulk
220
- * Marks multiple ActivityTypes as deleted.
221
- * @param {String} ids The comma-separated ActivityType IDs
219
+ * Delete multiple activity types in bulk
220
+ * Marks multiple activity types as deleted.
221
+ * @param {String} ids The comma-separated activity type IDs
222
222
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ActivityTypeBulkDeleteResponse}
223
223
  */
224
224
 
@@ -230,8 +230,8 @@ var ActivityTypesApi = /*#__PURE__*/function () {
230
230
  });
231
231
  }
232
232
  /**
233
- * Get all ActivityTypes
234
- * Returns all ActivityTypes.
233
+ * Get all activity types
234
+ * Returns all activity types.
235
235
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ActivityTypeListResponse} and HTTP response
236
236
  */
237
237
 
@@ -265,8 +265,8 @@ var ActivityTypesApi = /*#__PURE__*/function () {
265
265
  return this.apiClient.callApi('/activityTypes', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
266
266
  }
267
267
  /**
268
- * Get all ActivityTypes
269
- * Returns all ActivityTypes.
268
+ * Get all activity types
269
+ * Returns all activity types.
270
270
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ActivityTypeListResponse}
271
271
  */
272
272
 
@@ -278,14 +278,14 @@ var ActivityTypesApi = /*#__PURE__*/function () {
278
278
  });
279
279
  }
280
280
  /**
281
- * Update an ActivityType
282
- * Updates an ActivityType.
283
- * @param {Number} id The ID of the ActivityType
281
+ * Update an activity type
282
+ * Updates an activity type.
283
+ * @param {Number} id The ID of the activity type
284
284
  * @param {Object} opts Optional parameters
285
- * @param {String} opts.name The name of the ActivityType
285
+ * @param {String} opts.name The name of the activity type
286
286
  * @param {module:model/IconKey} opts.iconKey
287
- * @param {String} opts.color A designated color for the ActivityType in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
288
- * @param {Number} opts.orderNr An order number for this ActivityType. Order numbers should be used to order the types in the ActivityType selections.
287
+ * @param {String} opts.color A designated color for the activity type in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
288
+ * @param {Number} opts.orderNr An order number for this activity type. Order numbers should be used to order the types in the activity type selections.
289
289
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ActivityTypeCreateUpdateDeleteResponse} and HTTP response
290
290
  */
291
291
 
@@ -331,14 +331,14 @@ var ActivityTypesApi = /*#__PURE__*/function () {
331
331
  return this.apiClient.callApi('/activityTypes/{id}', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
332
332
  }
333
333
  /**
334
- * Update an ActivityType
335
- * Updates an ActivityType.
336
- * @param {Number} id The ID of the ActivityType
334
+ * Update an activity type
335
+ * Updates an activity type.
336
+ * @param {Number} id The ID of the activity type
337
337
  * @param {Object} opts Optional parameters
338
- * @param {String} opts.name The name of the ActivityType
338
+ * @param {String} opts.name The name of the activity type
339
339
  * @param {module:model/IconKey} opts.iconKey
340
- * @param {String} opts.color A designated color for the ActivityType in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
341
- * @param {Number} opts.orderNr An order number for this ActivityType. Order numbers should be used to order the types in the ActivityType selections.
340
+ * @param {String} opts.color A designated color for the activity type in 6-character HEX format (e.g. `FFFFFF` for white, `000000` for black)
341
+ * @param {Number} opts.orderNr An order number for this activity type. Order numbers should be used to order the types in the activity type selections.
342
342
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ActivityTypeCreateUpdateDeleteResponse}
343
343
  */
344
344
 
@@ -50,7 +50,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
50
50
  }
51
51
  /**
52
52
  * Add a new deal field
53
- * Adds a new deal field. For more information on adding a new custom field, see <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
53
+ * Adds a new deal field. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">adding a new custom field</a>.
54
54
  * @param {Object} opts Optional parameters
55
55
  * @param {module:model/FieldCreateRequest} opts.fieldCreateRequest
56
56
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/FieldResponse} and HTTP response
@@ -88,7 +88,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
88
88
  }
89
89
  /**
90
90
  * Add a new deal field
91
- * Adds a new deal field. For more information on adding a new custom field, see <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
91
+ * Adds a new deal field. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-new-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">adding a new custom field</a>.
92
92
  * @param {Object} opts Optional parameters
93
93
  * @param {module:model/FieldCreateRequest} opts.fieldCreateRequest
94
94
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/FieldResponse}
@@ -103,7 +103,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
103
103
  }
104
104
  /**
105
105
  * Delete a deal field
106
- * Marks a field as deleted. For more information on how to delete a custom field, see <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
106
+ * Marks a field as deleted. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">deleting a custom field</a>.
107
107
  * @param {Number} id The ID of the field
108
108
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/DeleteResponse} and HTTP response
109
109
  */
@@ -146,7 +146,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
146
146
  }
147
147
  /**
148
148
  * Delete a deal field
149
- * Marks a field as deleted. For more information on how to delete a custom field, see <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
149
+ * Marks a field as deleted. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/deleting-a-custom-field\" target=\"_blank\" rel=\"noopener noreferrer\">deleting a custom field</a>.
150
150
  * @param {Number} id The ID of the field
151
151
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/DeleteResponse}
152
152
  */
@@ -160,7 +160,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
160
160
  }
161
161
  /**
162
162
  * Delete multiple deal fields in bulk
163
- * Marks multiple fields as deleted.
163
+ * Marks multiple deal fields as deleted.
164
164
  * @param {String} ids The comma-separated field IDs to delete
165
165
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/BulkDeleteResponse} and HTTP response
166
166
  */
@@ -203,7 +203,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
203
203
  }
204
204
  /**
205
205
  * Delete multiple deal fields in bulk
206
- * Marks multiple fields as deleted.
206
+ * Marks multiple deal fields as deleted.
207
207
  * @param {String} ids The comma-separated field IDs to delete
208
208
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/BulkDeleteResponse}
209
209
  */
@@ -331,7 +331,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
331
331
  }
332
332
  /**
333
333
  * Update a deal field
334
- * Updates a deal field. See an example of updating custom fields’ values in <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
334
+ * Updates a deal field. For more information, see the tutorial for <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\"_blank\" rel=\"noopener noreferrer\">updating custom fields' values</a>.
335
335
  * @param {Number} id The ID of the field
336
336
  * @param {Object} opts Optional parameters
337
337
  * @param {module:model/FieldUpdateRequest} opts.fieldUpdateRequest
@@ -376,7 +376,7 @@ var DealFieldsApi = /*#__PURE__*/function () {
376
376
  }
377
377
  /**
378
378
  * Update a deal field
379
- * Updates a deal field. See an example of updating custom fields’ values in <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
379
+ * Updates a deal field. For more information, see the tutorial for <a href=\" https://pipedrive.readme.io/docs/updating-custom-field-value \" target=\"_blank\" rel=\"noopener noreferrer\">updating custom fields' values</a>.
380
380
  * @param {Number} id The ID of the field
381
381
  * @param {Object} opts Optional parameters
382
382
  * @param {module:model/FieldUpdateRequest} opts.fieldUpdateRequest
@@ -106,7 +106,7 @@ var DealsApi = /*#__PURE__*/function () {
106
106
  }
107
107
  /**
108
108
  * Add a deal
109
- * Adds a new deal. Note that you can supply additional custom fields along with the request that are not described here. These custom fields are different for each Pipedrive account and can be recognized by long hashes as keys. To determine which custom fields exists, fetch the dealFields and look for `key` values. For more information on how to add a deal, see <a href=\"https://pipedrive.readme.io/docs/creating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
109
+ * Adds a new deal. Note that you can supply additional custom fields along with the request that are not described here. These custom fields are different for each Pipedrive account and can be recognized by long hashes as keys. To determine which custom fields exists, fetch the dealFields and look for `key` values. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/creating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">adding a deal</a>.
110
110
  * @param {Object} opts Optional parameters
111
111
  * @param {module:model/NewDeal} opts.newDeal
112
112
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetAddedDeal} and HTTP response
@@ -144,7 +144,7 @@ var DealsApi = /*#__PURE__*/function () {
144
144
  }
145
145
  /**
146
146
  * Add a deal
147
- * Adds a new deal. Note that you can supply additional custom fields along with the request that are not described here. These custom fields are different for each Pipedrive account and can be recognized by long hashes as keys. To determine which custom fields exists, fetch the dealFields and look for `key` values. For more information on how to add a deal, see <a href=\"https://pipedrive.readme.io/docs/creating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
147
+ * Adds a new deal. Note that you can supply additional custom fields along with the request that are not described here. These custom fields are different for each Pipedrive account and can be recognized by long hashes as keys. To determine which custom fields exists, fetch the dealFields and look for `key` values. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/creating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">adding a deal</a>.
148
148
  * @param {Object} opts Optional parameters
149
149
  * @param {module:model/NewDeal} opts.newDeal
150
150
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetAddedDeal}
@@ -716,7 +716,7 @@ var DealsApi = /*#__PURE__*/function () {
716
716
  }
717
717
  /**
718
718
  * Get details of a deal
719
- * Returns the details of a specific deal. Note that this also returns some additional fields which are not present when asking for all deals – such as deal age and stay in pipeline stages. Also note that custom fields appear as long hashes in the resulting data. These hashes can be mapped against the `key` value of dealFields. For more information on how to get all details of a deal, see <a href=\"https://pipedrive.readme.io/docs/getting-details-of-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
719
+ * Returns the details of a specific deal. Note that this also returns some additional fields which are not present when asking for all deals – such as deal age and stay in pipeline stages. Also note that custom fields appear as long hashes in the resulting data. These hashes can be mapped against the `key` value of dealFields. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/getting-details-of-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">getting details of a deal</a>.
720
720
  * @param {Number} id The ID of the deal
721
721
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetDeal} and HTTP response
722
722
  */
@@ -759,7 +759,7 @@ var DealsApi = /*#__PURE__*/function () {
759
759
  }
760
760
  /**
761
761
  * Get details of a deal
762
- * Returns the details of a specific deal. Note that this also returns some additional fields which are not present when asking for all deals – such as deal age and stay in pipeline stages. Also note that custom fields appear as long hashes in the resulting data. These hashes can be mapped against the `key` value of dealFields. For more information on how to get all details of a deal, see <a href=\"https://pipedrive.readme.io/docs/getting-details-of-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
762
+ * Returns the details of a specific deal. Note that this also returns some additional fields which are not present when asking for all deals – such as deal age and stay in pipeline stages. Also note that custom fields appear as long hashes in the resulting data. These hashes can be mapped against the `key` value of dealFields. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/getting-details-of-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">getting details of a deal</a>.
763
763
  * @param {Number} id The ID of the deal
764
764
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetDeal}
765
765
  */
@@ -851,7 +851,7 @@ var DealsApi = /*#__PURE__*/function () {
851
851
  * @param {Number} opts.start Pagination start (default to 0)
852
852
  * @param {Number} opts.limit Items shown per page
853
853
  * @param {module:model/NumberBoolean} opts.includeDeletedFiles When enabled, the list of files will also include deleted files. Please note that trying to download these files will not work.
854
- * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: id, user_id, deal_id, person_id, org_id, product_id, add_time, update_time, file_name, file_type, file_size, comment.
854
+ * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: `id`, `user_id`, `deal_id`, `person_id`, `org_id`, `product_id`, `add_time`, `update_time`, `file_name`, `file_type`, `file_size`, `comment`.
855
855
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListFilesResponse} and HTTP response
856
856
  */
857
857
 
@@ -904,7 +904,7 @@ var DealsApi = /*#__PURE__*/function () {
904
904
  * @param {Number} opts.start Pagination start (default to 0)
905
905
  * @param {Number} opts.limit Items shown per page
906
906
  * @param {module:model/NumberBoolean} opts.includeDeletedFiles When enabled, the list of files will also include deleted files. Please note that trying to download these files will not work.
907
- * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: id, user_id, deal_id, person_id, org_id, product_id, add_time, update_time, file_name, file_type, file_size, comment.
907
+ * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: `id`, `user_id`, `deal_id`, `person_id`, `org_id`, `product_id`, `add_time`, `update_time`, `file_name`, `file_type`, `file_size`, `comment`.
908
908
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListFilesResponse}
909
909
  */
910
910
 
@@ -1370,7 +1370,7 @@ var DealsApi = /*#__PURE__*/function () {
1370
1370
  }
1371
1371
  /**
1372
1372
  * Get all deals
1373
- * Returns all deals. For more information on how to get all deals, see <a href=\"https://pipedrive.readme.io/docs/getting-all-deals\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
1373
+ * Returns all deals. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/getting-all-deals\" target=\"_blank\" rel=\"noopener noreferrer\">getting all deals</a>.
1374
1374
  * @param {Object} opts Optional parameters
1375
1375
  * @param {Number} opts.userId If supplied, only deals matching the given user will be returned. However, `filter_id` and `owned_by_you` takes precedence over `user_id` when supplied.
1376
1376
  * @param {Number} opts.filterId The ID of the filter to use
@@ -1423,7 +1423,7 @@ var DealsApi = /*#__PURE__*/function () {
1423
1423
  }
1424
1424
  /**
1425
1425
  * Get all deals
1426
- * Returns all deals. For more information on how to get all deals, see <a href=\"https://pipedrive.readme.io/docs/getting-all-deals\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
1426
+ * Returns all deals. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/getting-all-deals\" target=\"_blank\" rel=\"noopener noreferrer\">getting all deals</a>.
1427
1427
  * @param {Object} opts Optional parameters
1428
1428
  * @param {Number} opts.userId If supplied, only deals matching the given user will be returned. However, `filter_id` and `owned_by_you` takes precedence over `user_id` when supplied.
1429
1429
  * @param {Number} opts.filterId The ID of the filter to use
@@ -1606,7 +1606,7 @@ var DealsApi = /*#__PURE__*/function () {
1606
1606
  }
1607
1607
  /**
1608
1608
  * Merge two deals
1609
- * Merges a deal with another deal. For more information on how to merge two deals, see <a href=\"https://pipedrive.readme.io/docs/merging-two-deals\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
1609
+ * Merges a deal with another deal. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/merging-two-deals\" target=\"_blank\" rel=\"noopener noreferrer\">merging two deals</a>.
1610
1610
  * @param {Number} id The ID of the deal
1611
1611
  * @param {Object} opts Optional parameters
1612
1612
  * @param {module:model/MergeDealsRequest} opts.mergeDealsRequest
@@ -1655,7 +1655,7 @@ var DealsApi = /*#__PURE__*/function () {
1655
1655
  }
1656
1656
  /**
1657
1657
  * Merge two deals
1658
- * Merges a deal with another deal. For more information on how to merge two deals, see <a href=\"https://pipedrive.readme.io/docs/merging-two-deals\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
1658
+ * Merges a deal with another deal. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/merging-two-deals\" target=\"_blank\" rel=\"noopener noreferrer\">merging two deals</a>.
1659
1659
  * @param {Number} id The ID of the deal
1660
1660
  * @param {Object} opts Optional parameters
1661
1661
  * @param {module:model/MergeDealsRequest} opts.mergeDealsRequest
@@ -1754,7 +1754,7 @@ var DealsApi = /*#__PURE__*/function () {
1754
1754
  }
1755
1755
  /**
1756
1756
  * Update a deal
1757
- * Updates the properties of a deal. For more information on how to update a deal, see <a href=\"https://pipedrive.readme.io/docs/updating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
1757
+ * Updates the properties of a deal. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/updating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">updating a deal</a>.
1758
1758
  * @param {Number} id The ID of the deal
1759
1759
  * @param {Object} opts Optional parameters
1760
1760
  * @param {module:model/UpdateDealRequest} opts.updateDealRequest
@@ -1799,7 +1799,7 @@ var DealsApi = /*#__PURE__*/function () {
1799
1799
  }
1800
1800
  /**
1801
1801
  * Update a deal
1802
- * Updates the properties of a deal. For more information on how to update a deal, see <a href=\"https://pipedrive.readme.io/docs/updating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
1802
+ * Updates the properties of a deal. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/updating-a-deal\" target=\"_blank\" rel=\"noopener noreferrer\">updating a deal</a>.
1803
1803
  * @param {Number} id The ID of the deal
1804
1804
  * @param {Object} opts Optional parameters
1805
1805
  * @param {module:model/UpdateDealRequest} opts.updateDealRequest
@@ -54,7 +54,7 @@ var FilesApi = /*#__PURE__*/function () {
54
54
  }
55
55
  /**
56
56
  * Add file
57
- * Lets you upload a file and associate it with deal, person, organization, activity or product. For more information on how to add a file, see <a href=\"https://pipedrive.readme.io/docs/adding-a-file\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
57
+ * Lets you upload a file and associate it with a deal, person, organization, activity or product. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-file\" target=\"_blank\" rel=\"noopener noreferrer\">adding a file</a>.
58
58
  * @param {File} file A single file, supplied in the multipart/form-data encoding and contained within the given boundaries
59
59
  * @param {Object} opts Optional parameters
60
60
  * @param {Number} opts.dealId The ID of the deal to associate file(s) with
@@ -109,7 +109,7 @@ var FilesApi = /*#__PURE__*/function () {
109
109
  }
110
110
  /**
111
111
  * Add file
112
- * Lets you upload a file and associate it with deal, person, organization, activity or product. For more information on how to add a file, see <a href=\"https://pipedrive.readme.io/docs/adding-a-file\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
112
+ * Lets you upload a file and associate it with a deal, person, organization, activity or product. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-file\" target=\"_blank\" rel=\"noopener noreferrer\">adding a file</a>.
113
113
  * @param {File} file A single file, supplied in the multipart/form-data encoding and contained within the given boundaries
114
114
  * @param {Object} opts Optional parameters
115
115
  * @param {Number} opts.dealId The ID of the deal to associate file(s) with
@@ -129,7 +129,7 @@ var FilesApi = /*#__PURE__*/function () {
129
129
  }
130
130
  /**
131
131
  * Create a remote file and link it to an item
132
- * Creates a new empty file in the remote location (`googledrive`) that will be linked to the item you supply. For more information on how to add a remote file, see <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
132
+ * Creates a new empty file in the remote location (`googledrive`) that will be linked to the item you supply. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">adding a remote file</a>.
133
133
  * @param {module:model/String} fileType The file type
134
134
  * @param {String} title The title of the file
135
135
  * @param {module:model/String} itemType The item type
@@ -200,7 +200,7 @@ var FilesApi = /*#__PURE__*/function () {
200
200
  }
201
201
  /**
202
202
  * Create a remote file and link it to an item
203
- * Creates a new empty file in the remote location (`googledrive`) that will be linked to the item you supply. For more information on how to add a remote file, see <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
203
+ * Creates a new empty file in the remote location (`googledrive`) that will be linked to the item you supply. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">adding a remote file</a>.
204
204
  * @param {module:model/String} fileType The file type
205
205
  * @param {String} title The title of the file
206
206
  * @param {module:model/String} itemType The item type
@@ -394,7 +394,7 @@ var FilesApi = /*#__PURE__*/function () {
394
394
  * @param {Number} opts.start Pagination start (default to 0)
395
395
  * @param {Number} opts.limit Items shown per page
396
396
  * @param {module:model/NumberBoolean} opts.includeDeletedFiles When enabled, the list of files will also include deleted files. Please note that trying to download these files will not work.
397
- * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: id, user_id, deal_id, person_id, org_id, product_id, add_time, update_time, file_name, file_type, file_size, comment.
397
+ * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: `id`, `user_id`, `deal_id`, `person_id`, `org_id`, `product_id`, `add_time`, `update_time`, `file_name`, `file_type`, `file_size`, `comment`.
398
398
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetAllFiles} and HTTP response
399
399
  */
400
400
 
@@ -439,7 +439,7 @@ var FilesApi = /*#__PURE__*/function () {
439
439
  * @param {Number} opts.start Pagination start (default to 0)
440
440
  * @param {Number} opts.limit Items shown per page
441
441
  * @param {module:model/NumberBoolean} opts.includeDeletedFiles When enabled, the list of files will also include deleted files. Please note that trying to download these files will not work.
442
- * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: id, user_id, deal_id, person_id, org_id, product_id, add_time, update_time, file_name, file_type, file_size, comment.
442
+ * @param {String} opts.sort The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: `id`, `user_id`, `deal_id`, `person_id`, `org_id`, `product_id`, `add_time`, `update_time`, `file_name`, `file_type`, `file_size`, `comment`.
443
443
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetAllFiles}
444
444
  */
445
445
 
@@ -452,7 +452,7 @@ var FilesApi = /*#__PURE__*/function () {
452
452
  }
453
453
  /**
454
454
  * Link a remote file to an item
455
- * Links an existing remote file (`googledrive`) to the item you supply. For more information on how to link a remote file, see <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
455
+ * Links an existing remote file (`googledrive`) to the item you supply. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">adding a remote file</a>.
456
456
  * @param {module:model/String} itemType The item type
457
457
  * @param {Number} itemId The ID of the item to associate the file with
458
458
  * @param {String} remoteId The remote item ID
@@ -516,7 +516,7 @@ var FilesApi = /*#__PURE__*/function () {
516
516
  }
517
517
  /**
518
518
  * Link a remote file to an item
519
- * Links an existing remote file (`googledrive`) to the item you supply. For more information on how to link a remote file, see <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
519
+ * Links an existing remote file (`googledrive`) to the item you supply. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-remote-file\" target=\"_blank\" rel=\"noopener noreferrer\">adding a remote file</a>.
520
520
  * @param {module:model/String} itemType The item type
521
521
  * @param {Number} itemId The ID of the item to associate the file with
522
522
  * @param {String} remoteId The remote item ID
@@ -54,7 +54,7 @@ var FiltersApi = /*#__PURE__*/function () {
54
54
  }
55
55
  /**
56
56
  * Add a new filter
57
- * Adds a new filter, returns the ID upon success. Note that in the conditions JSON object only one first-level condition group is supported, and it must be glued with 'AND', and only two second level condition groups are supported of which one must be glued with 'AND' and the second with 'OR'. Other combinations do not work (yet) but the syntax supports introducing them in future. For more information on how to add a new filter, see <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
57
+ * Adds a new filter, returns the ID upon success. Note that in the conditions JSON object only one first-level condition group is supported, and it must be glued with 'AND', and only two second level condition groups are supported of which one must be glued with 'AND' and the second with 'OR'. Other combinations do not work (yet) but the syntax supports introducing them in future. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">adding a filter</a>.
58
58
  * @param {Object} opts Optional parameters
59
59
  * @param {module:model/AddFilterRequest} opts.addFilterRequest
60
60
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/FiltersPostResponse} and HTTP response
@@ -105,7 +105,7 @@ var FiltersApi = /*#__PURE__*/function () {
105
105
  }
106
106
  /**
107
107
  * Add a new filter
108
- * Adds a new filter, returns the ID upon success. Note that in the conditions JSON object only one first-level condition group is supported, and it must be glued with 'AND', and only two second level condition groups are supported of which one must be glued with 'AND' and the second with 'OR'. Other combinations do not work (yet) but the syntax supports introducing them in future. For more information on how to add a new filter, see <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
108
+ * Adds a new filter, returns the ID upon success. Note that in the conditions JSON object only one first-level condition group is supported, and it must be glued with 'AND', and only two second level condition groups are supported of which one must be glued with 'AND' and the second with 'OR'. Other combinations do not work (yet) but the syntax supports introducing them in future. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">adding a filter</a>.
109
109
  * @param {Object} opts Optional parameters
110
110
  * @param {module:model/AddFilterRequest} opts.addFilterRequest
111
111
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/FiltersPostResponse}
@@ -291,7 +291,7 @@ var FiltersApi = /*#__PURE__*/function () {
291
291
  }
292
292
  /**
293
293
  * Get all filter helpers
294
- * Returns all supported filter helpers. It helps to know what conditions and helpers are available when you want to <a href=\"/docs/api/v1/Filters#addFilter\">add</a> or <a href=\"/docs/api/v1/Filters#updateFilter\">update</a> filters. For more information on how filter’s helpers can be used, see <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
294
+ * Returns all supported filter helpers. It helps to know what conditions and helpers are available when you want to <a href=\"/docs/api/v1/Filters#addFilter\">add</a> or <a href=\"/docs/api/v1/Filters#updateFilter\">update</a> filters. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">adding a filter</a>.
295
295
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Object} and HTTP response
296
296
  */
297
297
 
@@ -326,7 +326,7 @@ var FiltersApi = /*#__PURE__*/function () {
326
326
  }
327
327
  /**
328
328
  * Get all filter helpers
329
- * Returns all supported filter helpers. It helps to know what conditions and helpers are available when you want to <a href=\"/docs/api/v1/Filters#addFilter\">add</a> or <a href=\"/docs/api/v1/Filters#updateFilter\">update</a> filters. For more information on how filter’s helpers can be used, see <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">this tutorial</a>.
329
+ * Returns all supported filter helpers. It helps to know what conditions and helpers are available when you want to <a href=\"/docs/api/v1/Filters#addFilter\">add</a> or <a href=\"/docs/api/v1/Filters#updateFilter\">update</a> filters. For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-a-filter\" target=\"_blank\" rel=\"noopener noreferrer\">adding a filter</a>.
330
330
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object}
331
331
  */
332
332
 
@@ -40,7 +40,7 @@ var LeadSourcesApi = /*#__PURE__*/function () {
40
40
  }
41
41
  /**
42
42
  * Get all lead sources
43
- * Returns all lead sources. Please note that the list of lead sources is fixed, it cannot be modified. All leads created through the Public Pipedrive API will have a lead source `API` assigned.
43
+ * Returns all lead sources. Please note that the list of lead sources is fixed, it cannot be modified. All leads created through the Pipedrive API will have a lead source `API` assigned.
44
44
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetLeadSourcesResponse200} and HTTP response
45
45
  */
46
46
 
@@ -76,7 +76,7 @@ var LeadSourcesApi = /*#__PURE__*/function () {
76
76
  }
77
77
  /**
78
78
  * Get all lead sources
79
- * Returns all lead sources. Please note that the list of lead sources is fixed, it cannot be modified. All leads created through the Public Pipedrive API will have a lead source `API` assigned.
79
+ * Returns all lead sources. Please note that the list of lead sources is fixed, it cannot be modified. All leads created through the Pipedrive API will have a lead source `API` assigned.
80
80
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetLeadSourcesResponse200}
81
81
  */
82
82