Skip to content

Commit 46a271f

Browse files
committed
Merge branch 'master' into 309
2 parents 0bc5fe5 + 94d7e2b commit 46a271f

2 files changed

Lines changed: 41 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 38 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
## [Unreleased]
88
### Fixed
99
- Fixed incorrect type definitions for `label` fields in v2 Persons API request schema (`PersonRequestBody`). The `label` field for both `phones` and `emails` arrays was incorrectly typed as `boolean` instead of `string`, causing SDK type generation issues. Labels now correctly accept string values like 'work', 'home', 'mobile', and 'other'.
10+
11+
### Changed
12+
- Removed beta labels from v2 lead/deal conversion endpoints:
13+
- `GET /api/v2/leads/{id}/convert/status/{conversion_id}`
14+
- `POST /api/v2/leads/{id}/convert`
15+
- `GET /api/v2/deals/{id}/convert/status/{conversion_id}`
16+
- `POST /api/v2/deals/{id}/convert`
17+
- Removed beta labels from v2 deal installments endpoints:
18+
- `GET /api/v2/deals/installments`
19+
- `POST /api/v2/deals/{id}/installments`
20+
- `PATCH /api/v2/deals/{id}/installments/{installment_id}`
21+
- `DELETE /api/v2/deals/{id}/installments/{installment_id}`
22+
- Removed beta labels from v2 product images endpoints:
23+
- `GET /api/v2/products/{id}/images`
24+
- `POST /api/v2/products/{id}/images`
25+
- `PUT /api/v2/products/{id}/images`
26+
- `DELETE /api/v2/products/{id}/images`
27+
28+
## [15.1.1](https://github.com/pipedrive/client-php/compare/15.1.0...15.1.1) (2026-02-06)
29+
30+
### Added
31+
- Documented three new OAuth2 scopes for field management in v1 README:
32+
- `deal-fields:full` - Allows applications to create, read, update and delete deal fields
33+
- `product-fields:full` - Allows applications to create, read, update and delete product fields
34+
- `contact-fields:full` - Allows applications to create, read, update and delete person and organization fields
35+
36+
## [15.1.0](https://github.com/pipedrive/client-php/compare/15.0.0...15.1.0) (2026-01-27)
37+
38+
### Added
39+
- Added `updated_since` query parameter to `GET /v1/leads` endpoint to filter leads by their `update_time`
40+
- Added `updated_since` query parameter to `GET /v1/notes` endpoint to filter notes by their `update_time`
41+
42+
## [15.0.0](https://github.com/pipedrive/client-php/compare/14.9.0...15.0.0) (2026-01-27)
43+
1044
### Removed
1145
- Removed deprecated bulk delete endpoints:
1246
- `DELETE /v1/activities`
@@ -17,21 +51,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1751
- `DELETE /v1/stages`
1852
Please use the single delete endpoints instead, for example `DELETE /api/v2/activities/{id}`.
1953

20-
### Added
21-
- Added `updated_since` query parameter to `GET /v1/leads` endpoint to filter leads by their `update_time`
22-
- Added `updated_since` query parameter to `GET /v1/notes` endpoint to filter notes by their `update_time`
23-
24-
## [15.1.0](https://github.com/pipedrive/client-php/compare/15.0.0...15.1.0) (2026-01-27)
25-
26-
## [15.0.0](https://github.com/pipedrive/client-php/compare/14.9.0...15.0.0) (2026-01-27)
27-
2854
## [14.9.0](https://github.com/pipedrive/client-php/compare/14.8.0...14.9.0) (2026-01-27)
2955

3056
### Added
31-
- Added three new visibility flags to ui_visibility in organization fields v2 endpoints: org_detail_visible_flag, person_detail_visible_flag, and deal_detail_visible_flag
57+
- Added three new visibility flags to `ui_visibility` in organization fields v2 endpoints: `org_detail_visible_flag`, `person_detail_visible_flag`, and `deal_detail_visible_flag`
3258

3359
## [14.8.0](https://github.com/pipedrive/client-php/compare/14.7.1...14.8.0) (2026-01-27)
3460

61+
### Added
62+
- Added `smart_bcc_email` to optional `include_fields` in Persons and Organizations API v2
63+
3564
## [14.7.1](https://github.com/pipedrive/client-php/compare/14.7.0...14.7.1) (2026-01-27)
3665

3766
### Added

docs/versions/v1/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1370,4 +1370,7 @@ Class | Method | HTTP request | Description
13701370
- **goals:full**: Create, read, update and delete goals
13711371
- **video-calls**: Allows application to register as a video call integration provider and create conference links
13721372
- **messengers-integration**: Allows application to register as a messengers integration provider and allows them to deliver incoming messages and their statuses
1373+
- **deal-fields:full**: Create, read, update and delete deal fields
1374+
- **product-fields:full**: Create, read, update and delete product fields
1375+
- **contact-fields:full**: Create, read, update and delete person and organization fields
13731376

0 commit comments

Comments
 (0)