Skip to content

Commit e9a1110

Browse files
Merge pull request #266 from pipedrive/298
Build 298 - version-patch
2 parents 4ad4d44 + e9cc916 commit e9a1110

3 files changed

Lines changed: 4 additions & 31 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Fixed
9+
- Removed `is_selected` from `/api/v2/pipelines` response, the field was never returned
10+
11+
## [14.6.1](https://github.com/pipedrive/client-php/compare/14.6.0...14.6.1) (2026-01-27)
812

913
## [14.6.0](https://github.com/pipedrive/client-php/compare/14.5.0...14.6.0) (2025-12-05)
1014

docs/versions/v2/Model/PipelineItem.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ Name | Type | Description | Notes
77
**id** | **int** | The ID of the pipeline | [optional]
88
**name** | **string** | The name of the pipeline | [optional]
99
**order_nr** | **int** | Defines the order of pipelines. The pipeline with the lowest `order_nr` is considered the default. | [optional]
10-
**is_selected** | **bool** | Whether this pipeline is selected or not | [optional]
1110
**is_deleted** | **bool** | Whether this pipeline is marked as deleted or not | [optional]
1211
**is_deal_probability_enabled** | **bool** | Whether deal probability is disabled or enabled for this pipeline | [optional]
1312
**add_time** | **string** | The pipeline creation time | [optional]

lib/versions/v2/Model/PipelineItem.php

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ class PipelineItem implements ModelInterface, ArrayAccess, JsonSerializable
6969
'id' => 'int',
7070
'name' => 'string',
7171
'order_nr' => 'int',
72-
'is_selected' => 'bool',
7372
'is_deleted' => 'bool',
7473
'is_deal_probability_enabled' => 'bool',
7574
'add_time' => 'string',
@@ -87,7 +86,6 @@ class PipelineItem implements ModelInterface, ArrayAccess, JsonSerializable
8786
'id' => null,
8887
'name' => null,
8988
'order_nr' => null,
90-
'is_selected' => null,
9189
'is_deleted' => null,
9290
'is_deal_probability_enabled' => null,
9391
'add_time' => null,
@@ -128,7 +126,6 @@ public static function openAPIFormats(): array
128126
'id' => 'id',
129127
'name' => 'name',
130128
'order_nr' => 'order_nr',
131-
'is_selected' => 'is_selected',
132129
'is_deleted' => 'is_deleted',
133130
'is_deal_probability_enabled' => 'is_deal_probability_enabled',
134131
'add_time' => 'add_time',
@@ -144,7 +141,6 @@ public static function openAPIFormats(): array
144141
'id' => 'setId',
145142
'name' => 'setName',
146143
'order_nr' => 'setOrderNr',
147-
'is_selected' => 'setIsSelected',
148144
'is_deleted' => 'setIsDeleted',
149145
'is_deal_probability_enabled' => 'setIsDealProbabilityEnabled',
150146
'add_time' => 'setAddTime',
@@ -160,7 +156,6 @@ public static function openAPIFormats(): array
160156
'id' => 'getId',
161157
'name' => 'getName',
162158
'order_nr' => 'getOrderNr',
163-
'is_selected' => 'getIsSelected',
164159
'is_deleted' => 'getIsDeleted',
165160
'is_deal_probability_enabled' => 'getIsDealProbabilityEnabled',
166161
'add_time' => 'getAddTime',
@@ -237,7 +232,6 @@ public function __construct(array $data = null)
237232
$this->container['id'] = $data['id'] ?? null;
238233
$this->container['name'] = $data['name'] ?? null;
239234
$this->container['order_nr'] = $data['order_nr'] ?? null;
240-
$this->container['is_selected'] = $data['is_selected'] ?? null;
241235
$this->container['is_deleted'] = $data['is_deleted'] ?? null;
242236
$this->container['is_deal_probability_enabled'] = $data['is_deal_probability_enabled'] ?? null;
243237
$this->container['add_time'] = $data['add_time'] ?? null;
@@ -342,30 +336,6 @@ public function setOrderNr($order_nr): self
342336
return $this;
343337
}
344338

345-
/**
346-
* Gets is_selected
347-
*
348-
* @return bool|null
349-
*/
350-
public function getIsSelected()
351-
{
352-
return $this->container['is_selected'];
353-
}
354-
355-
/**
356-
* Sets is_selected
357-
*
358-
* @param bool|null $is_selected Whether this pipeline is selected or not
359-
*
360-
* @return self
361-
*/
362-
public function setIsSelected($is_selected): self
363-
{
364-
$this->container['is_selected'] = $is_selected;
365-
366-
return $this;
367-
}
368-
369339
/**
370340
* Gets is_deleted
371341
*

0 commit comments

Comments
 (0)