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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ 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]
### Fixed
- Removed not supported `add_time`, `update_time` and `stage_change_time` from `PATCH /v2/deals/:id` request body

## [28.0.0] - 2025-06-16
### Removed
Expand Down
15 changes: 0 additions & 15 deletions src/versions/v2/models/add-deal-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,6 @@ export interface AddDealRequest {
*/
'currency'?: string;
/**
* The creation date and time of the deal
* @type {string}
*/
'add_time'?: string;
/**
* The last updated date and time of the deal
* @type {string}
*/
'update_time'?: string;
/**
* The last updated date and time of the deal stage
* @type {string}
*/
'stage_change_time'?: string;
/**
* Whether the deal is deleted or not
* @type {boolean}
*/
Expand Down
15 changes: 0 additions & 15 deletions src/versions/v2/models/update-deal-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,6 @@ export interface UpdateDealRequest {
*/
'currency'?: string;
/**
* The creation date and time of the deal
* @type {string}
*/
'add_time'?: string;
/**
* The last updated date and time of the deal
* @type {string}
*/
'update_time'?: string;
/**
* The last updated date and time of the deal stage
* @type {string}
*/
'stage_change_time'?: string;
/**
* Whether the deal is deleted or not
* @type {boolean}
*/
Expand Down
Loading