ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.488.0

This commit is contained in:
speakeasybot
2025-02-11 00:02:44 +00:00
parent ee0e41ac6e
commit aeb8aa9fdb
94 changed files with 3324 additions and 297 deletions

View File

@@ -14,7 +14,6 @@ from typing_extensions import Annotated, NotRequired, TypedDict
class Tag(str, Enum):
r"""A key representing a specific tag within the section."""
ALL = "all"
UNWATCHED = "unwatched"
NEWEST = "newest"
RECENTLY_ADDED = "recentlyAdded"
@@ -22,12 +21,9 @@ class Tag(str, Enum):
ON_DECK = "onDeck"
COLLECTION = "collection"
EDITION = "edition"
GENRE = "genre"
YEAR = "year"
DECADE = "decade"
DIRECTOR = "director"
ACTOR = "actor"
COUNTRY = "country"
CONTENT_RATING = "contentRating"
RATING = "rating"
RESOLUTION = "resolution"
@@ -184,6 +180,7 @@ class GetLibraryItemsFilterTypedDict(TypedDict):
key: str
title: str
type: str
advanced: NotRequired[bool]
class GetLibraryItemsFilter(BaseModel):
@@ -197,6 +194,8 @@ class GetLibraryItemsFilter(BaseModel):
type: str
advanced: Optional[bool] = None
class GetLibraryItemsActiveDirection(str, Enum):
r"""The direction of the sort. Can be either `asc` or `desc`."""
@@ -283,6 +282,7 @@ class GetLibraryItemsTypeTypedDict(TypedDict):
type: str
title: str
active: bool
subtype: NotRequired[str]
filter_: NotRequired[List[GetLibraryItemsFilterTypedDict]]
sort: NotRequired[List[GetLibraryItemsSortTypedDict]]
field: NotRequired[List[GetLibraryItemsFieldTypedDict]]
@@ -297,6 +297,8 @@ class GetLibraryItemsType(BaseModel):
active: bool
subtype: Optional[str] = None
filter_: Annotated[
Optional[List[GetLibraryItemsFilter]], pydantic.Field(alias="Filter")
] = None
@@ -339,6 +341,8 @@ class GetLibraryItemsLibraryType(str, Enum):
TV_SHOW = "show"
SEASON = "season"
EPISODE = "episode"
ARTIST = "artist"
ALBUM = "album"
class GetLibraryItemsFlattenSeasons(str, Enum):