From af8468066a66dac77344ad856331163b7f904436 Mon Sep 17 00:00:00 2001 From: Chubby Granny Chaser Date: Mon, 21 Oct 2024 19:21:25 +0100 Subject: [PATCH] feat: adding artifact limit --- src/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/index.ts b/src/types/index.ts index 2f6746f4..c3a91053 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -237,7 +237,7 @@ export type SubscriptionStatus = "active" | "pending" | "cancelled"; export interface Subscription { id: string; status: SubscriptionStatus; - plan: { id: string; name: "basic" | "plus" }; + plan: { id: string; name: string }; expiresAt: Date | null; }