ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.241.0

This commit is contained in:
speakeasybot
2024-04-06 01:11:52 +00:00
parent 63685ae322
commit 98112f9e28
21 changed files with 56 additions and 30 deletions

View File

@@ -3,10 +3,10 @@ id: 3eeea668-4ef4-464e-a888-bdfa023bedf5
management: management:
docChecksum: a91eaf9ec1e6a3a6f4bf0571f5b18bae docChecksum: a91eaf9ec1e6a3a6f4bf0571f5b18bae
docVersion: 0.0.3 docVersion: 0.0.3
speakeasyVersion: 1.235.2 speakeasyVersion: 1.241.0
generationVersion: 2.298.2 generationVersion: 2.300.0
releaseVersion: 0.6.1 releaseVersion: 0.6.2
configChecksum: 4b8d54de072a6cbeed3abbf44f6426db configChecksum: 851d34f876d9ce54e1b12fc835ec6001
repoURL: https://github.com/LukeHagar/plexpy.git repoURL: https://github.com/LukeHagar/plexpy.git
repoSubDirectory: . repoSubDirectory: .
installationURL: https://github.com/LukeHagar/plexpy.git installationURL: https://github.com/LukeHagar/plexpy.git
@@ -14,7 +14,7 @@ management:
features: features:
python: python:
constsAndDefaults: 0.1.3 constsAndDefaults: 0.1.3
core: 4.6.2 core: 4.6.3
flattening: 2.81.1 flattening: 2.81.1
globalSecurity: 2.83.5 globalSecurity: 2.83.5
globalServerURLs: 2.82.2 globalServerURLs: 2.82.2

View File

@@ -12,7 +12,7 @@ generation:
auth: auth:
oAuth2ClientCredentialsEnabled: false oAuth2ClientCredentialsEnabled: false
python: python:
version: 0.6.1 version: 0.6.2
additionalDependencies: additionalDependencies:
dependencies: {} dependencies: {}
extraDependencies: extraDependencies:

View File

@@ -139,3 +139,13 @@ Based on:
- [python v0.6.1] . - [python v0.6.1] .
### Releases ### Releases
- [PyPI v0.6.1] https://pypi.org/project/plex-api-client/0.6.1 - . - [PyPI v0.6.1] https://pypi.org/project/plex-api-client/0.6.1 - .
## 2024-04-06 01:10:50
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.241.0 (2.300.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.6.2] .
### Releases
- [PyPI v0.6.2] https://pypi.org/project/plex-api-client/0.6.2 - .

View File

@@ -19,7 +19,7 @@ except FileNotFoundError:
setuptools.setup( setuptools.setup(
name='plex-api-client', name='plex-api-client',
version='0.6.1', version='0.6.2',
author='LukeHagar', author='LukeHagar',
description='Python Client SDK Generated by Speakeasy', description='Python Client SDK Generated by Speakeasy',
url='https://github.com/LukeHagar/plexpy.git', url='https://github.com/LukeHagar/plexpy.git',
@@ -44,10 +44,12 @@ setuptools.setup(
], ],
extras_require={ extras_require={
"dev": [ "dev": [
"pylint==2.16.2", "pylint==3.1.0",
], ],
}, },
package_dir={'': 'src'}, package_dir={'': 'src'},
python_requires='>=3.8', python_requires='>=3.8',
package_data={'plex-api-client': ['py.typed']}, package_data={
'plex-api-client': ['py.typed']
},
) )

View File

@@ -149,3 +149,4 @@ class Activities:
return res return res

View File

@@ -144,3 +144,4 @@ class Authentication:
return res return res

View File

@@ -331,3 +331,4 @@ class Butler:
return res return res

View File

@@ -156,3 +156,4 @@ class Hubs:
return res return res

View File

@@ -806,3 +806,4 @@ class Library:
return res return res

View File

@@ -223,3 +223,4 @@ class Log:
return res return res

View File

@@ -208,3 +208,4 @@ class Media:
return res return res

View File

@@ -627,3 +627,4 @@ class Playlists:
return res return res

View File

@@ -152,3 +152,4 @@ class Plex:
return res return res

View File

@@ -33,9 +33,9 @@ class SDKConfiguration:
globals: Dict[str, Dict[str, Dict[str, Any]]] = field(default_factory=Dict) globals: Dict[str, Dict[str, Dict[str, Any]]] = field(default_factory=Dict)
language: str = 'python' language: str = 'python'
openapi_doc_version: str = '0.0.3' openapi_doc_version: str = '0.0.3'
sdk_version: str = '0.6.1' sdk_version: str = '0.6.2'
gen_version: str = '2.298.2' gen_version: str = '2.300.0'
user_agent: str = 'speakeasy-sdk/python 0.6.1 2.298.2 0.0.3 plex-api-client' user_agent: str = 'speakeasy-sdk/python 0.6.2 2.300.0 0.0.3 plex-api-client'
retry_config: Optional[RetryConfig] = None retry_config: Optional[RetryConfig] = None
_hooks: Optional[SDKHooks] = None _hooks: Optional[SDKHooks] = None

View File

@@ -230,3 +230,4 @@ class Search:
return res return res

View File

@@ -523,3 +523,4 @@ class Server:
return res return res

View File

@@ -270,3 +270,4 @@ class Sessions:
return res return res

View File

@@ -84,3 +84,4 @@ class Statistics:
return res return res

View File

@@ -210,3 +210,4 @@ class Updater:
return res return res

View File

@@ -114,7 +114,6 @@ def retry_with_backoff(func, initial_interval=500, max_interval=60000, exponent=
raise raise
sleep = ((initial_interval/1000) * sleep = ((initial_interval/1000) *
exponent**retries + random.uniform(0, 1)) exponent**retries + random.uniform(0, 1))
if sleep > max_interval/1000: sleep = min(sleep, max_interval / 1000)
sleep = max_interval/1000
time.sleep(sleep) time.sleep(sleep)
retries += 1 retries += 1

View File

@@ -134,3 +134,4 @@ class Video:
return res return res