Skip to content

Commit 445c902

Browse files
Release v31.6.0 from PR #708
2 parents 6a02c95 + f560d08 commit 445c902

6 files changed

Lines changed: 19 additions & 24 deletions

File tree

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+
## [31.6.0] - 2026-03-05
12+
### Changed
13+
- Changed `board_id` and `phase_id` to be optional in `POST /api/v1/projects`
14+
1115
## [31.5.0] - 2026-03-04
1216
### Added
1317
- Added `source_deal_id` field to Lead schema to track the deal ID when a lead is converted from a deal
@@ -1126,7 +1130,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
11261130
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
11271131
* Fixed typo in lead example response (`crrency` to `currency`)
11281132

1129-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v31.5.0...HEAD
1133+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v31.6.0...HEAD
1134+
[31.6.0]: https://github.com/pipedrive/api-docs/compare/v31.5.0...v31.6.0
11301135
[31.5.0]: https://github.com/pipedrive/api-docs/compare/v31.4.0...v31.5.0
11311136
[31.4.0]: https://github.com/pipedrive/api-docs/compare/v31.3.0...v31.4.0
11321137
[31.3.0]: https://github.com/pipedrive/api-docs/compare/v31.2.1...v31.3.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": "31.5.0",
3+
"version": "31.6.0",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

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

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,5 @@ export interface ProjectAllOf {
2525
* @type {string}
2626
*/
2727
'title'?: string;
28-
/**
29-
* The ID of the board this project is associated with
30-
* @type {number}
31-
*/
32-
'board_id'?: number;
33-
/**
34-
* The ID of the phase this project is associated with
35-
* @type {number}
36-
*/
37-
'phase_id'?: number;
3828
}
3929

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@
2020
* @interface ProjectAllOf1
2121
*/
2222
export interface ProjectAllOf1 {
23+
/**
24+
* The ID of the board this project is associated with
25+
* @type {number}
26+
*/
27+
'board_id'?: number;
28+
/**
29+
* The ID of the phase this project is associated with
30+
* @type {number}
31+
*/
32+
'phase_id'?: number;
2333
/**
2434
* The description of the project
2535
* @type {string}

src/versions/v1/models/required-post-project-parameters.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,5 @@ export interface RequiredPostProjectParameters {
2525
* @type {string}
2626
*/
2727
'title': string;
28-
/**
29-
* The ID of a project board
30-
* @type {number}
31-
*/
32-
'board_id': number;
33-
/**
34-
* The ID of a phase on a project board
35-
* @type {number}
36-
*/
37-
'phase_id': number;
3828
}
3929

0 commit comments

Comments
 (0)