Skip to content

Commit 0d30872

Browse files
authored
Merge pull request #29 from Unstructured-IO/speakeasy-sdk-regen-1706198530
chore: 🐝 Update SDK - Generate
2 parents d259d6f + 55495e7 commit 0d30872

File tree

6 files changed

+23
-13
lines changed

6 files changed

+23
-13
lines changed

Diff for: .speakeasy/gen.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 8b5fa338-9106-4734-abf0-e30d67044a90
33
management:
4-
docChecksum: 559aacf6828c62bd379326645382b3ba
4+
docChecksum: 903444f359d1dfa6342c692ae3e5c7ff
55
docVersion: 0.0.1
66
speakeasyVersion: internal
7-
generationVersion: 2.237.2
8-
releaseVersion: 0.15.5
9-
configChecksum: 5138d0e0d09d018eeec74356c4b3fef5
7+
generationVersion: 2.239.4
8+
releaseVersion: 0.16.0
9+
configChecksum: df4b507bbf203791c07f410b82b53f44
1010
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git

Diff for: RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -384,4 +384,14 @@ Based on:
384384
### Generated
385385
- [python v0.15.5] .
386386
### Releases
387-
- [PyPI v0.15.5] https://pypi.org/project/unstructured-client/0.15.5 - .
387+
- [PyPI v0.15.5] https://pypi.org/project/unstructured-client/0.15.5 - .
388+
389+
## 2024-01-25 16:02:08
390+
### Changes
391+
Based on:
392+
- OpenAPI Doc 0.0.1
393+
- Speakeasy CLI 1.152.1 (2.239.4) https://github.com/speakeasy-api/speakeasy
394+
### Generated
395+
- [python v0.16.0] .
396+
### Releases
397+
- [PyPI v0.16.0] https://pypi.org/project/unstructured-client/0.16.0 - .

Diff for: gen.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ generation:
66
fixes:
77
nameResolutionDec2023: false
88
python:
9-
version: 0.15.5
9+
version: 0.16.0
1010
author: Unstructured
1111
clientServerStatusCodesAsErrors: true
1212
description: Python Client SDK for Unstructured API
@@ -20,7 +20,7 @@ python:
2020
shared: models/shared
2121
webhooks: models/webhooks
2222
inputModelSuffix: input
23+
license: MIT
2324
maxMethodParams: 0
2425
outputModelSuffix: output
2526
packageName: unstructured-client
26-
license: MIT

Diff for: setup.py

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

1111
setuptools.setup(
1212
name="unstructured-client",
13-
version="0.15.5",
13+
version="0.16.0",
1414
author="Unstructured",
1515
description="Python Client SDK for Unstructured API",
16+
license = "MIT",
1617
long_description=long_description,
1718
long_description_content_type="text/markdown",
1819
packages=setuptools.find_packages(where="src"),
@@ -36,6 +37,5 @@
3637
"dev":["pylint==2.16.2"]
3738
},
3839
package_dir={'': 'src'},
39-
license="MIT License",
4040
python_requires='>=3.8'
4141
)

Diff for: src/unstructured_client/general.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def partition(self, request: Optional[shared.PartitionParameters], retries: Opti
3636
if global_retry_config:
3737
retry_config = global_retry_config
3838
else:
39-
retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True)
39+
retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 900000), True)
4040

4141
def do_request():
4242
return client.request('POST', url, data=data, files=form, headers=headers)

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.5'
31-
gen_version: str = '2.237.2'
32-
user_agent: str = 'speakeasy-sdk/python 0.15.5 2.237.2 0.0.1 unstructured-client'
30+
sdk_version: str = '0.16.0'
31+
gen_version: str = '2.239.4'
32+
user_agent: str = 'speakeasy-sdk/python 0.16.0 2.239.4 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)