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
12 changes: 6 additions & 6 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 8b5fa338-9106-4734-abf0-e30d67044a90
management:
docChecksum: 10d6e50c2142f9d44bc03cb74664a2c4
docVersion: 1.0.41
speakeasyVersion: 1.349.0
generationVersion: 2.382.0
releaseVersion: 0.25.1
configChecksum: 83450d02d23f7ebc3d13eb098b07b583
docChecksum: 47b6fa4630fd66b59c0579ce79bc6ce3
docVersion: 1.0.42
speakeasyVersion: 1.352.1
generationVersion: 2.385.1
releaseVersion: 0.25.2
configChecksum: a9359082a36d964c3b4ca401770510ea
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
speakeasyVersion: 1.349.0
speakeasyVersion: 1.352.1
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:6316cd6a8ea4254edfce7c25db49f21d835e0f0bfc4017caf81b1ba69551bc8b
sourceBlobDigest: sha256:1fe4394ff6a8c82e9eb10bc20c5bcec7537fb1b30229401b175a0dadf6767251
sourceRevisionDigest: sha256:204ce6bd0666235fd0364d4befe342a0a3ef1de2c7efb26c8c7347fb73c8de0e
sourceBlobDigest: sha256:29f4b5735bb7a333f2efcf0f1453e6c8281f7a04302837c07a92dc0e7b0115c4
tags:
- latest
- main
targets:
unstructured-python:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:6316cd6a8ea4254edfce7c25db49f21d835e0f0bfc4017caf81b1ba69551bc8b
sourceBlobDigest: sha256:1fe4394ff6a8c82e9eb10bc20c5bcec7537fb1b30229401b175a0dadf6767251
sourceRevisionDigest: sha256:204ce6bd0666235fd0364d4befe342a0a3ef1de2c7efb26c8c7347fb73c8de0e
sourceBlobDigest: sha256:29f4b5735bb7a333f2efcf0f1453e6c8281f7a04302837c07a92dc0e7b0115c4
outLocation: /github/workspace/repo
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 @@ -604,4 +604,14 @@ Based on:
### Generated
- [python v0.25.1] .
### Releases
- [PyPI v0.25.1] https://pypi.org/project/unstructured-client/0.25.1 - .
- [PyPI v0.25.1] https://pypi.org/project/unstructured-client/0.25.1 - .

## 2024-08-05 00:22:36
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.352.1 (2.385.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.25.2] .
### Releases
- [PyPI v0.25.2] https://pypi.org/project/unstructured-client/0.25.2 - .
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.25.1
version: 0.25.2
additionalDependencies:
dependencies:
deepdiff: '>=6.0'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setuptools.setup(
name='unstructured-client',
version='0.25.1',
version='0.25.2',
author='Unstructured',
description='Python Client SDK for Unstructured API',
license = 'MIT',
Expand Down
8 changes: 4 additions & 4 deletions src/unstructured_client/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ class SDKConfiguration:
server_url: Optional[str] = ''
server: Optional[str] = ''
language: str = 'python'
openapi_doc_version: str = '1.0.41'
sdk_version: str = '0.25.1'
gen_version: str = '2.382.0'
user_agent: str = 'speakeasy-sdk/python 0.25.1 2.382.0 1.0.41 unstructured-client'
openapi_doc_version: str = '1.0.42'
sdk_version: str = '0.25.2'
gen_version: str = '2.385.1'
user_agent: str = 'speakeasy-sdk/python 0.25.2 2.385.1 1.0.42 unstructured-client'
retry_config: Optional[RetryConfig] = None

def __post_init__(self):
Expand Down