Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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]
### Fixed
- Fixed incorrect `custom_fields` schema implementations by using the proper shared definition from `custom-fields.yaml`

## [29.2.2] - 2025-09-08
### Fixed
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/add-activity-request-all-of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface AddActivityRequestAllOf
*/
export interface AddActivityRequestAllOf {
[key: string]: any | any;

/**
* The note of the activity (HTML format)
* @type {string}
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/add-note-request-all-of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface AddNoteRequestAllOf
*/
export interface AddNoteRequestAllOf {
[key: string]: any | any;

/**
* The content of the note in HTML format. Subject to sanitization on the back-end.
* @type {string}
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/add-organization-request-all-of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface AddOrganizationRequestAllOf
*/
export interface AddOrganizationRequestAllOf {
[key: string]: any | any;

/**
* The name of the organization
* @type {string}
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/add-person-request-all-of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface AddPersonRequestAllOf
*/
export interface AddPersonRequestAllOf {
[key: string]: any | any;

/**
* The name of the person
* @type {string}
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/add-product-request-all-of1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface AddProductRequestAllOf1
*/
export interface AddProductRequestAllOf1 {
[key: string]: any | any;

/**
* Only available in Growth and above plans How often a customer is billed for access to a service or product
* @type {string}
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/basic-deal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface BasicDeal
*/
export interface BasicDeal {
[key: string]: any | any;

/**
* 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`.
* @type {string}
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/basic-organization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface BasicOrganization
*/
export interface BasicOrganization {
[key: string]: any | any;

/**
* The ID of the user who will be marked as the owner of this organization. When omitted, the authorized user ID will be used.
* @type {number}
Expand Down
2 changes: 0 additions & 2 deletions src/versions/v1/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,10 @@ export * from './base-team-additional-properties';
export * from './base-user';
export * from './base-webhook';
export * from './basic-deal';
export * from './basic-deal1';
export * from './basic-deal-product-request';
export * from './basic-deal-product-request-all-of';
export * from './basic-goal-request';
export * from './basic-organization';
export * from './basic-organization1';
export * from './basic-person-request';
export * from './basic-person-request-email-inner';
export * from './call-log-bad-request-response';
Expand Down
2 changes: 2 additions & 0 deletions src/versions/v1/models/update-activity-request-all-of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @interface UpdateActivityRequestAllOf
*/
export interface UpdateActivityRequestAllOf {
[key: string]: any | any;

/**
* The note of the activity (HTML format)
* @type {string}
Expand Down
4 changes: 2 additions & 2 deletions src/versions/v1/models/update-deal-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

// May contain unused imports in some cases
// @ts-ignore
import { BasicDeal1 } from './basic-deal1';
import { BasicDeal } from './basic-deal';
// May contain unused imports in some cases
// @ts-ignore
import { DealTitleParam } from './deal-title-param';
Expand All @@ -27,6 +27,6 @@ import { UpdateDealParameters } from './update-deal-parameters';
* @type UpdateDealRequest
* @export
*/
export type UpdateDealRequest = BasicDeal1 & DealTitleParam & UpdateDealParameters;
export type UpdateDealRequest = BasicDeal & DealTitleParam & UpdateDealParameters;


4 changes: 2 additions & 2 deletions src/versions/v1/models/update-organization-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

// May contain unused imports in some cases
// @ts-ignore
import { BasicOrganization1 } from './basic-organization1';
import { BasicOrganization } from './basic-organization';
// May contain unused imports in some cases
// @ts-ignore
import { UpdateOrganizationRequestAllOf } from './update-organization-request-all-of';
Expand All @@ -24,6 +24,6 @@ import { UpdateOrganizationRequestAllOf } from './update-organization-request-al
* @type UpdateOrganizationRequest
* @export
*/
export type UpdateOrganizationRequest = BasicOrganization1 & UpdateOrganizationRequestAllOf;
export type UpdateOrganizationRequest = BasicOrganization & UpdateOrganizationRequestAllOf;


Loading