Skip to content

Commit 05b806e

Browse files
author
pipedrive-bot
committed
Build 278 - version-patch
1 parent 44d5f2e commit 05b806e

12 files changed

Lines changed: 22 additions & 6 deletions

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
77
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).
88

99
## [Unreleased]
10+
### Fixed
11+
- Fixed incorrect `custom_fields` schema implementations by using the proper shared definition from `custom-fields.yaml`
1012

1113
## [29.2.2] - 2025-09-08
1214
### Fixed

src/versions/v1/models/add-activity-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddActivityRequestAllOf
2121
*/
2222
export interface AddActivityRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The note of the activity (HTML format)
2527
* @type {string}

src/versions/v1/models/add-note-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddNoteRequestAllOf
2121
*/
2222
export interface AddNoteRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The content of the note in HTML format. Subject to sanitization on the back-end.
2527
* @type {string}

src/versions/v1/models/add-organization-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddOrganizationRequestAllOf
2121
*/
2222
export interface AddOrganizationRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The name of the organization
2527
* @type {string}

src/versions/v1/models/add-person-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddPersonRequestAllOf
2121
*/
2222
export interface AddPersonRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The name of the person
2527
* @type {string}

src/versions/v1/models/add-product-request-all-of1.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface AddProductRequestAllOf1
2121
*/
2222
export interface AddProductRequestAllOf1 {
23+
[key: string]: any | any;
24+
2325
/**
2426
* Only available in Growth and above plans How often a customer is billed for access to a service or product
2527
* @type {string}

src/versions/v1/models/basic-deal.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface BasicDeal
2121
*/
2222
export interface BasicDeal {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The optional date and time of changing the deal status as won in UTC. Format: YYYY-MM-DD HH:MM:SS. Can be set only when deal `status` is already Won. Can not be used together with `lost_time`.
2527
* @type {string}

src/versions/v1/models/basic-organization.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface BasicOrganization
2121
*/
2222
export interface BasicOrganization {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The ID of the user who will be marked as the owner of this organization. When omitted, the authorized user ID will be used.
2527
* @type {number}

src/versions/v1/models/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,10 @@ export * from './base-team-additional-properties';
122122
export * from './base-user';
123123
export * from './base-webhook';
124124
export * from './basic-deal';
125-
export * from './basic-deal1';
126125
export * from './basic-deal-product-request';
127126
export * from './basic-deal-product-request-all-of';
128127
export * from './basic-goal-request';
129128
export * from './basic-organization';
130-
export * from './basic-organization1';
131129
export * from './basic-person-request';
132130
export * from './basic-person-request-email-inner';
133131
export * from './call-log-bad-request-response';

src/versions/v1/models/update-activity-request-all-of.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @interface UpdateActivityRequestAllOf
2121
*/
2222
export interface UpdateActivityRequestAllOf {
23+
[key: string]: any | any;
24+
2325
/**
2426
* The note of the activity (HTML format)
2527
* @type {string}

0 commit comments

Comments
 (0)