Skip to content

Commit

Permalink
feat(mgmt): add new TEAM_PRO subscription plan (#323)
Browse files Browse the repository at this point in the history
Because

- We're going to provide a new pricing plan TEAM PRO.

This commit

- Adds new TEAM_PRO subscription plan.

---------

Co-authored-by: droplet-bot <[email protected]>
  • Loading branch information
donch1989 and droplet-bot authored May 13, 2024
1 parent cc193e7 commit 6e4f7c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions core/mgmt/v1beta/mgmt.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1080,12 +1080,14 @@ message OrganizationSubscription {
enum Plan {
// Unspecified plan.
PLAN_UNSPECIFIED = 0;
// Freemium plan.
PLAN_FREEMIUM = 1;
// Deleted plan.
reserved 1;
// Team plan.
PLAN_TEAM = 2;
// Enterprise plan.
PLAN_ENTERPRISE = 3;
// Team pro plan.
PLAN_TEAM_PRO = 4;
}

// Plan identifier.
Expand Down
4 changes: 2 additions & 2 deletions openapiv2/core/service.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2472,15 +2472,15 @@ definitions:
v1betaOrganizationSubscriptionPlan:
type: string
enum:
- PLAN_FREEMIUM
- PLAN_TEAM
- PLAN_ENTERPRISE
- PLAN_TEAM_PRO
description: |-
Enumerates the plan types for the organization subscription.
- PLAN_FREEMIUM: Freemium plan.
- PLAN_TEAM: Team plan.
- PLAN_ENTERPRISE: Enterprise plan.
- PLAN_TEAM_PRO: Team pro plan.
v1betaOwnerType:
type: string
enum:
Expand Down

0 comments on commit 6e4f7c9

Please sign in to comment.