From 7cab178c710af8fab3d435029e3924dcca5acc2c Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Fri, 18 Jul 2025 19:40:46 +1000 Subject: [PATCH] Removed unused types --- providers/Downloads/types.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/providers/Downloads/types.ts b/providers/Downloads/types.ts index 833d9144..b9b9b47e 100644 --- a/providers/Downloads/types.ts +++ b/providers/Downloads/types.ts @@ -22,20 +22,6 @@ interface UserData { audioStreamIndex: number; } -export interface SyncPolicy { - type: "series" | "movie"; - id: string; // SeriesId or MovieId - rule: "next_unwatched" | "all"; - limit?: number; -} - -export enum SyncStatus { - SYNCED = "synced", - PENDING_DOWNLOAD = "pending_download", - PENDING_DELETION = "pending_deletion", - ERROR = "error", -} - /** Represents a segment of time in a media item, used for intro/credit skipping. */ export interface MediaTimeSegment { startTime: number; @@ -108,5 +94,4 @@ export interface DownloadsDatabase { movies: Record; /** A map of series IDs to their downloaded series data. */ series: Record; - syncPolicies: SyncPolicy[]; }