Skip to content

Commit 65e2bc8

Browse files
authored
feat(cockpit): add new Expert plan on v1Beta1 (#2024)
1 parent 693af0e commit 65e2bc8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

api/cockpit/v1beta1/cockpit_sdk.go

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,13 @@ type PlanName string
265265

266266
const (
267267
PlanNameUnknownName = PlanName("unknown_name")
268-
PlanNameFree = PlanName("free")
269-
PlanNamePremium = PlanName("premium")
270-
PlanNameCustom = PlanName("custom")
268+
// The free plan is the default plan.
269+
PlanNameFree = PlanName("free")
270+
// The premium plan with a longer retention.
271+
PlanNamePremium = PlanName("premium")
272+
PlanNameCustom = PlanName("custom")
273+
// The expert plan with the longest retention.
274+
PlanNameExpert = PlanName("expert")
271275
)
272276

273277
func (enum PlanName) String() string {

0 commit comments

Comments
 (0)