Fix Sonarr TV request policy and bump gateway to 0.1.40

This commit is contained in:
ponzischeme89
2026-08-14 10:30:25 +12:00
parent 5e2ed3d12e
commit 19f08e6293
11 changed files with 366 additions and 29 deletions
+15
View File
@@ -377,6 +377,21 @@ export interface IntegrationsResponse {
dropped: number;
}
export interface SonarrProfileOption {
id: number;
name: string;
recommended: boolean;
}
export interface SonarrRequestPolicy {
qualityProfileId: number;
searchImmediately: boolean;
profiles: SonarrProfileOption[];
recommendedId: number;
configured: boolean;
error?: string;
}
/* ---------- logs ---------- */
export interface LogEvent {