Skip to content

Commit

Permalink
Build 27 - version-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
pipedrive-bot committed Jun 7, 2024
1 parent 7ab31d0 commit 68d95bc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 24 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions docs/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** | **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]
Expand Down
22 changes: 0 additions & 22 deletions src/model/UserSettingsItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 68d95bc

Please sign in to comment.