Skip to content

Commit

Permalink
feat: add PLAN_UNPAID type into subscription plan (#1264)
Browse files Browse the repository at this point in the history
Because

- add PLAN_UNPAID type into subscription plan

This commit

- add PLAN_UNPAID type into subscription plan
  • Loading branch information
EiffelFly authored Jun 27, 2024
1 parent a1467f7 commit 9a02027
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@instill-ai/toolkit",
"version": "0.95.0-rc.4",
"version": "0.95.0-rc.5",
"description": "Instill AI's frontend toolkit",
"repository": "https://github.com/instill-ai/design-system.git",
"bugs": "https://github.com/instill-ai/design-system/issues",
Expand Down
3 changes: 2 additions & 1 deletion packages/toolkit/src/lib/vdp-sdk/mgmt/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export type User = {
export type UserSubscriptionPlan =
| "PLAN_UNSPECIFIED"
| "PLAN_FREEMIUM"
| "PLAN_STARTER";
| "PLAN_STARTER"
| "PLAN_UNPAID";

export type UserSubscription = {
plan: UserSubscriptionPlan;
Expand Down
3 changes: 2 additions & 1 deletion packages/toolkit/src/lib/vdp-sdk/organization/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export type OrganizationSubscriptionPlan =
| "PLAN_FREEMIUM"
| "PLAN_TEAM"
| "PLAN_TEAM_PRO"
| "PLAN_ENTERPRISE";
| "PLAN_ENTERPRISE"
| "PLAN_UNPAID";

export type OrganizationSubscription = {
plan: OrganizationSubscriptionPlan;
Expand Down

0 comments on commit 9a02027

Please sign in to comment.