feat: adding artifact limit

This commit is contained in:
Chubby Granny Chaser 2024-10-21 19:19:18 +01:00
parent 2599b332fd
commit 34a33ccef3
No known key found for this signature in database
24 changed files with 290 additions and 255 deletions

View file

@ -237,7 +237,7 @@ export type SubscriptionStatus = "active" | "pending" | "cancelled";
export interface Subscription {
id: string;
status: SubscriptionStatus;
plan: { id: string; name: string };
plan: { id: string; name: "basic" | "plus" };
expiresAt: Date | null;
}

View file

@ -1,6 +1,7 @@
export interface LudusaviScanChange {
change: "New" | "Different" | "Removed" | "Same" | "Unknown";
decision: "Processed" | "Cancelled" | "Ignore";
bytes: number;
}
export interface LudusaviGame extends LudusaviScanChange {