Skip to content

Commit 5d5f946

Browse files
committed
ci: regenerated with OpenAPI Doc 0.0.1, Speakeay CLI 1.92.2
1 parent 3f46ff2 commit 5d5f946

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-9
lines changed

Diff for: RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,14 @@ Based on:
144144
### Generated
145145
- [python v0.7.3] .
146146
### Releases
147-
- [PyPI v0.7.3] https://pypi.org/project/unstructured-client/0.7.3 - .
147+
- [PyPI v0.7.3] https://pypi.org/project/unstructured-client/0.7.3 - .
148+
149+
## 2023-10-01 00:20:58
150+
### Changes
151+
Based on:
152+
- OpenAPI Doc 0.0.1
153+
- Speakeasy CLI 1.92.2 (2.142.2) https://github.com/speakeasy-api/speakeasy
154+
### Generated
155+
- [python v0.8.0] .
156+
### Releases
157+
- [PyPI v0.8.0] https://pypi.org/project/unstructured-client/0.8.0 - .

Diff for: gen.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 25324f1821b1070aa4a416ec8ddca590
44
docVersion: 0.0.1
5-
speakeasyVersion: 1.91.4
6-
generationVersion: 2.139.2
5+
speakeasyVersion: 1.92.2
6+
generationVersion: 2.142.2
77
generation:
88
comments:
99
disableComments: false
@@ -14,7 +14,7 @@ generation:
1414
tagNamespacingDisabled: false
1515
features:
1616
python:
17-
core: 2.87.0
17+
core: 2.88.0
1818
downloadStreams: 0.0.1
1919
examples: 2.81.2
2020
globalSecurity: 2.81.1
@@ -23,7 +23,7 @@ features:
2323
retries: 2.82.0
2424
serverIDs: 2.81.1
2525
python:
26-
version: 0.7.3
26+
version: 0.8.0
2727
author: Unstructured
2828
clientServerStatusCodesAsErrors: true
2929
description: Python Client SDK Generated by Speakeasy

Diff for: setup.py

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

1111
setuptools.setup(
1212
name="unstructured-client",
13-
version="0.7.3",
13+
version="0.8.0",
1414
author="Unstructured",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

Diff for: src/unstructured_client/models/errors/httpvalidationerror.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
@dataclasses.dataclass
1414
class HTTPValidationError(Exception):
1515
detail: Optional[list[errors_validationerror.ValidationError]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('detail'), 'exclude': lambda f: f is None }})
16+
1617

1718
def __str__(self) -> str:
1819
return utils.marshal_json(self)

Diff for: src/unstructured_client/models/errors/validationerror.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class ValidationError(Exception):
1414
loc: list[Union[str, int]] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('loc') }})
1515
msg: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('msg') }})
1616
type: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('type') }})
17+
1718

1819
def __str__(self) -> str:
1920
return utils.marshal_json(self)

Diff for: src/unstructured_client/sdkconfiguration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ class SDKConfiguration:
2525
server: str = ''
2626
language: str = 'python'
2727
openapi_doc_version: str = '0.0.1'
28-
sdk_version: str = '0.7.3'
29-
gen_version: str = '2.139.2'
30-
user_agent: str = 'speakeasy-sdk/python 0.7.3 2.139.2 0.0.1 unstructured-client'
28+
sdk_version: str = '0.8.0'
29+
gen_version: str = '2.142.2'
30+
user_agent: str = 'speakeasy-sdk/python 0.8.0 2.142.2 0.0.1 unstructured-client'
3131
retry_config: RetryConfig = None
3232

3333
def get_server_details(self) -> tuple[str, dict[str, str]]:

0 commit comments

Comments
 (0)