Merge branch 'main' into feat/reviews-and-commenting

This commit is contained in:
Moyase
2025-10-02 19:08:34 +03:00
committed by GitHub
40 changed files with 1943 additions and 50 deletions

View File

@@ -175,3 +175,11 @@ export interface SeedingStatus {
status: DownloadStatus;
uploadSpeed: number;
}
/* All-Debrid */
export interface AllDebridUser {
username: string;
email: string;
isPremium: boolean;
premiumUntil: string;
}

View File

@@ -95,9 +95,11 @@ export type AchievementCustomNotificationPosition =
export interface UserPreferences {
downloadsPath?: string | null;
ggDealsApiKey?: string | null;
language?: string;
realDebridApiToken?: string | null;
torBoxApiToken?: string | null;
allDebridApiKey?: string | null;
preferQuitInsteadOfHiding?: boolean;
runAtStartup?: boolean;
startMinimized?: boolean;