mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import ModelBase from 'App/ModelBase';
|
|
import DownloadProtocol from 'DownloadClient/DownloadProtocol';
|
|
import Episode from 'Episode/Episode';
|
|
import Language from 'Language/Language';
|
|
import { QualityModel } from 'Quality/Quality';
|
|
import CustomFormat from 'typings/CustomFormat';
|
|
|
|
export type QueueTrackedDownloadStatus = 'ok' | 'warning' | 'error';
|
|
|
|
export type QueueTrackedDownloadState =
|
|
| 'downloading'
|
|
| 'importBlocked'
|
|
| 'importPending'
|
|
| 'importing'
|
|
| 'imported'
|
|
| 'failedPending'
|
|
| 'failed'
|
|
| 'ignored';
|
|
|
|
export interface StatusMessage {
|
|
title: string;
|
|
messages: string[];
|
|
}
|
|
|
|
interface Queue extends ModelBase {
|
|
languages: Language[];
|
|
quality: QualityModel;
|
|
customFormats: CustomFormat[];
|
|
customFormatScore: number;
|
|
size: number;
|
|
title: string;
|
|
sizeleft: number;
|
|
timeleft: string;
|
|
estimatedCompletionTime: string;
|
|
added?: string;
|
|
status: string;
|
|
trackedDownloadStatus: QueueTrackedDownloadStatus;
|
|
trackedDownloadState: QueueTrackedDownloadState;
|
|
statusMessages: StatusMessage[];
|
|
errorMessage: string;
|
|
downloadId: string;
|
|
protocol: DownloadProtocol;
|
|
downloadClient: string;
|
|
outputPath: string;
|
|
episodeHasFile: boolean;
|
|
seriesId?: number;
|
|
episodeId?: number;
|
|
seasonNumber?: number;
|
|
downloadClientHasPostImportCategory: boolean;
|
|
episode?: Episode;
|
|
}
|
|
|
|
export default Queue;
|