Skip to content

Commit b85041e

Browse files
Release v29.2.4 from PR #672
2 parents 4ea3a66 + 9891952 commit b85041e

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
88

99
## [Unreleased]
1010

11+
## [29.2.4] - 2025-09-26
12+
### Fixed
13+
- Fixed incorrect description for max `limit` parameter in itemSearch v2 endpoint
14+
1115
## [29.2.3] - 2025-09-16
1216
### Fixed
1317
- Fixed incorrect `custom_fields` schema implementations by using the proper shared definition from `custom-fields.yaml`
@@ -957,7 +961,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
957961
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
958962
* Fixed typo in lead example response (`crrency` to `currency`)
959963

960-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v29.2.3...HEAD
964+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v29.2.4...HEAD
965+
[29.2.4]: https://github.com/pipedrive/api-docs/compare/v29.2.3...v29.2.4
961966
[29.2.3]: https://github.com/pipedrive/api-docs/compare/v29.2.2...v29.2.3
962967
[29.2.2]: https://github.com/pipedrive/api-docs/compare/v29.2.1...v29.2.2
963968
[29.2.1]: https://github.com/pipedrive/api-docs/compare/v29.2.0...v29.2.1

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pipedrive",
3-
"version": "29.2.3",
3+
"version": "29.2.4",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v2/api/item-search-api.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const ItemSearchApiAxiosParamCreator = function (configuration?: Configur
4040
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
4141
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
4242
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
43-
* @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed.
43+
* @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 100 is allowed.
4444
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
4545
4646
* @throws {RequiredError}
@@ -203,7 +203,7 @@ export const ItemSearchApiFp = function(configuration?: Configuration) {
203203
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
204204
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
205205
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
206-
* @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed.
206+
* @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 100 is allowed.
207207
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
208208
209209
* @throws {RequiredError}
@@ -310,7 +310,7 @@ export interface ItemSearchApiSearchItemRequest {
310310
readonly include_fields?: 'deal.cc_email' | 'person.picture' | 'product.price'
311311

312312
/**
313-
* For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed.
313+
* For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 100 is allowed.
314314
* @type {number}
315315
* @memberof ItemSearchApiSearchItem
316316
*/

0 commit comments

Comments
 (0)