Skip to content

Commit 4ea3a66

Browse files
Release v29.2.3 from PR #670
2 parents 44d5f2e + 29aee0b commit 4ea3a66

14 files changed

+29
-10
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.3] - 2025-09-16
12+
### Fixed
13+
- Fixed incorrect `custom_fields` schema implementations by using the proper shared definition from `custom-fields.yaml`
14+
1115
## [29.2.2] - 2025-09-08
1216
### Fixed
1317
- Fixed incorrect `custom_fields` schema implementations by using the proper shared definition from `custom-fields.yaml`
@@ -953,7 +957,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
953957
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
954958
* Fixed typo in lead example response (`crrency` to `currency`)
955959

956-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v29.2.2...HEAD
960+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v29.2.3...HEAD
961+
[29.2.3]: https://github.com/pipedrive/api-docs/compare/v29.2.2...v29.2.3
957962
[29.2.2]: https://github.com/pipedrive/api-docs/compare/v29.2.1...v29.2.2
958963
[29.2.1]: https://github.com/pipedrive/api-docs/compare/v29.2.0...v29.2.1
959964
[29.2.0]: https://github.com/pipedrive/api-docs/compare/v29.1.0...v29.2.0

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.2",
3+
"version": "29.2.3",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v1/models/add-activity-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddActivityRequestAllOf
2121
*/
2222
export interface AddActivityRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The note of the activity (HTML format)
2527
* @type {string}

src/versions/v1/models/add-note-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddNoteRequestAllOf
2121
*/
2222
export interface AddNoteRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The content of the note in HTML format. Subject to sanitization on the back-end.
2527
* @type {string}

src/versions/v1/models/add-organization-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddOrganizationRequestAllOf
2121
*/
2222
export interface AddOrganizationRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The name of the organization
2527
* @type {string}

src/versions/v1/models/add-person-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddPersonRequestAllOf
2121
*/
2222
export interface AddPersonRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The name of the person
2527
* @type {string}

src/versions/v1/models/add-product-request-all-of1.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddProductRequestAllOf1
2121
*/
2222
export interface AddProductRequestAllOf1 {
23+
[key: string]: any | any;
24+
2325
/**
2426
* Only available in Growth and above plans How often a customer is billed for access to a service or product
2527
* @type {string}

src/versions/v1/models/basic-deal.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface BasicDeal
2121
*/
2222
export interface BasicDeal {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The optional date and time of changing the deal status as won in UTC. Format: YYYY-MM-DD HH:MM:SS. Can be set only when deal `status` is already Won. Can not be used together with `lost_time`.
2527
* @type {string}

src/versions/v1/models/basic-organization.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface BasicOrganization
2121
*/
2222
export interface BasicOrganization {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The ID of the user who will be marked as the owner of this organization. When omitted, the authorized user ID will be used.
2527
* @type {number}

0 commit comments

Comments
 (0)