Skip to content

Commit 59a9926

Browse files
authored
Merge branch 'main' into jj/klaijan/csv
2 parents 098a418 + 99c6385 commit 59a9926

File tree

7 files changed

+25
-15
lines changed

7 files changed

+25
-15
lines changed

.speakeasy/gen.lock

Lines changed: 5 additions & 5 deletions
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: 80b2dc9fb0c56267e34c1679522a1794
5-
docVersion: 1.0.52
6-
speakeasyVersion: 1.421.0
4+
docChecksum: 21f469b38bb72725739ee9d9d0fc8780
5+
docVersion: 1.0.51
6+
speakeasyVersion: 1.422.1
77
generationVersion: 2.438.15
8-
releaseVersion: 0.27.0
9-
configChecksum: 6ece96f34cb076ad455a9c66b68c30b0
8+
releaseVersion: 0.26.2
9+
configChecksum: c46fa7f108a08d4565530aa29da677b5
1010
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git

.speakeasy/workflow.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
speakeasyVersion: 1.418.1
1+
speakeasyVersion: 1.422.1
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:a820d523af3e56f0dd1fc84f4f29e15330edb26cc253e93981bddb4a5176ac3c
5+
sourceRevisionDigest: sha256:31c94056ebc941cdfcf3fd4ba5e04880e978740963f7ce79169ba66cd033d74d
66
sourceBlobDigest: sha256:27e4879df402e924f9f65d336ea6d2fc8b16a00b87b4a802866238f7e9f639d3
77
tags:
88
- latest
@@ -11,7 +11,7 @@ targets:
1111
unstructured-python:
1212
source: my-source
1313
sourceNamespace: my-source
14-
sourceRevisionDigest: sha256:a820d523af3e56f0dd1fc84f4f29e15330edb26cc253e93981bddb4a5176ac3c
14+
sourceRevisionDigest: sha256:31c94056ebc941cdfcf3fd4ba5e04880e978740963f7ce79169ba66cd033d74d
1515
sourceBlobDigest: sha256:27e4879df402e924f9f65d336ea6d2fc8b16a00b87b4a802866238f7e9f639d3
1616
workflow:
1717
workflowVersion: 1.0.0

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,4 +704,14 @@ Based on:
704704
### Generated
705705
- [python v0.26.1] .
706706
### Releases
707-
- [PyPI v0.26.1] https://pypi.org/project/unstructured-client/0.26.1 - .
707+
- [PyPI v0.26.1] https://pypi.org/project/unstructured-client/0.26.1 - .
708+
709+
## 2024-10-28 00:09:56
710+
### Changes
711+
Based on:
712+
- OpenAPI Doc
713+
- Speakeasy CLI 1.422.1 (2.438.15) https://github.com/speakeasy-api/speakeasy
714+
### Generated
715+
- [python v0.26.2] .
716+
### Releases
717+
- [PyPI v0.26.2] https://pypi.org/project/unstructured-client/0.26.2 - .

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
python:
13-
version: 0.27.0
13+
version: 0.26.2
1414
additionalDependencies:
1515
dev:
1616
deepdiff: '>=6.0'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "unstructured-client"
3-
version = "0.27.0"
3+
version = "0.26.2"
44
description = "Python Client SDK for Unstructured API"
55
authors = ["Unstructured",]
66
readme = "README-PYPI.md"

src/unstructured_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import importlib.metadata
44

55
__title__: str = "unstructured-client"
6-
__version__: str = "0.27.0"
6+
__version__: str = "0.26.2"
77

88
try:
99
if __package__ is not None:

src/unstructured_client/sdkconfiguration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ class SDKConfiguration:
3333
server_url: Optional[str] = ""
3434
server: Optional[str] = ""
3535
language: str = "python"
36-
openapi_doc_version: str = "1.0.52"
37-
sdk_version: str = "0.27.0"
36+
openapi_doc_version: str = "1.0.51"
37+
sdk_version: str = "0.26.2"
3838
gen_version: str = "2.438.15"
39-
user_agent: str = "speakeasy-sdk/python 0.27.0 2.438.15 1.0.52 unstructured-client"
39+
user_agent: str = "speakeasy-sdk/python 0.26.2 2.438.15 1.0.51 unstructured-client"
4040
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
4141
timeout_ms: Optional[int] = None
4242

0 commit comments

Comments
 (0)