Skip to content

Commit 536bbac

Browse files
author
pipedrive-bot
committed
Build 159 - version-patch
1 parent 24e88a0 commit 536bbac

File tree

4 files changed

+50
-4
lines changed

4 files changed

+50
-4
lines changed

CHANGELOG.md

+2
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 AdditionalData object schema
1012

1113
## [24.1.1] - 2025-02-11
1214
### Fixed
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* Pipedrive API v1
5+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6+
*
7+
* The version of the OpenAPI document: 1.0.0
8+
*
9+
*
10+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11+
* https://openapi-generator.tech
12+
* Do not edit the class manually.
13+
*/
14+
15+
16+
17+
/**
18+
* The pagination details of the list
19+
* @export
20+
* @interface AdditionalData
21+
*/
22+
export interface AdditionalData {
23+
/**
24+
* Next pagination start
25+
* @type {number}
26+
*/
27+
'next_start'?: number;
28+
/**
29+
* Pagination start
30+
* @type {number}
31+
*/
32+
'start'?: number;
33+
/**
34+
* Items shown per page
35+
* @type {number}
36+
*/
37+
'limit'?: number;
38+
/**
39+
* If there are more list items in the collection than displayed or not
40+
* @type {boolean}
41+
*/
42+
'more_items_in_collection'?: boolean;
43+
}
44+

src/versions/v1/models/get-notes-response-additional-data.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// May contain unused imports in some cases
1717
// @ts-ignore
18-
import { GetNotesResponseAdditionalDataPagination } from './get-notes-response-additional-data-pagination';
18+
import { AdditionalData } from './additional-data';
1919

2020
/**
2121
*
@@ -25,8 +25,8 @@ import { GetNotesResponseAdditionalDataPagination } from './get-notes-response-a
2525
export interface GetNotesResponseAdditionalData {
2626
/**
2727
*
28-
* @type {GetNotesResponseAdditionalDataPagination}
28+
* @type {AdditionalData}
2929
*/
30-
'pagination'?: GetNotesResponseAdditionalDataPagination;
30+
'pagination'?: AdditionalData;
3131
}
3232

src/versions/v1/models/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ export * from './add-user-provider-link-request';
9999
export * from './add-user-request';
100100
export * from './add-webhook-request';
101101
export * from './additional-base-organization-item-info';
102+
export * from './additional-data';
102103
export * from './additional-merge-person-info';
103104
export * from './additional-person-info';
104105
export * from './base-deal';
@@ -411,7 +412,6 @@ export * from './get-note-fields-response-all-of-data-inner-all-of';
411412
export * from './get-note-fields-response-all-of-data-inner-all-of-options-inner';
412413
export * from './get-notes-response';
413414
export * from './get-notes-response-additional-data';
414-
export * from './get-notes-response-additional-data-pagination';
415415
export * from './get-organization-item';
416416
export * from './get-organization-item-all-of';
417417
export * from './get-organization-relationship-response';

0 commit comments

Comments
 (0)