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
6 changes: 3 additions & 3 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: 2cabb51a37782b691a9f16fbbf8df52b
docVersion: 1.0.33
speakeasyVersion: 1.299.6
speakeasyVersion: 1.299.7
generationVersion: 2.338.12
releaseVersion: 0.27.1
configChecksum: be7515df9b3a3a127ec54c60f405dc64
releaseVersion: 0.23.0
configChecksum: c451a545ab58abbd26cd9ffb7fb32e98
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
Expand Down
13 changes: 8 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
speakeasyVersion: 1.299.6
speakeasyVersion: 1.299.7
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:90bd16aaed9a9bfefbf815e309c927f19491bd472b7c1f7f56dab7bf4a4c2dc7
sourceBlobDigest: sha256:6d2271499f0b5dd811144b3e1857443c6401e45229627f3078f88672f655334c
sourceRevisionDigest: sha256:29730cd6d9ea733e1974ee5f90b11774f0a5c308eddad34250d93787d5a9d0c3
sourceBlobDigest: sha256:110f9538009774e75d0a6cbc32c3d8651a0bc9223e397d34a8956b6394495ea5
tags:
- latest
- main
targets:
unstructured-python:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:90bd16aaed9a9bfefbf815e309c927f19491bd472b7c1f7f56dab7bf4a4c2dc7
sourceBlobDigest: sha256:6d2271499f0b5dd811144b3e1857443c6401e45229627f3078f88672f655334c
sourceRevisionDigest: sha256:29730cd6d9ea733e1974ee5f90b11774f0a5c308eddad34250d93787d5a9d0c3
sourceBlobDigest: sha256:110f9538009774e75d0a6cbc32c3d8651a0bc9223e397d34a8956b6394495ea5
outLocation: /github/workspace/repo
workflow:
workflowVersion: 1.0.0
Expand All @@ -29,5 +29,8 @@ workflow:
unstructured-python:
target: python
source: my-source
publish:
pypi:
token: $PYPI_TOKEN
codeSamples:
output: codeSamples.yaml
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,4 +474,14 @@ Based on:
### Generated
- [python v0.22.0] .
### Releases
- [PyPI v0.22.0] https://pypi.org/project/unstructured-client/0.22.0 - .
- [PyPI v0.22.0] https://pypi.org/project/unstructured-client/0.22.0 - .

## 2024-06-05 00:02:19
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.299.7 (2.338.12) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.23.0] .
### Releases
- [PyPI v0.23.0] https://pypi.org/project/unstructured-client/0.23.0 - .
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.27.1',
version='0.23.0',
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.27.1'
sdk_version: str = '0.23.0'
gen_version: str = '2.338.12'
user_agent: str = 'speakeasy-sdk/python 0.27.1 2.338.12 1.0.33 unstructured-client'
user_agent: str = 'speakeasy-sdk/python 0.23.0 2.338.12 1.0.33 unstructured-client'
retry_config: Optional[RetryConfig] = None

def __post_init__(self):
Expand Down