Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
speakeasyVersion: 1.595.0
speakeasyVersion: 1.598.0
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:fbae2a3d20d8dc0210e15a73e96e96325b1f38e080c97a1f893a843cd0a723e8
sourceBlobDigest: sha256:71012d02fdfa3ce10a9dd1b7152af158ad50029dca56ed47c15480e76d977261
tags:
- latest
- speakeasy-sdk-regen-1754007218
- speakeasy-sdk-regen-1754439127
- 1.1.45
targets:
unstructured-python:
Expand All @@ -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
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 - .
- [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 - .
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
python:
version: 0.42.0
version: 0.42.1
additionalDependencies:
dev:
deepdiff: '>=6.0'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions src/unstructured_client/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions src/unstructured_client/models/errors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from typing import TYPE_CHECKING
from importlib import import_module
import builtins

if TYPE_CHECKING:
from .httpvalidationerror import (
Expand Down Expand Up @@ -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)
5 changes: 3 additions & 2 deletions src/unstructured_client/models/operations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from typing import TYPE_CHECKING
from importlib import import_module
import builtins

if TYPE_CHECKING:
from .cancel_job import (
Expand Down Expand Up @@ -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)
5 changes: 3 additions & 2 deletions src/unstructured_client/models/shared/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from typing import TYPE_CHECKING
from importlib import import_module
import builtins

if TYPE_CHECKING:
from .astradbconnectorconfig import (
Expand Down Expand Up @@ -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)
5 changes: 3 additions & 2 deletions src/unstructured_client/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from typing import TYPE_CHECKING
from importlib import import_module
import builtins

if TYPE_CHECKING:
from .annotations import get_discriminator
Expand Down Expand Up @@ -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)
Loading