File tree Expand file tree Collapse file tree 10 files changed +36
-22
lines changed Expand file tree Collapse file tree 10 files changed +36
-22
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ id: 8b5fa338-9106-4734-abf0-e30d67044a90
33management:
44 docChecksum: 1e625384a184f21d27f5afa31f705ada
55 docVersion: 1.1.45
6- speakeasyVersion: 1.595 .0
7- generationVersion: 2.670 .1
8- releaseVersion: 0.42.0
9- configChecksum: cd0ffde4496a99df26b7766acfe9c43d
6+ speakeasyVersion: 1.598 .0
7+ generationVersion: 2.674 .1
8+ releaseVersion: 0.42.1
9+ configChecksum: 93d86f1b261131a5f65615eab5147b8a
1010 repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1111 repoSubDirectory: .
1212 installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
@@ -16,7 +16,7 @@ features:
1616 acceptHeaders: 3.0.0
1717 additionalDependencies: 1.0.0
1818 constsAndDefaults: 1.0.5
19- core: 5.19.5
19+ core: 5.19.6
2020 customCodeRegions: 0.1.1
2121 defaultEnabledRetries: 0.2.0
2222 enumUnions: 0.1.0
Original file line number Diff line number Diff line change 1- speakeasyVersion: 1.595 .0
1+ speakeasyVersion: 1.598 .0
22sources:
33 my-source:
44 sourceNamespace: my-source
55 sourceRevisionDigest: sha256:fbae2a3d20d8dc0210e15a73e96e96325b1f38e080c97a1f893a843cd0a723e8
66 sourceBlobDigest: sha256:71012d02fdfa3ce10a9dd1b7152af158ad50029dca56ed47c15480e76d977261
77 tags:
88 - latest
9- - speakeasy-sdk-regen-1754007218
9+ - speakeasy-sdk-regen-1754439127
1010 - 1.1.45
1111targets:
1212 unstructured-python:
@@ -15,7 +15,7 @@ targets:
1515 sourceRevisionDigest: sha256:fbae2a3d20d8dc0210e15a73e96e96325b1f38e080c97a1f893a843cd0a723e8
1616 sourceBlobDigest: sha256:71012d02fdfa3ce10a9dd1b7152af158ad50029dca56ed47c15480e76d977261
1717 codeSamplesNamespace: my-source-code-samples
18- codeSamplesRevisionDigest: sha256:244db79d394b3d7a4e244006d91bdadeb850c019a9a7c5d80d3dc3550447019a
18+ codeSamplesRevisionDigest: sha256:589a66ad970bec88d190b8fa4af02a27274967553ea68a347b8e50a43422fad5
1919workflow:
2020 workflowVersion: 1.0.0
2121 speakeasyVersion: latest
Original file line number Diff line number Diff line change @@ -1089,4 +1089,14 @@ Based on:
10891089### Generated
10901090- [ python v0.42.0] .
10911091### Releases
1092- - [ PyPI v0.42.0] https://pypi.org/project/unstructured-client/0.42.0 - .
1092+ - [ PyPI v0.42.0] https://pypi.org/project/unstructured-client/0.42.0 - .
1093+
1094+ ## 2025-08-06 00:11:51
1095+ ### Changes
1096+ Based on:
1097+ - OpenAPI Doc
1098+ - Speakeasy CLI 1.598.0 (2.674.1) https://github.com/speakeasy-api/speakeasy
1099+ ### Generated
1100+ - [ python v0.42.1] .
1101+ ### Releases
1102+ - [ PyPI v0.42.1] https://pypi.org/project/unstructured-client/0.42.1 - .
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ generation:
1818 generateNewTests : false
1919 skipResponseBodyAssertions : false
2020python :
21- version : 0.42.0
21+ version : 0.42.1
2222 additionalDependencies :
2323 dev :
2424 deepdiff : ' >=6.0'
Original file line number Diff line number Diff line change 11[project ]
22name = " unstructured-client"
3- version = " 0.42.0 "
3+ version = " 0.42.1 "
44description = " Python Client SDK for Unstructured API"
55authors = [{ name = " Unstructured" },]
66readme = " README-PYPI.md"
Original file line number Diff line number Diff line change 33import importlib .metadata
44
55__title__ : str = "unstructured-client"
6- __version__ : str = "0.42.0 "
6+ __version__ : str = "0.42.1 "
77__openapi_doc_version__ : str = "1.1.45"
8- __gen_version__ : str = "2.670 .1"
9- __user_agent__ : str = "speakeasy-sdk/python 0.42.0 2.670 .1 1.1.45 unstructured-client"
8+ __gen_version__ : str = "2.674 .1"
9+ __user_agent__ : str = "speakeasy-sdk/python 0.42.1 2.674 .1 1.1.45 unstructured-client"
1010
1111try :
1212 if __package__ is not None :
Original file line number Diff line number Diff line change 22
33from typing import TYPE_CHECKING
44from importlib import import_module
5+ import builtins
56
67if TYPE_CHECKING :
78 from .httpvalidationerror import (
@@ -62,5 +63,5 @@ def __getattr__(attr_name: str) -> object:
6263
6364
6465def __dir__ ():
65- lazy_attrs = list (_dynamic_imports .keys ())
66- return sorted (lazy_attrs )
66+ lazy_attrs = builtins . list (_dynamic_imports .keys ())
67+ return builtins . sorted (lazy_attrs )
Original file line number Diff line number Diff line change 22
33from typing import TYPE_CHECKING
44from importlib import import_module
5+ import builtins
56
67if TYPE_CHECKING :
78 from .cancel_job import (
@@ -412,5 +413,5 @@ def __getattr__(attr_name: str) -> object:
412413
413414
414415def __dir__ ():
415- lazy_attrs = list (_dynamic_imports .keys ())
416- return sorted (lazy_attrs )
416+ lazy_attrs = builtins . list (_dynamic_imports .keys ())
417+ return builtins . sorted (lazy_attrs )
Original file line number Diff line number Diff line change 22
33from typing import TYPE_CHECKING
44from importlib import import_module
5+ import builtins
56
67if TYPE_CHECKING :
78 from .astradbconnectorconfig import (
@@ -908,5 +909,5 @@ def __getattr__(attr_name: str) -> object:
908909
909910
910911def __dir__ ():
911- lazy_attrs = list (_dynamic_imports .keys ())
912- return sorted (lazy_attrs )
912+ lazy_attrs = builtins . list (_dynamic_imports .keys ())
913+ return builtins . sorted (lazy_attrs )
Original file line number Diff line number Diff line change 22
33from typing import TYPE_CHECKING
44from importlib import import_module
5+ import builtins
56
67if TYPE_CHECKING :
78 from .annotations import get_discriminator
@@ -180,5 +181,5 @@ def __getattr__(attr_name: str) -> object:
180181
181182
182183def __dir__ ():
183- lazy_attrs = list (_dynamic_imports .keys ())
184- return sorted (lazy_attrs )
184+ lazy_attrs = builtins . list (_dynamic_imports .keys ())
185+ return builtins . sorted (lazy_attrs )
You can’t perform that action at this time.
0 commit comments