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
3
3
management:
4
4
docChecksum: 1e625384a184f21d27f5afa31f705ada
5
5
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
10
10
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
11
11
repoSubDirectory: .
12
12
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
@@ -16,7 +16,7 @@ features:
16
16
acceptHeaders: 3.0.0
17
17
additionalDependencies: 1.0.0
18
18
constsAndDefaults: 1.0.5
19
- core: 5.19.5
19
+ core: 5.19.6
20
20
customCodeRegions: 0.1.1
21
21
defaultEnabledRetries: 0.2.0
22
22
enumUnions: 0.1.0
Original file line number Diff line number Diff line change 1
- speakeasyVersion: 1.595 .0
1
+ speakeasyVersion: 1.598 .0
2
2
sources:
3
3
my-source:
4
4
sourceNamespace: my-source
5
5
sourceRevisionDigest: sha256:fbae2a3d20d8dc0210e15a73e96e96325b1f38e080c97a1f893a843cd0a723e8
6
6
sourceBlobDigest: sha256:71012d02fdfa3ce10a9dd1b7152af158ad50029dca56ed47c15480e76d977261
7
7
tags:
8
8
- latest
9
- - speakeasy-sdk-regen-1754007218
9
+ - speakeasy-sdk-regen-1754439127
10
10
- 1.1.45
11
11
targets:
12
12
unstructured-python:
@@ -15,7 +15,7 @@ targets:
15
15
sourceRevisionDigest: sha256:fbae2a3d20d8dc0210e15a73e96e96325b1f38e080c97a1f893a843cd0a723e8
16
16
sourceBlobDigest: sha256:71012d02fdfa3ce10a9dd1b7152af158ad50029dca56ed47c15480e76d977261
17
17
codeSamplesNamespace: my-source-code-samples
18
- codeSamplesRevisionDigest: sha256:244db79d394b3d7a4e244006d91bdadeb850c019a9a7c5d80d3dc3550447019a
18
+ codeSamplesRevisionDigest: sha256:589a66ad970bec88d190b8fa4af02a27274967553ea68a347b8e50a43422fad5
19
19
workflow:
20
20
workflowVersion: 1.0.0
21
21
speakeasyVersion: latest
Original file line number Diff line number Diff line change @@ -1089,4 +1089,14 @@ Based on:
1089
1089
### Generated
1090
1090
- [ python v0.42.0] .
1091
1091
### 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:
18
18
generateNewTests : false
19
19
skipResponseBodyAssertions : false
20
20
python :
21
- version : 0.42.0
21
+ version : 0.42.1
22
22
additionalDependencies :
23
23
dev :
24
24
deepdiff : ' >=6.0'
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " unstructured-client"
3
- version = " 0.42.0 "
3
+ version = " 0.42.1 "
4
4
description = " Python Client SDK for Unstructured API"
5
5
authors = [{ name = " Unstructured" },]
6
6
readme = " README-PYPI.md"
Original file line number Diff line number Diff line change 3
3
import importlib .metadata
4
4
5
5
__title__ : str = "unstructured-client"
6
- __version__ : str = "0.42.0 "
6
+ __version__ : str = "0.42.1 "
7
7
__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"
10
10
11
11
try :
12
12
if __package__ is not None :
Original file line number Diff line number Diff line change 2
2
3
3
from typing import TYPE_CHECKING
4
4
from importlib import import_module
5
+ import builtins
5
6
6
7
if TYPE_CHECKING :
7
8
from .httpvalidationerror import (
@@ -62,5 +63,5 @@ def __getattr__(attr_name: str) -> object:
62
63
63
64
64
65
def __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 2
2
3
3
from typing import TYPE_CHECKING
4
4
from importlib import import_module
5
+ import builtins
5
6
6
7
if TYPE_CHECKING :
7
8
from .cancel_job import (
@@ -412,5 +413,5 @@ def __getattr__(attr_name: str) -> object:
412
413
413
414
414
415
def __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 2
2
3
3
from typing import TYPE_CHECKING
4
4
from importlib import import_module
5
+ import builtins
5
6
6
7
if TYPE_CHECKING :
7
8
from .astradbconnectorconfig import (
@@ -908,5 +909,5 @@ def __getattr__(attr_name: str) -> object:
908
909
909
910
910
911
def __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 2
2
3
3
from typing import TYPE_CHECKING
4
4
from importlib import import_module
5
+ import builtins
5
6
6
7
if TYPE_CHECKING :
7
8
from .annotations import get_discriminator
@@ -180,5 +181,5 @@ def __getattr__(attr_name: str) -> object:
180
181
181
182
182
183
def __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