diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock index 5c393771..120f5257 100755 --- a/.speakeasy/gen.lock +++ b/.speakeasy/gen.lock @@ -3,10 +3,10 @@ id: 8b5fa338-9106-4734-abf0-e30d67044a90 management: docChecksum: 1e625384a184f21d27f5afa31f705ada docVersion: 1.1.45 - speakeasyVersion: 1.595.0 - generationVersion: 2.670.1 - releaseVersion: 0.42.0 - configChecksum: cd0ffde4496a99df26b7766acfe9c43d + speakeasyVersion: 1.598.0 + generationVersion: 2.674.1 + releaseVersion: 0.42.1 + configChecksum: 93d86f1b261131a5f65615eab5147b8a repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git repoSubDirectory: . installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git @@ -16,7 +16,7 @@ features: acceptHeaders: 3.0.0 additionalDependencies: 1.0.0 constsAndDefaults: 1.0.5 - core: 5.19.5 + core: 5.19.6 customCodeRegions: 0.1.1 defaultEnabledRetries: 0.2.0 enumUnions: 0.1.0 diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock index d06bddc8..82c5964b 100644 --- a/.speakeasy/workflow.lock +++ b/.speakeasy/workflow.lock @@ -1,4 +1,4 @@ -speakeasyVersion: 1.595.0 +speakeasyVersion: 1.598.0 sources: my-source: sourceNamespace: my-source @@ -6,7 +6,7 @@ sources: sourceBlobDigest: sha256:71012d02fdfa3ce10a9dd1b7152af158ad50029dca56ed47c15480e76d977261 tags: - latest - - speakeasy-sdk-regen-1754007218 + - speakeasy-sdk-regen-1754439127 - 1.1.45 targets: unstructured-python: @@ -15,7 +15,7 @@ targets: sourceRevisionDigest: sha256:fbae2a3d20d8dc0210e15a73e96e96325b1f38e080c97a1f893a843cd0a723e8 sourceBlobDigest: sha256:71012d02fdfa3ce10a9dd1b7152af158ad50029dca56ed47c15480e76d977261 codeSamplesNamespace: my-source-code-samples - codeSamplesRevisionDigest: sha256:244db79d394b3d7a4e244006d91bdadeb850c019a9a7c5d80d3dc3550447019a + codeSamplesRevisionDigest: sha256:589a66ad970bec88d190b8fa4af02a27274967553ea68a347b8e50a43422fad5 workflow: workflowVersion: 1.0.0 speakeasyVersion: latest diff --git a/RELEASES.md b/RELEASES.md index 7b4c4a4f..4850858f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1089,4 +1089,14 @@ Based on: ### Generated - [python v0.42.0] . ### Releases -- [PyPI v0.42.0] https://pypi.org/project/unstructured-client/0.42.0 - . \ No newline at end of file +- [PyPI v0.42.0] https://pypi.org/project/unstructured-client/0.42.0 - . + +## 2025-08-06 00:11:51 +### Changes +Based on: +- OpenAPI Doc +- Speakeasy CLI 1.598.0 (2.674.1) https://github.com/speakeasy-api/speakeasy +### Generated +- [python v0.42.1] . +### Releases +- [PyPI v0.42.1] https://pypi.org/project/unstructured-client/0.42.1 - . \ No newline at end of file diff --git a/gen.yaml b/gen.yaml index e141f8fc..2fd515d1 100644 --- a/gen.yaml +++ b/gen.yaml @@ -18,7 +18,7 @@ generation: generateNewTests: false skipResponseBodyAssertions: false python: - version: 0.42.0 + version: 0.42.1 additionalDependencies: dev: deepdiff: '>=6.0' diff --git a/pyproject.toml b/pyproject.toml index 9fce1905..a009217a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "unstructured-client" -version = "0.42.0" +version = "0.42.1" description = "Python Client SDK for Unstructured API" authors = [{ name = "Unstructured" },] readme = "README-PYPI.md" diff --git a/src/unstructured_client/_version.py b/src/unstructured_client/_version.py index 79c2f364..f059a302 100644 --- a/src/unstructured_client/_version.py +++ b/src/unstructured_client/_version.py @@ -3,10 +3,10 @@ import importlib.metadata __title__: str = "unstructured-client" -__version__: str = "0.42.0" +__version__: str = "0.42.1" __openapi_doc_version__: str = "1.1.45" -__gen_version__: str = "2.670.1" -__user_agent__: str = "speakeasy-sdk/python 0.42.0 2.670.1 1.1.45 unstructured-client" +__gen_version__: str = "2.674.1" +__user_agent__: str = "speakeasy-sdk/python 0.42.1 2.674.1 1.1.45 unstructured-client" try: if __package__ is not None: diff --git a/src/unstructured_client/models/errors/__init__.py b/src/unstructured_client/models/errors/__init__.py index d9612640..1aa6130f 100644 --- a/src/unstructured_client/models/errors/__init__.py +++ b/src/unstructured_client/models/errors/__init__.py @@ -2,6 +2,7 @@ from typing import TYPE_CHECKING from importlib import import_module +import builtins if TYPE_CHECKING: from .httpvalidationerror import ( @@ -62,5 +63,5 @@ def __getattr__(attr_name: str) -> object: def __dir__(): - lazy_attrs = list(_dynamic_imports.keys()) - return sorted(lazy_attrs) + lazy_attrs = builtins.list(_dynamic_imports.keys()) + return builtins.sorted(lazy_attrs) diff --git a/src/unstructured_client/models/operations/__init__.py b/src/unstructured_client/models/operations/__init__.py index ee9d33af..8c6fbfc2 100644 --- a/src/unstructured_client/models/operations/__init__.py +++ b/src/unstructured_client/models/operations/__init__.py @@ -2,6 +2,7 @@ from typing import TYPE_CHECKING from importlib import import_module +import builtins if TYPE_CHECKING: from .cancel_job import ( @@ -412,5 +413,5 @@ def __getattr__(attr_name: str) -> object: def __dir__(): - lazy_attrs = list(_dynamic_imports.keys()) - return sorted(lazy_attrs) + lazy_attrs = builtins.list(_dynamic_imports.keys()) + return builtins.sorted(lazy_attrs) diff --git a/src/unstructured_client/models/shared/__init__.py b/src/unstructured_client/models/shared/__init__.py index c954e490..0ab9d4af 100644 --- a/src/unstructured_client/models/shared/__init__.py +++ b/src/unstructured_client/models/shared/__init__.py @@ -2,6 +2,7 @@ from typing import TYPE_CHECKING from importlib import import_module +import builtins if TYPE_CHECKING: from .astradbconnectorconfig import ( @@ -908,5 +909,5 @@ def __getattr__(attr_name: str) -> object: def __dir__(): - lazy_attrs = list(_dynamic_imports.keys()) - return sorted(lazy_attrs) + lazy_attrs = builtins.list(_dynamic_imports.keys()) + return builtins.sorted(lazy_attrs) diff --git a/src/unstructured_client/utils/__init__.py b/src/unstructured_client/utils/__init__.py index dd4aa4b3..dc88403b 100644 --- a/src/unstructured_client/utils/__init__.py +++ b/src/unstructured_client/utils/__init__.py @@ -2,6 +2,7 @@ from typing import TYPE_CHECKING from importlib import import_module +import builtins if TYPE_CHECKING: from .annotations import get_discriminator @@ -180,5 +181,5 @@ def __getattr__(attr_name: str) -> object: def __dir__(): - lazy_attrs = list(_dynamic_imports.keys()) - return sorted(lazy_attrs) + lazy_attrs = builtins.list(_dynamic_imports.keys()) + return builtins.sorted(lazy_attrs)