Skip to content

Commit a0983f1

Browse files
Revert "Build 255 - version-major"
1 parent 4295944 commit a0983f1

File tree

4 files changed

+21
-11
lines changed

4 files changed

+21
-11
lines changed

CHANGELOG.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,6 @@ 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-
### Removed
11-
- Removed all endpoints of the Subscriptions feature
12-
- GET /v1/subscriptions/{id}
13-
- GET /v1/subscriptions/find/{dealId}
14-
- GET /v1/subscriptions/{id}/payments
15-
- POST /v1/subscriptions/recurring
16-
- POST /v1/subscriptions/installment
17-
- PUT /v1/subscriptions/recurring/{id}
18-
- PUT /v1/subscriptions/installment/{id}
19-
- PUT /v1/subscriptions/recurring/{id}/cancel
20-
- DELETE /v1/subscriptions/{id}
2110

2211
## [28.0.2] - 2025-07-07
2312
### Added

docs/v1.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,15 @@ 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
258267
TasksApi | addTask | **POST** /tasks | Add a task
259268
TasksApi | deleteTask | **DELETE** /tasks/{id} | Delete a task
260269
TasksApi | getTask | **GET** /tasks/{id} | Get details of a task

src/versions/v1/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ 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';
5253
export * from './api/tasks-api';
5354
export * from './api/user-connections-api';
5455
export * from './api/user-settings-api';

src/versions/v1/models/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ 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';
8182
export * from './add-remote-file-and-link-it-to-item-response';
8283
export * from './add-role-assignment-request';
8384
export * from './add-role-assignment-response';
@@ -88,6 +89,7 @@ export * from './add-roles-response';
8889
export * from './add-roles-response-all-of';
8990
export * from './add-roles-response-data';
9091
export * from './add-stage-request';
92+
export * from './add-subscription-installment-request';
9193
export * from './add-task-request';
9294
export * from './add-task-response';
9395
export * from './add-team-request';
@@ -136,6 +138,7 @@ export * from './call-log-forbidden-response';
136138
export * from './call-log-gone-response';
137139
export * from './call-log-internal-error-response';
138140
export * from './call-log-not-found-response';
141+
export * from './cancel-recurring-subscription-request';
139142
export * from './comment';
140143
export * from './comment-post-put-object';
141144
export * from './create-field-request';
@@ -435,6 +438,9 @@ export * from './get-organizations-response';
435438
export * from './get-organizations-response-all-of';
436439
export * from './get-organizations-response-all-of-related-objects';
437440
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';
438444
export * from './get-permission-set-response';
439445
export * from './get-permission-set-response-all-of';
440446
export * from './get-permission-sets-response';
@@ -542,6 +548,8 @@ export * from './get-stages-response';
542548
export * from './get-stages-response-data-inner';
543549
export * from './get-subscription-addons-response';
544550
export * from './get-subscription-addons-response-all-of';
551+
export * from './get-subscriptions-id-response';
552+
export * from './get-subscriptions-id-response-data';
545553
export * from './get-task-response';
546554
export * from './get-tasks-response';
547555
export * from './get-team-response';
@@ -724,6 +732,7 @@ export * from './stage';
724732
export * from './stage-with-pipeline-info';
725733
export * from './sub-role';
726734
export * from './sub-role-all-of';
735+
export * from './subscription-item';
727736
export * from './task-response-object';
728737
export * from './task-response-object-all-of';
729738
export * from './team-id';
@@ -768,11 +777,13 @@ export * from './update-project-request1-all-of1';
768777
export * from './update-project-request1-all-of2';
769778
export * from './update-project-request2';
770779
export * from './update-project-response';
780+
export * from './update-recurring-subscription-request';
771781
export * from './update-role-response';
772782
export * from './update-role-response-all-of';
773783
export * from './update-role-response-data';
774784
export * from './update-stage-request';
775785
export * from './update-stage-request-all-of';
786+
export * from './update-subscription-installment-request';
776787
export * from './update-task-plan-item-response';
777788
export * from './update-task-response';
778789
export * from './update-team-request';

0 commit comments

Comments
 (0)