Skip to content
Open
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Removed `is_selected` from `/api/v2/pipelines` response, the field was never returned

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

Expand Down
1 change: 0 additions & 1 deletion docs/versions/v2/Model/PipelineItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Name | Type | Description | Notes
**id** | **int** | The ID of the pipeline | [optional]
**name** | **string** | The name of the pipeline | [optional]
**order_nr** | **int** | Defines the order of pipelines. The pipeline with the lowest `order_nr` is considered the default. | [optional]
**is_selected** | **bool** | Whether this pipeline is selected or not | [optional]
**is_deleted** | **bool** | Whether this pipeline is marked as deleted or not | [optional]
**is_deal_probability_enabled** | **bool** | Whether deal probability is disabled or enabled for this pipeline | [optional]
**add_time** | **string** | The pipeline creation time | [optional]
Expand Down
30 changes: 0 additions & 30 deletions lib/versions/v2/Model/PipelineItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ class PipelineItem implements ModelInterface, ArrayAccess, JsonSerializable
'id' => 'int',
'name' => 'string',
'order_nr' => 'int',
'is_selected' => 'bool',
'is_deleted' => 'bool',
'is_deal_probability_enabled' => 'bool',
'add_time' => 'string',
Expand All @@ -87,7 +86,6 @@ class PipelineItem implements ModelInterface, ArrayAccess, JsonSerializable
'id' => null,
'name' => null,
'order_nr' => null,
'is_selected' => null,
'is_deleted' => null,
'is_deal_probability_enabled' => null,
'add_time' => null,
Expand Down Expand Up @@ -128,7 +126,6 @@ public static function openAPIFormats(): array
'id' => 'id',
'name' => 'name',
'order_nr' => 'order_nr',
'is_selected' => 'is_selected',
'is_deleted' => 'is_deleted',
'is_deal_probability_enabled' => 'is_deal_probability_enabled',
'add_time' => 'add_time',
Expand All @@ -144,7 +141,6 @@ public static function openAPIFormats(): array
'id' => 'setId',
'name' => 'setName',
'order_nr' => 'setOrderNr',
'is_selected' => 'setIsSelected',
'is_deleted' => 'setIsDeleted',
'is_deal_probability_enabled' => 'setIsDealProbabilityEnabled',
'add_time' => 'setAddTime',
Expand All @@ -160,7 +156,6 @@ public static function openAPIFormats(): array
'id' => 'getId',
'name' => 'getName',
'order_nr' => 'getOrderNr',
'is_selected' => 'getIsSelected',
'is_deleted' => 'getIsDeleted',
'is_deal_probability_enabled' => 'getIsDealProbabilityEnabled',
'add_time' => 'getAddTime',
Expand Down Expand Up @@ -237,7 +232,6 @@ public function __construct(array $data = null)
$this->container['id'] = $data['id'] ?? null;
$this->container['name'] = $data['name'] ?? null;
$this->container['order_nr'] = $data['order_nr'] ?? null;
$this->container['is_selected'] = $data['is_selected'] ?? null;
$this->container['is_deleted'] = $data['is_deleted'] ?? null;
$this->container['is_deal_probability_enabled'] = $data['is_deal_probability_enabled'] ?? null;
$this->container['add_time'] = $data['add_time'] ?? null;
Expand Down Expand Up @@ -342,30 +336,6 @@ public function setOrderNr($order_nr): self
return $this;
}

/**
* Gets is_selected
*
* @return bool|null
*/
public function getIsSelected()
{
return $this->container['is_selected'];
}

/**
* Sets is_selected
*
* @param bool|null $is_selected Whether this pipeline is selected or not
*
* @return self
*/
public function setIsSelected($is_selected): self
{
$this->container['is_selected'] = $is_selected;

return $this;
}

/**
* Gets is_deleted
*
Expand Down