Skip to content

Commit 931ca20

Browse files
Release v33.4.0 from PR #735
2 parents faacace + aa73c0a commit 931ca20

7 files changed

Lines changed: 29 additions & 6 deletions

File tree

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [33.4.0] - 2026-05-29
12+
### Added
13+
- Added `health_status` field to v1 project response schema (`GET /v1/projects`, `GET /v1/projects/{id}`)
14+
- Added `health_status` as a writable field to v2 project request body (`POST /api/v2/projects`, `PATCH /api/v2/projects/{id}`)
15+
### Fixed
16+
- Fixed `health_status` field type from `string` to `integer` in v2 project response schema (`GET /api/v2/projects`, `GET /api/v2/projects/{id}`)
17+
1118
## [33.3.0] - 2026-05-29
1219
### Added
1320
- Added `project_id` parameter to `POST /v1/files` endpoint
@@ -1270,7 +1277,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
12701277
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
12711278
* Fixed typo in lead example response (`crrency` to `currency`)
12721279

1273-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v33.3.0...HEAD
1280+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v33.4.0...HEAD
1281+
[33.4.0]: https://github.com/pipedrive/api-docs/compare/v33.3.0...v33.4.0
12741282
[33.3.0]: https://github.com/pipedrive/api-docs/compare/v33.2.0...v33.3.0
12751283
[33.2.0]: https://github.com/pipedrive/api-docs/compare/v33.1.1...v33.2.0
12761284
[33.1.1]: https://github.com/pipedrive/api-docs/compare/v33.1.0...v33.1.1

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

src/versions/v1/models/project-all-of1.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,10 @@ export interface ProjectAllOf1 {
7575
* @type {Array<number>}
7676
*/
7777
'labels'?: Array<number>;
78+
/**
79+
* The health status of the project
80+
* @type {number}
81+
*/
82+
'health_status'?: number | null;
7883
}
7984

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ export interface AddProjectRequest {
8181
*/
8282
'label_ids'?: Array<number>;
8383
/**
84+
* The health status of the project
85+
* @type {number}
86+
*/
87+
'health_status'?: number;
88+
/**
8489
* The ID of the template the project will be based on. Only used when creating a new project.
8590
* @type {number}
8691
*/

src/versions/v2/models/project.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ export interface Project {
8787
'label_ids'?: Array<number>;
8888
/**
8989
* The health status of the project
90-
* @type {string}
90+
* @type {number}
9191
*/
92-
'health_status'?: string | null;
92+
'health_status'?: number | null;
9393
/**
9494
* The creation date and time of the project in ISO 8601 format
9595
* @type {string}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ export interface UpdateProjectRequest {
8181
*/
8282
'label_ids'?: Array<number>;
8383
/**
84+
* The health status of the project
85+
* @type {number}
86+
*/
87+
'health_status'?: number;
88+
/**
8489
* The ID of the template the project will be based on. Only used when creating a new project.
8590
* @type {number}
8691
*/

0 commit comments

Comments
 (0)