ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.405.6

This commit is contained in:
speakeasybot
2025-01-28 00:08:59 +00:00
parent 52c21e2ba6
commit 3b5e642d82
12 changed files with 70 additions and 60 deletions

View File

@@ -3,17 +3,17 @@
import Foundation
extension Operations {
/// Setting that indicates the episode ordering for the show
/// 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)).
/// aired = TheTVDB (Aired),
/// dvd = TheTVDB (DVD),
/// absolute = TheTVDB (Absolute)).
///
public enum GetLibraryItemsShowOrdering: String, Codable, APIValue {
case `none` = "None"
case tmdbAiring = "tmdbAiring"
case tvdbAiring = "tvdbAiring"
case tvdbDvd = "tvdbDvd"
case tvdbAbsolute = "tvdbAbsolute"
case tvdbAired = "aired"
case tvdbDvd = "dvd"
case tvdbAbsolute = "absolute"
}}