Skip to content

Commit 1f15271

Browse files
Release v29.0.0 from PR #666
2 parents 89822de + 3404186 commit 1f15271

File tree

6 files changed

+18
-25
lines changed

6 files changed

+18
-25
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
88

99
## [Unreleased]
1010

11+
## [29.0.0] - 2025-09-03
12+
### Removed
13+
- Removed all endpoints of the Subscriptions feature
14+
- GET /v1/subscriptions/{id}
15+
- GET /v1/subscriptions/find/{dealId}
16+
- GET /v1/subscriptions/{id}/payments
17+
- POST /v1/subscriptions/recurring
18+
- POST /v1/subscriptions/installment
19+
- PUT /v1/subscriptions/recurring/{id}
20+
- PUT /v1/subscriptions/installment/{id}
21+
- PUT /v1/subscriptions/recurring/{id}/cancel
22+
- DELETE /v1/subscriptions/{id}
23+
1124
## [28.0.2] - 2025-07-07
1225
### Added
1326
- Added `custom_fields` type to `deal`, `person`, `organization`, `product` schemas
@@ -914,7 +927,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
914927
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
915928
* Fixed typo in lead example response (`crrency` to `currency`)
916929

917-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v28.0.2...HEAD
930+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v29.0.0...HEAD
931+
[29.0.0]: https://github.com/pipedrive/api-docs/compare/v28.0.2...v29.0.0
918932
[28.0.2]: https://github.com/pipedrive/api-docs/compare/v28.0.1...v28.0.2
919933
[28.0.1]: https://github.com/pipedrive/api-docs/compare/v28.0.0...v28.0.1
920934
[28.0.0]: https://github.com/pipedrive/api-docs/compare/v27.2.1...v28.0.0

docs/v1.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -255,15 +255,6 @@ StagesApi | getStage | **GET** /stages/{id} | Get one stage
255255
StagesApi | getStageDeals | **GET** /stages/{id}/deals | Get deals in a stage
256256
StagesApi | getStages | **GET** /stages | Get all stages
257257
StagesApi | updateStage | **PUT** /stages/{id} | Update stage details
258-
SubscriptionsApi | addRecurringSubscription | **POST** /subscriptions/recurring | Add a recurring subscription
259-
SubscriptionsApi | addSubscriptionInstallment | **POST** /subscriptions/installment | Add an installment subscription
260-
SubscriptionsApi | cancelRecurringSubscription | **PUT** /subscriptions/recurring/{id}/cancel | Cancel a recurring subscription
261-
SubscriptionsApi | deleteSubscription | **DELETE** /subscriptions/{id} | Delete a subscription
262-
SubscriptionsApi | findSubscriptionByDeal | **GET** /subscriptions/find/{dealId} | Find subscription by deal
263-
SubscriptionsApi | getSubscription | **GET** /subscriptions/{id} | Get details of a subscription
264-
SubscriptionsApi | getSubscriptionPayments | **GET** /subscriptions/{id}/payments | Get all payments of a subscription
265-
SubscriptionsApi | updateRecurringSubscription | **PUT** /subscriptions/recurring/{id} | Update a recurring subscription
266-
SubscriptionsApi | updateSubscriptionInstallment | **PUT** /subscriptions/installment/{id} | Update an installment subscription
267258
TasksApi | addTask | **POST** /tasks | Add a task
268259
TasksApi | deleteTask | **DELETE** /tasks/{id} | Delete a task
269260
TasksApi | getTask | **GET** /tasks/{id} | Get details of a task

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pipedrive",
3-
"version": "28.0.2",
3+
"version": "29.0.0",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v1/api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export * from './api/projects-api';
4949
export * from './api/recents-api';
5050
export * from './api/roles-api';
5151
export * from './api/stages-api';
52-
export * from './api/subscriptions-api';
5352
export * from './api/tasks-api';
5453
export * from './api/user-connections-api';
5554
export * from './api/user-settings-api';

src/versions/v1/models/index.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export * from './add-product-request-all-of2';
7878
export * from './add-project-request';
7979
export * from './add-project-request-all-of';
8080
export * from './add-project-response';
81-
export * from './add-recurring-subscription-request';
8281
export * from './add-remote-file-and-link-it-to-item-response';
8382
export * from './add-role-assignment-request';
8483
export * from './add-role-assignment-response';
@@ -89,7 +88,6 @@ export * from './add-roles-response';
8988
export * from './add-roles-response-all-of';
9089
export * from './add-roles-response-data';
9190
export * from './add-stage-request';
92-
export * from './add-subscription-installment-request';
9391
export * from './add-task-request';
9492
export * from './add-task-response';
9593
export * from './add-team-request';
@@ -138,7 +136,6 @@ export * from './call-log-forbidden-response';
138136
export * from './call-log-gone-response';
139137
export * from './call-log-internal-error-response';
140138
export * from './call-log-not-found-response';
141-
export * from './cancel-recurring-subscription-request';
142139
export * from './comment';
143140
export * from './comment-post-put-object';
144141
export * from './create-field-request';
@@ -438,9 +435,6 @@ export * from './get-organizations-response';
438435
export * from './get-organizations-response-all-of';
439436
export * from './get-organizations-response-all-of-related-objects';
440437
export * from './get-participants-changelog-response';
441-
export * from './get-payments-response';
442-
export * from './get-payments-response-all-of';
443-
export * from './get-payments-response-all-of-data-inner';
444438
export * from './get-permission-set-response';
445439
export * from './get-permission-set-response-all-of';
446440
export * from './get-permission-sets-response';
@@ -548,8 +542,6 @@ export * from './get-stages-response';
548542
export * from './get-stages-response-data-inner';
549543
export * from './get-subscription-addons-response';
550544
export * from './get-subscription-addons-response-all-of';
551-
export * from './get-subscriptions-id-response';
552-
export * from './get-subscriptions-id-response-data';
553545
export * from './get-task-response';
554546
export * from './get-tasks-response';
555547
export * from './get-team-response';
@@ -732,7 +724,6 @@ export * from './stage';
732724
export * from './stage-with-pipeline-info';
733725
export * from './sub-role';
734726
export * from './sub-role-all-of';
735-
export * from './subscription-item';
736727
export * from './task-response-object';
737728
export * from './task-response-object-all-of';
738729
export * from './team-id';
@@ -777,13 +768,11 @@ export * from './update-project-request1-all-of1';
777768
export * from './update-project-request1-all-of2';
778769
export * from './update-project-request2';
779770
export * from './update-project-response';
780-
export * from './update-recurring-subscription-request';
781771
export * from './update-role-response';
782772
export * from './update-role-response-all-of';
783773
export * from './update-role-response-data';
784774
export * from './update-stage-request';
785775
export * from './update-stage-request-all-of';
786-
export * from './update-subscription-installment-request';
787776
export * from './update-task-plan-item-response';
788777
export * from './update-task-response';
789778
export * from './update-team-request';

0 commit comments

Comments
 (0)