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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ 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
- Added `health_status` field to v1 project response schema (`GET /v1/projects`, `GET /v1/projects/{id}`)
- Added `health_status` as a writable field to v2 project request body (`POST /api/v2/projects`, `PATCH /api/v2/projects/{id}`)
### Fixed
- Fixed `health_status` field type from `string` to `integer` in v2 project response schema (`GET /api/v2/projects`, `GET /api/v2/projects/{id}`)

## [33.3.0] - 2026-05-29
### Added
Expand Down
5 changes: 5 additions & 0 deletions src/versions/v1/models/project-all-of1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,10 @@ export interface ProjectAllOf1 {
* @type {Array<number>}
*/
'labels'?: Array<number>;
/**
* The health status of the project
* @type {number}
*/
'health_status'?: number | null;
}

5 changes: 5 additions & 0 deletions src/versions/v2/models/add-project-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ export interface AddProjectRequest {
*/
'label_ids'?: Array<number>;
/**
* The health status of the project
* @type {number}
*/
'health_status'?: number;
/**
* The ID of the template the project will be based on. Only used when creating a new project.
* @type {number}
*/
Expand Down
4 changes: 2 additions & 2 deletions src/versions/v2/models/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ export interface Project {
'label_ids'?: Array<number>;
/**
* The health status of the project
* @type {string}
* @type {number}
*/
'health_status'?: string | null;
'health_status'?: number | null;
/**
* The creation date and time of the project in ISO 8601 format
* @type {string}
Expand Down
5 changes: 5 additions & 0 deletions src/versions/v2/models/update-project-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ export interface UpdateProjectRequest {
*/
'label_ids'?: Array<number>;
/**
* The health status of the project
* @type {number}
*/
'health_status'?: number;
/**
* The ID of the template the project will be based on. Only used when creating a new project.
* @type {number}
*/
Expand Down