mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: adding artifact limit
This commit is contained in:
parent
2599b332fd
commit
34a33ccef3
24 changed files with 290 additions and 255 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
export interface LudusaviScanChange {
|
||||
change: "New" | "Different" | "Removed" | "Same" | "Unknown";
|
||||
decision: "Processed" | "Cancelled" | "Ignore";
|
||||
bytes: number;
|
||||
}
|
||||
|
||||
export interface LudusaviGame extends LudusaviScanChange {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue