Skip to content

chore: 🐝 Update SDK - Generate #22

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 2 commits into from
Jan 5, 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
53 changes: 53 additions & 0 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
lockVersion: 2.0.0
id: 8b5fa338-9106-4734-abf0-e30d67044a90
management:
docChecksum: bf57420eebd40f2b1d166092f01e3927
docVersion: 0.0.1
speakeasyVersion: internal
generationVersion: 2.225.2
releaseVersion: 0.15.1
configChecksum: 522a54d9ee1c9007d9986dcf21cb7fd1
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
published: true
features:
python:
core: 4.4.0
examples: 2.81.3
globalSecurity: 2.83.1
globalServerURLs: 2.82.1
nameOverrides: 2.81.1
retries: 2.82.0
serverIDs: 2.81.1
unions: 2.82.5
generatedFiles:
- src/unstructured_client/sdkconfiguration.py
- src/unstructured_client/general.py
- src/unstructured_client/sdk.py
- pylintrc
- setup.py
- src/unstructured_client/__init__.py
- src/unstructured_client/utils/__init__.py
- src/unstructured_client/utils/retries.py
- src/unstructured_client/utils/utils.py
- src/unstructured_client/models/errors/sdkerror.py
- tests/helpers.py
- src/unstructured_client/models/operations/partition.py
- src/unstructured_client/models/errors/httpvalidationerror.py
- src/unstructured_client/models/shared/validationerror.py
- src/unstructured_client/models/shared/partition_parameters.py
- src/unstructured_client/models/shared/security.py
- src/unstructured_client/models/__init__.py
- src/unstructured_client/models/errors/__init__.py
- src/unstructured_client/models/operations/__init__.py
- src/unstructured_client/models/shared/__init__.py
- docs/models/operations/partitionresponse.md
- docs/models/errors/httpvalidationerror.md
- docs/models/shared/loc.md
- docs/models/shared/validationerror.md
- docs/models/shared/files.md
- docs/models/shared/partitionparameters.md
- docs/models/shared/security.md
- USAGE.md
- .gitattributes
10 changes: 10 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,4 +314,14 @@ Based on:
### Generated
- [python v0.15.1] .
### Releases
- [PyPI v0.15.1] https://pypi.org/project/unstructured-client/0.15.1 - .

## 2024-01-05 00:19:29
### Changes
Based on:
- OpenAPI Doc 0.0.1
- Speakeasy CLI 1.130.1 (2.225.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.15.1] .
### Releases
- [PyPI v0.15.1] https://pypi.org/project/unstructured-client/0.15.1 - .
21 changes: 1 addition & 20 deletions gen.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,10 @@
configVersion: 1.0.0
management:
docChecksum: bf57420eebd40f2b1d166092f01e3927
docVersion: 0.0.1
speakeasyVersion: 1.129.1
generationVersion: 2.223.3
configVersion: 2.0.0
generation:
comments: {}
sdkClassName: unstructured_client
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
usageSnippets:
optionalPropertyRendering: withExample
fixes:
nameResolutionDec2023: false
features:
python:
core: 4.3.1
examples: 2.81.3
globalSecurity: 2.83.1
globalServerURLs: 2.82.1
nameOverrides: 2.81.1
retries: 2.82.0
serverIDs: 2.81.1
python:
version: 0.15.1
author: Unstructured
Expand All @@ -36,9 +20,6 @@ python:
shared: models/shared
webhooks: models/webhooks
inputModelSuffix: input
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
maxMethodParams: 0
outputModelSuffix: output
packageName: unstructured-client
published: true
repoSubDirectory: .
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"urllib3>=1.26.18",
],
extras_require={
"dev":["pylint==2.16.2"],
"dev":["pylint==2.16.2"]
},
package_dir={'': 'src'},
python_requires='>=3.8',
license="MIT License",
python_requires='>=3.8'
)
4 changes: 2 additions & 2 deletions src/unstructured_client/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class SDKConfiguration:
language: str = 'python'
openapi_doc_version: str = '0.0.1'
sdk_version: str = '0.15.1'
gen_version: str = '2.223.3'
user_agent: str = 'speakeasy-sdk/python 0.15.1 2.223.3 0.0.1 unstructured-client'
gen_version: str = '2.225.2'
user_agent: str = 'speakeasy-sdk/python 0.15.1 2.225.2 0.0.1 unstructured-client'
retry_config: RetryConfig = None

def get_server_details(self) -> Tuple[str, Dict[str, str]]:
Expand Down