Skip to content

Commit 82b5cb4

Browse files
authored
Merge pull request #34 from Unstructured-IO/speakeasy-sdk-regen-1706833091
chore: 🐝 Update SDK - Generate
2 parents 2873b28 + 604a633 commit 82b5cb4

File tree

5 files changed

+22
-11
lines changed

5 files changed

+22
-11
lines changed

Diff for: .speakeasy/gen.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ management:
44
docChecksum: 903444f359d1dfa6342c692ae3e5c7ff
55
docVersion: 0.0.1
66
speakeasyVersion: internal
7-
generationVersion: 2.245.1
8-
releaseVersion: 0.16.1
9-
configChecksum: dc6701b5b977dc4d73e21db3ea4791cb
7+
generationVersion: 2.248.1
8+
releaseVersion: 0.17.0
9+
configChecksum: b943408cdcab76d427c2cba0f6584bf4
1010
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1313
published: true
1414
features:
1515
python:
16-
core: 4.4.3
16+
core: 4.4.4
1717
examples: 2.81.3
1818
globalSecurity: 2.83.2
1919
globalServerURLs: 2.82.1

Diff for: RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -404,4 +404,14 @@ Based on:
404404
### Generated
405405
- [python v0.16.1] .
406406
### Releases
407-
- [PyPI v0.16.1] https://pypi.org/project/unstructured-client/0.16.1 - .
407+
- [PyPI v0.16.1] https://pypi.org/project/unstructured-client/0.16.1 - .
408+
409+
## 2024-02-02 00:18:09
410+
### Changes
411+
Based on:
412+
- OpenAPI Doc 0.0.1
413+
- Speakeasy CLI 1.164.0 (2.248.1) https://github.com/speakeasy-api/speakeasy
414+
### Generated
415+
- [python v0.17.0] .
416+
### Releases
417+
- [PyPI v0.17.0] https://pypi.org/project/unstructured-client/0.17.0 - .

Diff for: gen.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ generation:
55
optionalPropertyRendering: withExample
66
fixes:
77
nameResolutionDec2023: false
8+
parameterOrderingFeb2024: false
89
python:
9-
version: 0.16.1
10+
version: 0.17.0
1011
author: Unstructured
1112
clientServerStatusCodesAsErrors: true
1213
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.16.1",
13+
version="0.17.0",
1414
author="Unstructured",
1515
description="Python Client SDK for Unstructured API",
1616
license = "MIT",
@@ -20,7 +20,7 @@
2020
install_requires=[
2121
"certifi>=2023.7.22",
2222
"charset-normalizer>=3.2.0",
23-
"dataclasses-json @ git+https://github.com/speakeasy-api/dataclasses-json@fix-union-deserialization",
23+
"dataclasses-json-speakeasy>=0.5.11",
2424
"idna>=3.4",
2525
"jsonpath-python>=1.0.6 ",
2626
"marshmallow>=3.19.0",

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.16.1'
31-
gen_version: str = '2.245.1'
32-
user_agent: str = 'speakeasy-sdk/python 0.16.1 2.245.1 0.0.1 unstructured-client'
30+
sdk_version: str = '0.17.0'
31+
gen_version: str = '2.248.1'
32+
user_agent: str = 'speakeasy-sdk/python 0.17.0 2.248.1 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)