ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.487.1

This commit is contained in:
speakeasybot
2025-02-08 00:02:43 +00:00
parent ee4b86e528
commit ee0e41ac6e
92 changed files with 2920 additions and 1205 deletions

View File

@@ -44,7 +44,7 @@ class IncludeGuids(int, Enum):
class GetLibraryItemsQueryParamType(int, Enum):
r"""The type of media to retrieve.
r"""The type of media to retrieve or filter by.
1 = movie
2 = show
3 = season
@@ -72,6 +72,15 @@ class GetLibraryItemsQueryParamIncludeMeta(int, Enum):
class GetLibraryItemsRequestTypedDict(TypedDict):
tag: Tag
r"""A key representing a specific tag within the section."""
type: GetLibraryItemsQueryParamType
r"""The type of media to retrieve or filter by.
1 = movie
2 = show
3 = season
4 = episode
E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries
"""
section_key: int
r"""The unique key of the Plex library.
Note: This is unique in the context of the Plex server.
@@ -80,15 +89,6 @@ class GetLibraryItemsRequestTypedDict(TypedDict):
include_guids: NotRequired[IncludeGuids]
r"""Adds the Guids object to the response
"""
type: NotRequired[GetLibraryItemsQueryParamType]
r"""The type of media to retrieve.
1 = movie
2 = show
3 = season
4 = episode
E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries
"""
include_meta: NotRequired[GetLibraryItemsQueryParamIncludeMeta]
r"""Adds the Meta object to the response
@@ -114,6 +114,19 @@ class GetLibraryItemsRequest(BaseModel):
]
r"""A key representing a specific tag within the section."""
type: Annotated[
GetLibraryItemsQueryParamType,
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
]
r"""The type of media to retrieve or filter by.
1 = movie
2 = show
3 = season
4 = episode
E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries
"""
section_key: Annotated[
int,
pydantic.Field(alias="sectionKey"),
@@ -133,19 +146,6 @@ class GetLibraryItemsRequest(BaseModel):
"""
type: Annotated[
Optional[GetLibraryItemsQueryParamType],
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
] = None
r"""The type of media to retrieve.
1 = movie
2 = show
3 = season
4 = episode
E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries
"""
include_meta: Annotated[
Optional[GetLibraryItemsQueryParamIncludeMeta],
pydantic.Field(alias="includeMeta"),