Skip to content

Commit 4e47b0f

Browse files
Release v28.0.1 from PR #652
2 parents c108594 + 36f4ed9 commit 4e47b0f

File tree

5 files changed

+9
-34
lines changed

5 files changed

+9
-34
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+
## [28.0.1] - 2025-06-25
12+
### Fixed
13+
- Removed not supported `add_time`, `update_time` and `stage_change_time` from `PATCH /v2/deals/:id` request body
14+
1115
## [28.0.0] - 2025-06-16
1216
### Removed
1317
- Removed `deals_summary` from `GET /v1/stages/:id` and `GET /v1/pipelines/:id`
@@ -906,7 +910,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
906910
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
907911
* Fixed typo in lead example response (`crrency` to `currency`)
908912

909-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v28.0.0...HEAD
913+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v28.0.1...HEAD
914+
[28.0.1]: https://github.com/pipedrive/api-docs/compare/v28.0.0...v28.0.1
910915
[28.0.0]: https://github.com/pipedrive/api-docs/compare/v27.2.1...v28.0.0
911916
[27.2.1]: https://github.com/pipedrive/api-docs/compare/v27.2.0...v27.2.1
912917
[27.2.0]: https://github.com/pipedrive/api-docs/compare/v27.1.1...v27.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": "28.0.0",
3+
"version": "28.0.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: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,6 @@ export interface AddDealRequest {
6161
*/
6262
'currency'?: string;
6363
/**
64-
* The creation date and time of the deal
65-
* @type {string}
66-
*/
67-
'add_time'?: string;
68-
/**
69-
* The last updated date and time of the deal
70-
* @type {string}
71-
*/
72-
'update_time'?: string;
73-
/**
74-
* The last updated date and time of the deal stage
75-
* @type {string}
76-
*/
77-
'stage_change_time'?: string;
78-
/**
7964
* Whether the deal is deleted or not
8065
* @type {boolean}
8166
*/

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

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,6 @@ export interface UpdateDealRequest {
6161
*/
6262
'currency'?: string;
6363
/**
64-
* The creation date and time of the deal
65-
* @type {string}
66-
*/
67-
'add_time'?: string;
68-
/**
69-
* The last updated date and time of the deal
70-
* @type {string}
71-
*/
72-
'update_time'?: string;
73-
/**
74-
* The last updated date and time of the deal stage
75-
* @type {string}
76-
*/
77-
'stage_change_time'?: string;
78-
/**
7964
* Whether the deal is deleted or not
8065
* @type {boolean}
8166
*/

0 commit comments

Comments
 (0)