Skip to content

Commit

Permalink
Merge pull request #124 from pipedrive/27
Browse files Browse the repository at this point in the history
Build 27 - version-patch
  • Loading branch information
bashmach authored Jun 7, 2024
2 parents 5e396e2 + e0cd4ad commit 9ebac7b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 62 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [6.10.1](https://github.com/pipedrive/client-php/compare/6.10.0...6.10.1) (2024-06-07)

### Removed
- Cleanup unused company settings

## [6.10.0](https://github.com/pipedrive/client-php/compare/6.9.0...6.10.0) (2024-06-07)

### Added
Expand Down
2 changes: 0 additions & 2 deletions docs/Model/UserSettingsItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**marketplace_allow_custom_install_url** | **bool** | If the vendors are allowed to install custom Marketplace apps with functionality and content in the Pipedrive UI or not | [optional]
**marketplace_app_extensions_vendor** | **bool** | If the vendors are allowed to extend their Marketplace apps with functionality and content in the Pipedrive UI or not | [optional]
**marketplace_team** | **bool** | If the vendors are allowed to be part of the Marketplace team or not | [optional]
**list_limit** | **float** | The number of results shown in list by default | [optional]
**beta_app** | **bool** | Whether beta app is enabled | [optional]
Expand Down
60 changes: 0 additions & 60 deletions lib/Model/UserSettingsItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ class UserSettingsItem implements ModelInterface, ArrayAccess, JsonSerializable
* @phpsalm-var array<string, string>
*/
protected static array $openAPITypes = [
'marketplace_allow_custom_install_url' => 'bool',
'marketplace_app_extensions_vendor' => 'bool',
'marketplace_team' => 'bool',
'list_limit' => 'float',
'beta_app' => 'bool',
Expand All @@ -86,8 +84,6 @@ class UserSettingsItem implements ModelInterface, ArrayAccess, JsonSerializable
* @psalm-var array<string, string|null>
*/
protected static $openAPIFormats = [
'marketplace_allow_custom_install_url' => null,
'marketplace_app_extensions_vendor' => null,
'marketplace_team' => null,
'list_limit' => null,
'beta_app' => null,
Expand Down Expand Up @@ -129,8 +125,6 @@ public static function openAPIFormats(): array
* @var string[]
*/
protected static $attributeMap = [
'marketplace_allow_custom_install_url' => 'marketplace_allow_custom_install_url',
'marketplace_app_extensions_vendor' => 'marketplace_app_extensions_vendor',
'marketplace_team' => 'marketplace_team',
'list_limit' => 'list_limit',
'beta_app' => 'beta_app',
Expand All @@ -147,8 +141,6 @@ public static function openAPIFormats(): array
* @var string[]
*/
protected static $setters = [
'marketplace_allow_custom_install_url' => 'setMarketplaceAllowCustomInstallUrl',
'marketplace_app_extensions_vendor' => 'setMarketplaceAppExtensionsVendor',
'marketplace_team' => 'setMarketplaceTeam',
'list_limit' => 'setListLimit',
'beta_app' => 'setBetaApp',
Expand All @@ -165,8 +157,6 @@ public static function openAPIFormats(): array
* @var string[]
*/
protected static $getters = [
'marketplace_allow_custom_install_url' => 'getMarketplaceAllowCustomInstallUrl',
'marketplace_app_extensions_vendor' => 'getMarketplaceAppExtensionsVendor',
'marketplace_team' => 'getMarketplaceTeam',
'list_limit' => 'getListLimit',
'beta_app' => 'getBetaApp',
Expand Down Expand Up @@ -244,8 +234,6 @@ public function getModelName(): string
*/
public function __construct(array $data = null)
{
$this->container['marketplace_allow_custom_install_url'] = $data['marketplace_allow_custom_install_url'] ?? null;
$this->container['marketplace_app_extensions_vendor'] = $data['marketplace_app_extensions_vendor'] ?? null;
$this->container['marketplace_team'] = $data['marketplace_team'] ?? null;
$this->container['list_limit'] = $data['list_limit'] ?? null;
$this->container['beta_app'] = $data['beta_app'] ?? null;
Expand Down Expand Up @@ -282,54 +270,6 @@ public function valid(): bool
}


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

/**
* Sets marketplace_allow_custom_install_url
*
* @param bool|null $marketplace_allow_custom_install_url If the vendors are allowed to install custom Marketplace apps with functionality and content in the Pipedrive UI or not
*
* @return self
*/
public function setMarketplaceAllowCustomInstallUrl($marketplace_allow_custom_install_url): self
{
$this->container['marketplace_allow_custom_install_url'] = $marketplace_allow_custom_install_url;

return $this;
}

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

/**
* Sets marketplace_app_extensions_vendor
*
* @param bool|null $marketplace_app_extensions_vendor If the vendors are allowed to extend their Marketplace apps with functionality and content in the Pipedrive UI or not
*
* @return self
*/
public function setMarketplaceAppExtensionsVendor($marketplace_app_extensions_vendor): self
{
$this->container['marketplace_app_extensions_vendor'] = $marketplace_app_extensions_vendor;

return $this;
}

/**
* Gets marketplace_team
*
Expand Down

0 comments on commit 9ebac7b

Please sign in to comment.