Skip to content

chore: 🐝 Update SDK - Generate #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,4 +304,14 @@ Based on:
### Generated
- [python v0.15.0] .
### Releases
- [PyPI v0.15.0] https://pypi.org/project/unstructured-client/0.15.0 - .
- [PyPI v0.15.0] https://pypi.org/project/unstructured-client/0.15.0 - .

## 2023-12-22 18:48:01
### Changes
Based on:
- OpenAPI Doc 0.0.1
- Speakeasy CLI 1.129.1 (2.223.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.15.1] .
### Releases
- [PyPI v0.15.1] https://pypi.org/project/unstructured-client/0.15.1 - .
10 changes: 6 additions & 4 deletions gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,27 @@ configVersion: 1.0.0
management:
docChecksum: bf57420eebd40f2b1d166092f01e3927
docVersion: 0.0.1
speakeasyVersion: 1.126.0
generationVersion: 2.213.3
speakeasyVersion: 1.129.1
generationVersion: 2.223.3
generation:
comments: {}
sdkClassName: unstructured_client
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
usageSnippets:
optionalPropertyRendering: withExample
fixes:
nameResolutionDec2023: false
features:
python:
core: 4.3.0
core: 4.3.1
examples: 2.81.3
globalSecurity: 2.83.1
globalServerURLs: 2.82.1
nameOverrides: 2.81.1
retries: 2.82.0
serverIDs: 2.81.1
python:
version: 0.15.0
version: 0.15.1
author: Unstructured
clientServerStatusCodesAsErrors: true
description: Python Client SDK for Unstructured API
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="unstructured-client",
version="0.15.0",
version="0.15.1",
author="Unstructured",
description="Python Client SDK for Unstructured API",
long_description=long_description,
Expand All @@ -33,7 +33,7 @@
"urllib3>=1.26.18",
],
extras_require={
"dev":["pylint==2.16.2"]
"dev":["pylint==2.16.2"],
},
package_dir={'': 'src'},
python_requires='>=3.8',
Expand Down
6 changes: 3 additions & 3 deletions src/unstructured_client/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class SDKConfiguration:
server: str = ''
language: str = 'python'
openapi_doc_version: str = '0.0.1'
sdk_version: str = '0.15.0'
gen_version: str = '2.213.3'
user_agent: str = 'speakeasy-sdk/python 0.15.0 2.213.3 0.0.1 unstructured-client'
sdk_version: str = '0.15.1'
gen_version: str = '2.223.3'
user_agent: str = 'speakeasy-sdk/python 0.15.1 2.223.3 0.0.1 unstructured-client'
retry_config: RetryConfig = None

def get_server_details(self) -> Tuple[str, Dict[str, str]]:
Expand Down