Skip to content

Commit 8b6eaf1

Browse files
author
pipedrive-bot
committed
Build 286 - version-patch
1 parent 19e58d8 commit 8b6eaf1

19 files changed

+519
-54
lines changed

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 PHP SDK v2 Configuration to use correct `/v2` API endpoints after OAuth token refresh instead of defaulting to `/v1`
1012

1113
## [29.2.5] - 2025-10-03
1214

docs/v2.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ BetaApi | uploadProductImage | **POST** /products/{id}/images | Upload an image
2424
DealsApi | addDeal | **POST** /deals | Add a new deal
2525
DealsApi | addDealFollower | **POST** /deals/{id}/followers | Add a follower to a deal
2626
DealsApi | addDealProduct | **POST** /deals/{id}/products | Add a product to a deal
27+
DealsApi | addManyDealProducts | **POST** /deals/{id}/products/bulk | Add multiple products to a deal
2728
DealsApi | convertDealToLead | **POST** /deals/{id}/convert/lead | Convert a deal to a lead (BETA)
2829
DealsApi | deleteAdditionalDiscount | **DELETE** /deals/{id}/discounts/{discount_id} | Delete a discount from a deal
2930
DealsApi | deleteDeal | **DELETE** /deals/{id} | Delete a deal
3031
DealsApi | deleteDealFollower | **DELETE** /deals/{id}/followers/{follower_id} | Delete a follower from a deal
3132
DealsApi | deleteDealProduct | **DELETE** /deals/{id}/products/{product_attachment_id} | Delete an attached product from a deal
3233
DealsApi | deleteInstallment | **DELETE** /deals/{id}/installments/{installment_id} | Delete an installment from a deal
34+
DealsApi | deleteManyDealProducts | **DELETE** /deals/{id}/products | Delete many products from a deal
3335
DealsApi | getAdditionalDiscounts | **GET** /deals/{id}/discounts | List discounts added to a deal
3436
DealsApi | getArchivedDeals | **GET** /deals/archived | Get all archived deals
3537
DealsApi | getDeal | **GET** /deals/{id} | Get details of a deal

src/versions/v1/api/item-search-api.ts

Lines changed: 7 additions & 7 deletions
Large diffs are not rendered by default.

src/versions/v1/models/add-team-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface AddTeamRequest {
3636
*/
3737
'manager_id'?: number;
3838
/**
39-
* The IDs of the users that belong to the team
39+
* The list of user IDs
4040
* @type {Array<number>}
4141
*/
4242
'users'?: Array<number>;

src/versions/v1/models/add-team-request1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface AddTeamRequest1 {
3636
*/
3737
'description'?: string;
3838
/**
39-
* The IDs of the users that belong to the team
39+
* The list of user IDs
4040
* @type {Array<number>}
4141
*/
4242
'users'?: Array<number>;

src/versions/v1/models/get-permitted-users-response.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616
// May contain unused imports in some cases
1717
// @ts-ignore
18-
import { BaseResponse1 } from './base-response1';
18+
import { BaseResponse } from './base-response';
1919

2020
/**
2121
* @type GetPermittedUsersResponse
2222
* @export
2323
*/
24-
export type GetPermittedUsersResponse = BaseResponse1;
24+
export type GetPermittedUsersResponse = BaseResponse;
2525

2626

src/versions/v1/models/get-products-response1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
import { GetActivitiesResponseRelatedObjects } from './get-activities-response-related-objects';
1919
// May contain unused imports in some cases
2020
// @ts-ignore
21-
import { GetProductResponse } from './get-product-response';
21+
import { GetFieldsResponseAllOfAdditionalData } from './get-fields-response-all-of-additional-data';
2222
// May contain unused imports in some cases
2323
// @ts-ignore
24-
import { GetProductsResponse1AdditionalData } from './get-products-response1-additional-data';
24+
import { GetProductResponse } from './get-product-response';
2525

2626
/**
2727
*
@@ -41,9 +41,9 @@ export interface GetProductsResponse1 {
4141
'data': Array<GetProductResponse>;
4242
/**
4343
*
44-
* @type {GetProductsResponse1AdditionalData}
44+
* @type {GetFieldsResponseAllOfAdditionalData}
4545
*/
46-
'additional_data': GetProductsResponse1AdditionalData;
46+
'additional_data': GetFieldsResponseAllOfAdditionalData;
4747
/**
4848
*
4949
* @type {GetActivitiesResponseRelatedObjects}

src/versions/v1/models/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ export * from './base-pipeline-with-selected-flag';
112112
export * from './base-pipeline-with-selected-flag-all-of';
113113
export * from './base-product';
114114
export * from './base-response';
115-
export * from './base-response1';
116115
export * from './base-response-all-of';
117116
export * from './base-role-request';
118117
export * from './base-stage';
@@ -497,7 +496,6 @@ export * from './get-product-search-response-all-of-data-items-inner-item';
497496
export * from './get-product-search-response-all-of-data-items-inner-item-owner';
498497
export * from './get-products-response';
499498
export * from './get-products-response1';
500-
export * from './get-products-response1-additional-data';
501499
export * from './get-products-response-all-of';
502500
export * from './get-products-response-all-of-additional-data';
503501
export * from './get-products-response-all-of-additional-data-all-of';

0 commit comments

Comments
 (0)