Update Sonarr & Lidarr Structs to match latest API changes (#231)
* Add support for estimatedCompletionTime in LidarrQueue * Add support for tvdbId in SonarrEpisode struct
This commit is contained in:
parent
2f7f01edbb
commit
731808544d
1 changed files with 2 additions and 0 deletions
|
@ -255,6 +255,7 @@ class SonarrEpisode(NamedTuple):
|
||||||
sceneEpisodeNumber: int = None
|
sceneEpisodeNumber: int = None
|
||||||
sceneSeasonNumber: int = None
|
sceneSeasonNumber: int = None
|
||||||
series: SonarrTVShow = None
|
series: SonarrTVShow = None
|
||||||
|
tvdbId: int = None
|
||||||
|
|
||||||
|
|
||||||
class SonarrQueue(NamedTuple):
|
class SonarrQueue(NamedTuple):
|
||||||
|
@ -606,6 +607,7 @@ class LidarrQueue(NamedTuple):
|
||||||
outputPath: str = None
|
outputPath: str = None
|
||||||
downloadForced: bool = None
|
downloadForced: bool = None
|
||||||
id: int = None
|
id: int = None
|
||||||
|
estimatedCompletionTime: str = None
|
||||||
|
|
||||||
|
|
||||||
class LidarrAlbum(NamedTuple):
|
class LidarrAlbum(NamedTuple):
|
||||||
|
|
Loading…
Reference in a new issue