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
11 changes: 6 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: 21f469b38bb72725739ee9d9d0fc8780
docVersion: 1.0.51
speakeasyVersion: 1.422.1
generationVersion: 2.438.15
releaseVersion: 0.26.2
configChecksum: c46fa7f108a08d4565530aa29da677b5
speakeasyVersion: 1.424.0
generationVersion: 2.445.1
releaseVersion: 0.27.0
configChecksum: 6ece96f34cb076ad455a9c66b68c30b0
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
Expand All @@ -15,7 +15,7 @@ features:
python:
additionalDependencies: 1.0.0
constsAndDefaults: 1.0.4
core: 5.6.0
core: 5.6.1
defaultEnabledRetries: 0.2.0
enumUnions: 0.1.0
envVarSecurityUsage: 0.3.1
Expand All @@ -32,6 +32,7 @@ features:
retries: 3.0.2
sdkHooks: 1.0.0
serverIDs: 3.0.0
tests: 1.6.0
unions: 3.0.2
uploadStreams: 1.0.0
generatedFiles:
Expand Down
6 changes: 3 additions & 3 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
speakeasyVersion: 1.422.1
speakeasyVersion: 1.424.0
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:31c94056ebc941cdfcf3fd4ba5e04880e978740963f7ce79169ba66cd033d74d
sourceRevisionDigest: sha256:a021df00d899b4a9c10656edde506318d3824d78b51e0f15f5af3f4b4e2633a3
sourceBlobDigest: sha256:27e4879df402e924f9f65d336ea6d2fc8b16a00b87b4a802866238f7e9f639d3
tags:
- latest
Expand All @@ -11,7 +11,7 @@ targets:
unstructured-python:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:31c94056ebc941cdfcf3fd4ba5e04880e978740963f7ce79169ba66cd033d74d
sourceRevisionDigest: sha256:a021df00d899b4a9c10656edde506318d3824d78b51e0f15f5af3f4b4e2633a3
sourceBlobDigest: sha256:27e4879df402e924f9f65d336ea6d2fc8b16a00b87b4a802866238f7e9f639d3
workflow:
workflowVersion: 1.0.0
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -714,4 +714,14 @@ Based on:
### Generated
- [python v0.26.2] .
### Releases
- [PyPI v0.26.2] https://pypi.org/project/unstructured-client/0.26.2 - .
- [PyPI v0.26.2] https://pypi.org/project/unstructured-client/0.26.2 - .

## 2024-11-04 00:09:48
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.424.0 (2.445.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.27.0] .
### Releases
- [PyPI v0.27.0] https://pypi.org/project/unstructured-client/0.27.0 - .
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
python:
version: 0.26.2
version: 0.27.0
additionalDependencies:
dev:
deepdiff: '>=6.0'
Expand Down
194 changes: 97 additions & 97 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "unstructured-client"
version = "0.26.2"
version = "0.27.0"
description = "Python Client SDK for Unstructured API"
authors = ["Unstructured",]
readme = "README-PYPI.md"
Expand All @@ -24,7 +24,7 @@ eval-type-backport = "^0.2.0"
httpx = ">=0.27.0"
jsonpath-python = "^1.0.6"
nest-asyncio = ">=1.6.0"
pydantic = "~2.9.0"
pydantic = "~2.9.2"
pypdf = ">=4.0"
python-dateutil = "2.8.2"
requests-toolbelt = ">=1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/unstructured_client/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import importlib.metadata

__title__: str = "unstructured-client"
__version__: str = "0.26.2"
__version__: str = "0.27.0"

try:
if __package__ is not None:
Expand Down
6 changes: 3 additions & 3 deletions src/unstructured_client/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ class SDKConfiguration:
server: Optional[str] = ""
language: str = "python"
openapi_doc_version: str = "1.0.51"
sdk_version: str = "0.26.2"
gen_version: str = "2.438.15"
user_agent: str = "speakeasy-sdk/python 0.26.2 2.438.15 1.0.51 unstructured-client"
sdk_version: str = "0.27.0"
gen_version: str = "2.445.1"
user_agent: str = "speakeasy-sdk/python 0.27.0 2.445.1 1.0.51 unstructured-client"
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
timeout_ms: Optional[int] = None

Expand Down