feat: few adjustments

This commit is contained in:
Zamitto
2025-01-12 11:00:20 -03:00
parent db2e31b8cc
commit b1dde446b2
3 changed files with 11 additions and 7 deletions

View File

@@ -163,7 +163,7 @@ export interface UserPreferences {
repackUpdatesNotificationsEnabled: boolean;
achievementNotificationsEnabled: boolean;
realDebridApiToken: string | null;
torboxApiToken: string | null;
torBoxApiToken: string | null;
preferQuitInsteadOfHiding: boolean;
runAtStartup: boolean;
startMinimized: boolean;

View File

@@ -54,14 +54,14 @@ export interface TorBoxTorrentInfo {
export interface TorBoxTorrentInfoRequest {
success: boolean;
detail: string;
error: string;
error: string | null;
data: TorBoxTorrentInfo[];
}
export interface TorBoxAddTorrentRequest {
success: boolean;
detail: string;
error: string;
error: string | null;
data: {
torrent_id: number;
name: string;