Skip to content

Commit 9fcb488

Browse files
Release v29.2.1 from PR #664
2 parents 6d0981b + e631a3d commit 9fcb488

File tree

7 files changed

+45
-4
lines changed

7 files changed

+45
-4
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [29.2.1] - 2025-09-03
12+
### Added
13+
- Documented the `custom_fields` in /v2 api for create organization and update deal
14+
### Added
15+
- Documented the `name` property in the Webhooks API for the following endpoints:
16+
- `GET /v1/webhooks`
17+
- `POST /v1/webhooks`
18+
1119
## [29.2.0] - 2025-09-03
1220
### Added
1321
- Documented the `name` property in the Webhooks API for the following endpoints:
@@ -941,7 +949,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
941949
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
942950
* Fixed typo in lead example response (`crrency` to `currency`)
943951

944-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v29.2.0...HEAD
952+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v29.2.1...HEAD
953+
[29.2.1]: https://github.com/pipedrive/api-docs/compare/v29.2.0...v29.2.1
945954
[29.2.0]: https://github.com/pipedrive/api-docs/compare/v29.1.0...v29.2.0
946955
[29.1.0]: https://github.com/pipedrive/api-docs/compare/v29.0.0...v29.1.0
947956
[29.0.0]: https://github.com/pipedrive/api-docs/compare/v28.0.2...v29.0.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.0",
3+
"version": "29.2.1",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v2/models/add-deal-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

16+
// May contain unused imports in some cases
17+
// @ts-ignore
18+
import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
1619

1720
/**
1821
*
@@ -120,5 +123,10 @@ export interface AddDealRequest {
120123
* @type {Array<number>}
121124
*/
122125
'label_ids'?: Array<number>;
126+
/**
127+
* A map of custom fields with hash-based keys
128+
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
129+
*/
130+
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
123131
}
124132

src/versions/v2/models/add-organization-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

16+
// May contain unused imports in some cases
17+
// @ts-ignore
18+
import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
1619
// May contain unused imports in some cases
1720
// @ts-ignore
1821
import { OrganizationItemAddress } from './organization-item-address';
@@ -58,5 +61,10 @@ export interface AddOrganizationRequest {
5861
* @type {OrganizationItemAddress}
5962
*/
6063
'address'?: OrganizationItemAddress;
64+
/**
65+
* A map of custom fields with hash-based keys
66+
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
67+
*/
68+
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
6169
}
6270

src/versions/v2/models/update-deal-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

16+
// May contain unused imports in some cases
17+
// @ts-ignore
18+
import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
1619

1720
/**
1821
*
@@ -120,5 +123,10 @@ export interface UpdateDealRequest {
120123
* @type {Array<number>}
121124
*/
122125
'label_ids'?: Array<number>;
126+
/**
127+
* A map of custom fields with hash-based keys
128+
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
129+
*/
130+
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
123131
}
124132

src/versions/v2/models/update-organization-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

16+
// May contain unused imports in some cases
17+
// @ts-ignore
18+
import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
1619
// May contain unused imports in some cases
1720
// @ts-ignore
1821
import { OrganizationItemAddress } from './organization-item-address';
@@ -58,5 +61,10 @@ export interface UpdateOrganizationRequest {
5861
* @type {OrganizationItemAddress}
5962
*/
6063
'address'?: OrganizationItemAddress;
64+
/**
65+
* A map of custom fields with hash-based keys
66+
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
67+
*/
68+
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
6169
}
6270

0 commit comments

Comments
 (0)