diff --git a/CHANGELOG.md b/CHANGELOG.md index f94799d7..fe164242 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] +### Added +- Added `smart_bcc_email` to optional `include_fields` in Persons and Organizations API v2 ## [30.10.0] - 2026-01-27 ### Added diff --git a/src/versions/v2/models/get-organization-fields200-response-data-inner-ui-visibility.ts b/src/versions/v2/models/get-organization-fields200-response-data-inner-ui-visibility.ts index 9255cf41..9768f2df 100644 --- a/src/versions/v2/models/get-organization-fields200-response-data-inner-ui-visibility.ts +++ b/src/versions/v2/models/get-organization-fields200-response-data-inner-ui-visibility.ts @@ -37,6 +37,21 @@ export interface GetOrganizationFields200ResponseDataInnerUiVisibility { */ 'details_visible_flag'?: boolean; /** + * Whether the field is shown in the organization details view + * @type {boolean} + */ + 'org_detail_visible_flag'?: boolean; + /** + * Whether the field is shown in the person details view + * @type {boolean} + */ + 'person_detail_visible_flag'?: boolean; + /** + * Whether the field is shown in the deal details view + * @type {boolean} + */ + 'deal_detail_visible_flag'?: boolean; + /** * * @type {GetPersonFields200ResponseDataInnerUiVisibilityShowInAddDealDialog} */