Skip to content
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
8 changes: 4 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ management:
docChecksum: 903444f359d1dfa6342c692ae3e5c7ff
docVersion: 0.0.1
speakeasyVersion: internal
generationVersion: 2.245.1
releaseVersion: 0.16.1
configChecksum: dc6701b5b977dc4d73e21db3ea4791cb
generationVersion: 2.248.1
releaseVersion: 0.17.0
configChecksum: b943408cdcab76d427c2cba0f6584bf4
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
published: true
features:
python:
core: 4.4.3
core: 4.4.4
examples: 2.81.3
globalSecurity: 2.83.2
globalServerURLs: 2.82.1
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,4 +404,14 @@ Based on:
### Generated
- [python v0.16.1] .
### Releases
- [PyPI v0.16.1] https://pypi.org/project/unstructured-client/0.16.1 - .
- [PyPI v0.16.1] https://pypi.org/project/unstructured-client/0.16.1 - .

## 2024-02-02 00:18:09
### Changes
Based on:
- OpenAPI Doc 0.0.1
- Speakeasy CLI 1.164.0 (2.248.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.17.0] .
### Releases
- [PyPI v0.17.0] https://pypi.org/project/unstructured-client/0.17.0 - .
3 changes: 2 additions & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ generation:
optionalPropertyRendering: withExample
fixes:
nameResolutionDec2023: false
parameterOrderingFeb2024: false
python:
version: 0.16.1
version: 0.17.0
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.16.1",
version="0.17.0",
author="Unstructured",
description="Python Client SDK for Unstructured API",
license = "MIT",
Expand All @@ -20,7 +20,7 @@
install_requires=[
"certifi>=2023.7.22",
"charset-normalizer>=3.2.0",
"dataclasses-json @ git+https://github.com/speakeasy-api/dataclasses-json@fix-union-deserialization",
"dataclasses-json-speakeasy>=0.5.11",
"idna>=3.4",
"jsonpath-python>=1.0.6 ",
"marshmallow>=3.19.0",
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.16.1'
gen_version: str = '2.245.1'
user_agent: str = 'speakeasy-sdk/python 0.16.1 2.245.1 0.0.1 unstructured-client'
sdk_version: str = '0.17.0'
gen_version: str = '2.248.1'
user_agent: str = 'speakeasy-sdk/python 0.17.0 2.248.1 0.0.1 unstructured-client'
retry_config: RetryConfig = None

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