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

@@ -138,4 +138,14 @@ Based on:
### Generated ### Generated
- [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

@@ -148,4 +148,5 @@ class Activities:
return res return res

View File

@@ -143,4 +143,5 @@ class Authentication:
return res return res

View File

@@ -330,4 +330,5 @@ class Butler:
return res return res

View File

@@ -155,4 +155,5 @@ class Hubs:
return res return res

View File

@@ -805,4 +805,5 @@ class Library:
return res return res

View File

@@ -222,4 +222,5 @@ class Log:
return res return res

View File

@@ -207,4 +207,5 @@ class Media:
return res return res

View File

@@ -626,4 +626,5 @@ class Playlists:
return res return res

View File

@@ -151,4 +151,5 @@ 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

@@ -229,4 +229,5 @@ class Search:
return res return res

View File

@@ -522,4 +522,5 @@ class Server:
return res return res

View File

@@ -269,4 +269,5 @@ class Sessions:
return res return res

View File

@@ -83,4 +83,5 @@ class Statistics:
return res return res

View File

@@ -209,4 +209,5 @@ 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

@@ -133,4 +133,5 @@ class Video:
return res return res