From 68d95bce3856f7cb41057de9a85ce3781719b265 Mon Sep 17 00:00:00 2001 From: pipedrive-bot Date: Fri, 7 Jun 2024 11:01:37 +0000 Subject: [PATCH] Build 27 - version-patch --- CHANGELOG.md | 2 ++ docs/UserSettingsItem.md | 2 -- src/model/UserSettingsItem.js | 22 ---------------------- 3 files changed, 2 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9d96f2f..c67737fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e 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). ## [Unreleased] +### Removed +- Cleanup unused company settings ## [22.10.0] - 2024-06-07 ### Added diff --git a/docs/UserSettingsItem.md b/docs/UserSettingsItem.md index 1105b4fe..fd77c163 100644 --- a/docs/UserSettingsItem.md +++ b/docs/UserSettingsItem.md @@ -4,8 +4,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**marketplace_allow_custom_install_url** | **Boolean** | 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** | **Boolean** | If the vendors are allowed to extend their Marketplace apps with functionality and content in the Pipedrive UI or not | [optional] **marketplace_team** | **Boolean** | If the vendors are allowed to be part of the Marketplace team or not | [optional] **list_limit** | **Number** | The number of results shown in list by default | [optional] **beta_app** | **Boolean** | Whether beta app is enabled | [optional] diff --git a/src/model/UserSettingsItem.js b/src/model/UserSettingsItem.js index 63cf6806..33ac4521 100644 --- a/src/model/UserSettingsItem.js +++ b/src/model/UserSettingsItem.js @@ -47,16 +47,6 @@ class UserSettingsItem { if (data) { obj = obj || new UserSettingsItem(); - if (data.hasOwnProperty('marketplace_allow_custom_install_url')) { - obj['marketplace_allow_custom_install_url'] = ApiClient.convertToType(data['marketplace_allow_custom_install_url'], 'Boolean'); - - delete data['marketplace_allow_custom_install_url']; - } - if (data.hasOwnProperty('marketplace_app_extensions_vendor')) { - obj['marketplace_app_extensions_vendor'] = ApiClient.convertToType(data['marketplace_app_extensions_vendor'], 'Boolean'); - - delete data['marketplace_app_extensions_vendor']; - } if (data.hasOwnProperty('marketplace_team')) { obj['marketplace_team'] = ApiClient.convertToType(data['marketplace_team'], 'Boolean'); @@ -109,18 +99,6 @@ class UserSettingsItem { } -/** - * If the vendors are allowed to install custom Marketplace apps with functionality and content in the Pipedrive UI or not - * @member {Boolean} marketplace_allow_custom_install_url - */ -UserSettingsItem.prototype['marketplace_allow_custom_install_url'] = undefined; - -/** - * If the vendors are allowed to extend their Marketplace apps with functionality and content in the Pipedrive UI or not - * @member {Boolean} marketplace_app_extensions_vendor - */ -UserSettingsItem.prototype['marketplace_app_extensions_vendor'] = undefined; - /** * If the vendors are allowed to be part of the Marketplace team or not * @member {Boolean} marketplace_team