Skip to content

chore: 🐝 Update SDK - Generate #129

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
Jul 12, 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
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: 6d116a47ec6d55caaccd4c9ceb6e341c
docChecksum: 774e507b2df4f671362defe668d4d0d6
docVersion: 1.0.39
speakeasyVersion: 1.330.0
generationVersion: 2.361.10
releaseVersion: 0.24.0
configChecksum: da61d22f32b7c1b57a3c389245650c6f
speakeasyVersion: 1.335.0
generationVersion: 2.370.2
releaseVersion: 0.24.1
configChecksum: 7ebed47354cd1fd023aebb9420561b04
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: 0.1.0
constsAndDefaults: 0.1.3
core: 4.8.0
core: 4.8.1
examples: 2.81.3
globalSecurity: 2.83.5
globalSecurityCallbacks: 0.1.0
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.330.0
speakeasyVersion: 1.335.0
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:56339750ae8d81358107c474cba90dbdc2adc8a65a925b10b18e405be0af9522
sourceBlobDigest: sha256:35a5e15c4ae5413217329d934263b7fc5a54444fede7cec9cf9c3baaf5f5274e
sourceRevisionDigest: sha256:f10e0d137f19dffb5d454153726970d685470742c7a8d9371417d497011f39be
sourceBlobDigest: sha256:b90b7b4a3f5ad94dd55e1cbaa47ae166776a377cb529dde2e3f1996f7789dbda
tags:
- latest
- main
targets:
unstructured-python:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:56339750ae8d81358107c474cba90dbdc2adc8a65a925b10b18e405be0af9522
sourceBlobDigest: sha256:35a5e15c4ae5413217329d934263b7fc5a54444fede7cec9cf9c3baaf5f5274e
sourceRevisionDigest: sha256:f10e0d137f19dffb5d454153726970d685470742c7a8d9371417d497011f39be
sourceBlobDigest: sha256:b90b7b4a3f5ad94dd55e1cbaa47ae166776a377cb529dde2e3f1996f7789dbda
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 @@ -574,4 +574,14 @@ Based on:
### Generated
- [python v0.24.0] .
### Releases
- [PyPI v0.24.0] https://pypi.org/project/unstructured-client/0.24.0 - .
- [PyPI v0.24.0] https://pypi.org/project/unstructured-client/0.24.0 - .

## 2024-07-12 21:55:55
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.335.0 (2.370.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.24.1] .
### Releases
- [PyPI v0.24.1] https://pypi.org/project/unstructured-client/0.24.1 - .
4 changes: 4 additions & 0 deletions codeSamples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ actions:
content='0x2cC94b2FEF'.encode(),
),
strategy=shared.Strategy.AUTO,
split_pdf_page_range=[
1,
10,
],
),
))

Expand Down
60 changes: 30 additions & 30 deletions docs/models/shared/partitionparameters.md

Large diffs are not rendered by default.

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.24.0
version: 0.24.1
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.24.0',
version='0.24.1',
author='Unstructured',
description='Python Client SDK for Unstructured API',
license = 'MIT',
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 @@ -29,9 +29,9 @@ class SDKConfiguration:
server: Optional[str] = ''
language: str = 'python'
openapi_doc_version: str = '1.0.39'
sdk_version: str = '0.24.0'
gen_version: str = '2.361.10'
user_agent: str = 'speakeasy-sdk/python 0.24.0 2.361.10 1.0.39 unstructured-client'
sdk_version: str = '0.24.1'
gen_version: str = '2.370.2'
user_agent: str = 'speakeasy-sdk/python 0.24.1 2.370.2 1.0.39 unstructured-client'
retry_config: Optional[RetryConfig] = None

def __post_init__(self):
Expand Down