ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.636.3

This commit is contained in:
speakeasybot
2025-10-13 00:03:17 +00:00
parent 5379e2aa2c
commit 7e592152f3
8 changed files with 27 additions and 18 deletions

File diff suppressed because one or more lines are too long

View File

@@ -22,7 +22,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
python:
version: 0.31.0
version: 0.31.1
additionalDependencies:
dev: {}
main: {}

View File

@@ -8,20 +8,20 @@ sources:
- latest
plexapi:
sourceNamespace: plexapi
sourceRevisionDigest: sha256:bc60551015634fd59475cf17983ca3aedcab591426d526ab1e3634b1feedaec1
sourceBlobDigest: sha256:fc8cd5343a94564b646830738f38e065d61e2ea63e4a1383ce07533586889950
sourceRevisionDigest: sha256:0e9f7ca03e6a970d7b77654ab41d0a1605f0105871db2630a7afc85d4362b624
sourceBlobDigest: sha256:c0a6079f21e9d8cf8b3a205d2da333b78b2cb7e0db9dd895a41c68c2580e2d64
tags:
- latest
- speakeasy-sdk-regen-1760251608
- speakeasy-sdk-regen-1760313692
- 1.1.1
targets:
plexpy:
source: plexapi
sourceNamespace: plexapi
sourceRevisionDigest: sha256:bc60551015634fd59475cf17983ca3aedcab591426d526ab1e3634b1feedaec1
sourceBlobDigest: sha256:fc8cd5343a94564b646830738f38e065d61e2ea63e4a1383ce07533586889950
sourceRevisionDigest: sha256:0e9f7ca03e6a970d7b77654ab41d0a1605f0105871db2630a7afc85d4362b624
sourceBlobDigest: sha256:c0a6079f21e9d8cf8b3a205d2da333b78b2cb7e0db9dd895a41c68c2580e2d64
codeSamplesNamespace: code-samples-python-plexpy
codeSamplesRevisionDigest: sha256:ca94b40bc7e8f4d1efaf6c859f08d6ea17a0d50907c4d0adc7a2e6609f28d0dc
codeSamplesRevisionDigest: sha256:ef94fd945c9ba9164051956a6495266df49f6565208eb2cdb415b0a47cb4368e
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest

View File

@@ -756,7 +756,7 @@ You can override the default server globally by passing a server index to the `s
| --- | ---------------------------------------------------------- | -------------------------------------------- | ----------- |
| 0 | `https://{IP-description}.{identifier}.plex.direct:{port}` | `identifier`<br/>`IP-description`<br/>`port` | |
| 1 | `{protocol}://{host}:{port}` | `protocol`<br/>`host`<br/>`port` | |
| 2 | `https://{server_url}` | `server_url` | |
| 2 | `https://{full_server_url}` | `server_url` | |
If the selected server has variables, you may override its default values through the additional parameters made available in the SDK constructor:
@@ -813,7 +813,7 @@ from plex_api_client.models import components
with PlexAPI(
server_url="https://http://localhost:32400",
server_url="https://{full_server_url}",
accepts=components.Accepts.APPLICATION_XML,
client_identifier="abc123",
product="Plex for Roku",

View File

@@ -1109,3 +1109,13 @@ Based on:
- [python v0.31.0] .
### Releases
- [PyPI v0.31.0] https://pypi.org/project/plex-api-client/0.31.0 - .
## 2025-10-13 00:01:12
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.636.3 (2.723.11) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.31.1] .
### Releases
- [PyPI v0.31.1] https://pypi.org/project/plex-api-client/0.31.1 - .

View File

@@ -1,7 +1,7 @@
[project]
name = "plex-api-client"
version = "0.31.0"
version = "0.31.1"
description = "Python Client SDK Generated by Speakeasy"
authors = [{ name = "Speakeasy" },]
readme = "README-PYPI.md"

View File

@@ -3,10 +3,10 @@
import importlib.metadata
__title__: str = "plex-api-client"
__version__: str = "0.31.0"
__version__: str = "0.31.1"
__openapi_doc_version__: str = "1.1.1"
__gen_version__: str = "2.723.11"
__user_agent__: str = "speakeasy-sdk/python 0.31.0 2.723.11 1.1.1 plex-api-client"
__user_agent__: str = "speakeasy-sdk/python 0.31.1 2.723.11 1.1.1 plex-api-client"
try:
if __package__ is not None:

View File

@@ -18,7 +18,7 @@ from typing import Callable, Dict, List, Optional, Tuple, Union
SERVERS = [
"https://{IP-description}.{identifier}.plex.direct:{port}",
"{protocol}://{host}:{port}",
"https://{server_url}",
"https://{full_server_url}",
]
"""Contains the list of servers available to the SDK"""