Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19).

## [Unreleased]
### Added
- Documented the `custom_fields` in /v2 api for create organization and update deal
### Added
- Documented the `name` property in the Webhooks API for the following endpoints:
- `GET /v1/webhooks`
- `POST /v1/webhooks`

## [29.2.0] - 2025-09-03
### Added
Expand Down
8 changes: 8 additions & 0 deletions src/versions/v2/models/add-deal-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/


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

/**
*
Expand Down Expand Up @@ -120,5 +123,10 @@ export interface AddDealRequest {
* @type {Array<number>}
*/
'label_ids'?: Array<number>;
/**
* A map of custom fields with hash-based keys
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
*/
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
}

8 changes: 8 additions & 0 deletions src/versions/v2/models/add-organization-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/


// May contain unused imports in some cases
// @ts-ignore
import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
// May contain unused imports in some cases
// @ts-ignore
import { OrganizationItemAddress } from './organization-item-address';
Expand Down Expand Up @@ -58,5 +61,10 @@ export interface AddOrganizationRequest {
* @type {OrganizationItemAddress}
*/
'address'?: OrganizationItemAddress;
/**
* A map of custom fields with hash-based keys
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
*/
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
}

8 changes: 8 additions & 0 deletions src/versions/v2/models/update-deal-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/


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

/**
*
Expand Down Expand Up @@ -120,5 +123,10 @@ export interface UpdateDealRequest {
* @type {Array<number>}
*/
'label_ids'?: Array<number>;
/**
* A map of custom fields with hash-based keys
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
*/
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
}

8 changes: 8 additions & 0 deletions src/versions/v2/models/update-organization-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/


// May contain unused imports in some cases
// @ts-ignore
import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
// May contain unused imports in some cases
// @ts-ignore
import { OrganizationItemAddress } from './organization-item-address';
Expand Down Expand Up @@ -58,5 +61,10 @@ export interface UpdateOrganizationRequest {
* @type {OrganizationItemAddress}
*/
'address'?: OrganizationItemAddress;
/**
* A map of custom fields with hash-based keys
* @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
*/
'custom_fields'?: { [key: string]: DealItemCustomFieldsValue | undefined; };
}

Loading