Skip to content

Commit e942986

Browse files
author
pipedrive-bot
committed
Build 314 - version-minor
1 parent 19ca025 commit e942986

8 files changed

Lines changed: 45 additions & 38 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
77
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).
88

99
## [Unreleased]
10+
### Changed
11+
- Changed `board_id` and `phase_id` to be optional in `POST /api/v1/projects`
1012

1113
## [31.4.0] - 2026-02-16
1214
### Fixed

src/versions/v1/models/lead.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ export interface Lead {
8484
*/
8585
'channel_id': string | null;
8686
/**
87+
* The ID of the deal if the lead was converted from a deal.
88+
* @type {number}
89+
*/
90+
'source_deal_id': number | null;
91+
/**
8792
* A flag indicating whether the lead is archived or not
8893
* @type {boolean}
8994
*/

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

src/versions/v2/api/deals-api.ts

Lines changed: 18 additions & 18 deletions
Large diffs are not rendered by default.

src/versions/v2/models/deal-item.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,11 @@ export interface DealItem {
156156
*/
157157
'channel_id'?: string | null;
158158
/**
159+
* The ID of the lead if the deal was converted from a lead. Only included when requested via include_fields parameter.
160+
* @type {string}
161+
*/
162+
'source_lead_id'?: string | null;
163+
/**
159164
* Only available in Growth and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
160165
* @type {number}
161166
*/

src/versions/v2/models/deal-item1.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,11 @@ export interface DealItem1 {
156156
*/
157157
'channel_id'?: string | null;
158158
/**
159+
* The ID of the lead if the deal was converted from a lead. Only included when requested via include_fields parameter.
160+
* @type {string}
161+
*/
162+
'source_lead_id'?: string | null;
163+
/**
159164
* Only available in Growth and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
160165
* @type {number}
161166
*/

0 commit comments

Comments
 (0)