Skip to content

chore: 🐝 Update SDK - Generate #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 10, 2024
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
4 changes: 2 additions & 2 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: 1.0.33
speakeasyVersion: 1.300.1
generationVersion: 2.339.1
releaseVersion: 0.23.2
configChecksum: a468a45a33e1c1f49b439ef4ac9f9de9
releaseVersion: 0.23.3
configChecksum: 91a382013e2cda44b21c580620de3424
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ speakeasyVersion: 1.300.1
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:2d784171c0d3cf861c9b0e03a73d0eb4e99bdd1dd73f59aaf11490110af5f4ac
sourceBlobDigest: sha256:9f004e6ecd506c665f6de41a3b5c6d6dc0918c0df0680808e6a218d9b86d24b8
sourceRevisionDigest: sha256:a621cbff6995a7d971a973cc7abe784ebf6f6cd5da0c305c06cc1759674cf95a
sourceBlobDigest: sha256:c4508c75038ffde557290925e80d31c169551a1f1ef948833ff7779d63c6881a
tags:
- latest
- main
targets:
unstructured-python:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:2d784171c0d3cf861c9b0e03a73d0eb4e99bdd1dd73f59aaf11490110af5f4ac
sourceBlobDigest: sha256:9f004e6ecd506c665f6de41a3b5c6d6dc0918c0df0680808e6a218d9b86d24b8
sourceRevisionDigest: sha256:a621cbff6995a7d971a973cc7abe784ebf6f6cd5da0c305c06cc1759674cf95a
sourceBlobDigest: sha256:c4508c75038ffde557290925e80d31c169551a1f1ef948833ff7779d63c6881a
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 @@ -504,4 +504,14 @@ Based on:
### Generated
- [python v0.23.2] .
### Releases
- [PyPI v0.23.2] https://pypi.org/project/unstructured-client/0.23.2 - .
- [PyPI v0.23.2] https://pypi.org/project/unstructured-client/0.23.2 - .

## 2024-06-10 15:30:46
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.300.1 (2.339.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.23.3] .
### Releases
- [PyPI v0.23.3] https://pypi.org/project/unstructured-client/0.23.3 - .
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.23.2
version: 0.23.3
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.23.2',
version='0.23.3',
author='Unstructured',
description='Python Client SDK for Unstructured API',
license = 'MIT',
Expand Down
4 changes: 2 additions & 2 deletions src/unstructured_client/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ class SDKConfiguration:
server: Optional[str] = ''
language: str = 'python'
openapi_doc_version: str = '1.0.33'
sdk_version: str = '0.23.2'
sdk_version: str = '0.23.3'
gen_version: str = '2.339.1'
user_agent: str = 'speakeasy-sdk/python 0.23.2 2.339.1 1.0.33 unstructured-client'
user_agent: str = 'speakeasy-sdk/python 0.23.3 2.339.1 1.0.33 unstructured-client'
retry_config: Optional[RetryConfig] = None

def __post_init__(self):
Expand Down