feat: adding artifact limit

This commit is contained in:
Chubby Granny Chaser 2024-10-21 19:21:25 +01:00
parent 34a33ccef3
commit af8468066a
No known key found for this signature in database

View file

@ -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;
}