ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.459.2

This commit is contained in:
speakeasybot
2024-12-23 00:02:26 +00:00
parent e6c93bcf32
commit f1f4ba1876
9 changed files with 72 additions and 54 deletions

View File

@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 3eeea668-4ef4-464e-a888-bdfa023bedf5
management:
docChecksum: 48a69156b6fa2af10cd43e971790441b
docChecksum: 1aad3e9216e8a6eb638f23d09b6c235a
docVersion: 0.0.3
speakeasyVersion: 1.459.2
generationVersion: 2.483.1
releaseVersion: 0.20.0
configChecksum: d2358931157d7fa7e52e620a078dc77f
releaseVersion: 0.20.1
configChecksum: 9612b6820aed013643c6de9c57c32879
repoURL: https://github.com/LukeHagar/plexpy.git
repoSubDirectory: .
installationURL: https://github.com/LukeHagar/plexpy.git

View File

@@ -13,7 +13,7 @@ generation:
oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: false
python:
version: 0.20.0
version: 0.20.1
additionalDependencies:
dev: {}
main: {}

View File

@@ -8,19 +8,19 @@ sources:
- latest
plexapi:
sourceNamespace: plexapi
sourceRevisionDigest: sha256:ccba0c42f1644923e2209e28da7a78195a843e48da1aeaaedbf8759f1a8a0fe0
sourceBlobDigest: sha256:b362c110ef633288220a55ab50627374b996c64f2d9b8e020944e84ea2840332
sourceRevisionDigest: sha256:28e2213b78ff9c789846a4a0b7ab9fb219079a1699d44b22d28474efc4f48eac
sourceBlobDigest: sha256:fa76c39de0ff801844dd56a76c26ab6ca88695fc9b42bb9ff9a8aab5b2b21277
tags:
- latest
- speakeasy-sdk-regen-1734739316
- speakeasy-sdk-regen-1734912075
targets:
plexpy:
source: plexapi
sourceNamespace: plexapi
sourceRevisionDigest: sha256:ccba0c42f1644923e2209e28da7a78195a843e48da1aeaaedbf8759f1a8a0fe0
sourceBlobDigest: sha256:b362c110ef633288220a55ab50627374b996c64f2d9b8e020944e84ea2840332
sourceRevisionDigest: sha256:28e2213b78ff9c789846a4a0b7ab9fb219079a1699d44b22d28474efc4f48eac
sourceBlobDigest: sha256:fa76c39de0ff801844dd56a76c26ab6ca88695fc9b42bb9ff9a8aab5b2b21277
codeSamplesNamespace: code-samples-python-plexpy
codeSamplesRevisionDigest: sha256:6535e67dae5267bdd609e15a94155f8793e0e60698458cefbd49b01294bd0fca
codeSamplesRevisionDigest: sha256:b36e3f231c3498bc845baf97f563835cf4f034c32f97ff2e8045c36af3d6c2e9
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest

View File

@@ -879,3 +879,13 @@ Based on:
- [python v0.20.0] .
### Releases
- [PyPI v0.20.0] https://pypi.org/project/plex-api-client/0.20.0 - .
## 2024-12-23 00:01:12
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.459.2 (2.483.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.20.1] .
### Releases
- [PyPI v0.20.1] https://pypi.org/project/plex-api-client/0.20.1 - .

View File

@@ -4,7 +4,7 @@
## Fields
| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
| --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| `added_at` | *Optional[int]* | :heavy_minus_sign: | N/A | 1705543312 |
| `art` | *Optional[str]* | :heavy_minus_sign: | N/A | /library/metadata/39904/art/1705310687 |
| `duration` | *Optional[int]* | :heavy_minus_sign: | N/A | 186240 |
@@ -21,6 +21,7 @@
| `library_section_key` | *Optional[str]* | :heavy_minus_sign: | N/A | /library/sections/3 |
| `library_section_title` | *Optional[str]* | :heavy_minus_sign: | N/A | Music |
| `music_analysis_version` | *Optional[str]* | :heavy_minus_sign: | N/A | 1 |
| `original_title` | *Optional[str]* | :heavy_minus_sign: | The original untranslated name of the media item when non-english, or the track artist if an audio Item has an album artist | The American Dream Is Killing Me |
| `parent_guid` | *Optional[str]* | :heavy_minus_sign: | N/A | plex://album/65394d6d472b8ab03ef47f12 |
| `parent_index` | *Optional[int]* | :heavy_minus_sign: | N/A | 1 |
| `parent_key` | *Optional[str]* | :heavy_minus_sign: | N/A | /library/metadata/67084 |

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "plex-api-client"
version = "0.20.0"
version = "0.20.1"
description = "Python Client SDK Generated by Speakeasy"
authors = ["Speakeasy",]
readme = "README-PYPI.md"

View File

@@ -3,7 +3,7 @@
import importlib.metadata
__title__: str = "plex-api-client"
__version__: str = "0.20.0"
__version__: str = "0.20.1"
try:
if __package__ is not None:

View File

@@ -248,6 +248,8 @@ class GetSessionsMetadataTypedDict(TypedDict):
library_section_key: NotRequired[str]
library_section_title: NotRequired[str]
music_analysis_version: NotRequired[str]
original_title: NotRequired[str]
r"""The original untranslated name of the media item when non-english, or the track artist if an audio Item has an album artist"""
parent_guid: NotRequired[str]
parent_index: NotRequired[int]
parent_key: NotRequired[str]
@@ -324,6 +326,11 @@ class GetSessionsMetadata(BaseModel):
Optional[str], pydantic.Field(alias="musicAnalysisVersion")
] = None
original_title: Annotated[Optional[str], pydantic.Field(alias="originalTitle")] = (
None
)
r"""The original untranslated name of the media item when non-english, or the track artist if an audio Item has an album artist"""
parent_guid: Annotated[Optional[str], pydantic.Field(alias="parentGuid")] = None
parent_index: Annotated[Optional[int], pydantic.Field(alias="parentIndex")] = None

View File

@@ -38,9 +38,9 @@ class SDKConfiguration:
server_defaults: List[Dict[str, str]] = field(default_factory=List)
language: str = "python"
openapi_doc_version: str = "0.0.3"
sdk_version: str = "0.20.0"
sdk_version: str = "0.20.1"
gen_version: str = "2.483.1"
user_agent: str = "speakeasy-sdk/python 0.20.0 2.483.1 0.0.3 plex-api-client"
user_agent: str = "speakeasy-sdk/python 0.20.1 2.483.1 0.0.3 plex-api-client"
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
timeout_ms: Optional[int] = None