ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.405.6

This commit is contained in:
speakeasybot
2024-12-21 00:08:57 +00:00
parent ec06ec9a84
commit 0e54599d71
35 changed files with 174 additions and 186 deletions

View File

@@ -3,17 +3,17 @@
import Foundation
extension Operations {
/// Setting that indicates the episode ordering for the show
/// None = Library default,
/// tmdbAiring = The Movie Database (Aired),
/// aired = TheTVDB (Aired),
/// dvd = TheTVDB (DVD),
/// absolute = TheTVDB (Absolute)).
/// Setting that indicates the episode ordering for the show
/// None = Library default,
/// tmdbAiring = The Movie Database (Aired),
/// tvdbAiring = TheTVDB (Aired),
/// tvdbDvd = TheTVDB (DVD),
/// tvdbAbsolute = TheTVDB (Absolute)).
///
public enum GetSearchAllLibrariesShowOrdering: String, Codable, APIValue {
case `none` = "None"
case tmdbAiring = "tmdbAiring"
case aired = "aired"
case dvd = "dvd"
case absolute = "absolute"
case tvdbAiring = "tvdbAiring"
case tvdbDvd = "tvdbDvd"
case tvdbAbsolute = "tvdbAbsolute"
}}