Skip to content

Commit 87b3d38

Browse files
authored
Merge pull request #20 from Unstructured-IO/speakeasy-sdk-regen-1703270882
chore: 🐝 Update SDK - Generate
2 parents 3dca7e3 + 18fc241 commit 87b3d38

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

Diff for: RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,14 @@ Based on:
304304
### Generated
305305
- [python v0.15.0] .
306306
### Releases
307-
- [PyPI v0.15.0] https://pypi.org/project/unstructured-client/0.15.0 - .
307+
- [PyPI v0.15.0] https://pypi.org/project/unstructured-client/0.15.0 - .
308+
309+
## 2023-12-22 18:48:01
310+
### Changes
311+
Based on:
312+
- OpenAPI Doc 0.0.1
313+
- Speakeasy CLI 1.129.1 (2.223.3) https://github.com/speakeasy-api/speakeasy
314+
### Generated
315+
- [python v0.15.1] .
316+
### Releases
317+
- [PyPI v0.15.1] https://pypi.org/project/unstructured-client/0.15.1 - .

Diff for: gen.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,27 @@ configVersion: 1.0.0
22
management:
33
docChecksum: bf57420eebd40f2b1d166092f01e3927
44
docVersion: 0.0.1
5-
speakeasyVersion: 1.126.0
6-
generationVersion: 2.213.3
5+
speakeasyVersion: 1.129.1
6+
generationVersion: 2.223.3
77
generation:
88
comments: {}
99
sdkClassName: unstructured_client
1010
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1111
usageSnippets:
1212
optionalPropertyRendering: withExample
13+
fixes:
14+
nameResolutionDec2023: false
1315
features:
1416
python:
15-
core: 4.3.0
17+
core: 4.3.1
1618
examples: 2.81.3
1719
globalSecurity: 2.83.1
1820
globalServerURLs: 2.82.1
1921
nameOverrides: 2.81.1
2022
retries: 2.82.0
2123
serverIDs: 2.81.1
2224
python:
23-
version: 0.15.0
25+
version: 0.15.1
2426
author: Unstructured
2527
clientServerStatusCodesAsErrors: true
2628
description: Python Client SDK for Unstructured API

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="unstructured-client",
13-
version="0.15.0",
13+
version="0.15.1",
1414
author="Unstructured",
1515
description="Python Client SDK for Unstructured API",
1616
long_description=long_description,
@@ -33,7 +33,7 @@
3333
"urllib3>=1.26.18",
3434
],
3535
extras_require={
36-
"dev":["pylint==2.16.2"]
36+
"dev":["pylint==2.16.2"],
3737
},
3838
package_dir={'': 'src'},
3939
python_requires='>=3.8',

Diff for: src/unstructured_client/sdkconfiguration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class SDKConfiguration:
2727
server: str = ''
2828
language: str = 'python'
2929
openapi_doc_version: str = '0.0.1'
30-
sdk_version: str = '0.15.0'
31-
gen_version: str = '2.213.3'
32-
user_agent: str = 'speakeasy-sdk/python 0.15.0 2.213.3 0.0.1 unstructured-client'
30+
sdk_version: str = '0.15.1'
31+
gen_version: str = '2.223.3'
32+
user_agent: str = 'speakeasy-sdk/python 0.15.1 2.223.3 0.0.1 unstructured-client'
3333
retry_config: RetryConfig = None
3434

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

0 commit comments

Comments
 (0)