Skip to content

Commit 8470421

Browse files
committed
Revert "new version"
This reverts commit bd8d0a9.
1 parent 0c93267 commit 8470421

File tree

6 files changed

+33
-20
lines changed

6 files changed

+33
-20
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
.speakeasy/temp/
21
.speakeasy/reports
32
.venv/
43
README-PYPI.md
@@ -12,8 +11,10 @@ __pycache__/
1211
# human-added igore files
1312
.ipynb_checkpoints/
1413
.idea/
14+
1515
.local
1616
*.ipynb
17+
1718
openapi.json
1819
openapi_client.json
1920
openapi_serverless.json

.speakeasy/gen.lock

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 8b5fa338-9106-4734-abf0-e30d67044a90
33
management:
4-
docChecksum: 008302e535886666d303b5a03b8236c2
4+
docChecksum: 6433f28e5b70c3c0d7754fc7a88db327
55
docVersion: 1.1.7
6-
speakeasyVersion: 1.537.0
7-
generationVersion: 2.588.0
8-
releaseVersion: 0.34.0
9-
configChecksum: 0ba814fcbe0d0489903de407d36313af
6+
speakeasyVersion: 1.535.1
7+
generationVersion: 2.585.2
8+
releaseVersion: 0.33.1
9+
configChecksum: 8b5e7fbd95d040ba09964f3c97c3156a
1010
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
@@ -16,7 +16,7 @@ features:
1616
acceptHeaders: 3.0.0
1717
additionalDependencies: 1.0.0
1818
constsAndDefaults: 1.0.5
19-
core: 5.15.0
19+
core: 5.14.0
2020
defaultEnabledRetries: 0.2.0
2121
enumUnions: 0.1.0
2222
envVarSecurityUsage: 0.3.2
@@ -228,7 +228,6 @@ generatedFiles:
228228
- src/unstructured_client/_version.py
229229
- src/unstructured_client/basesdk.py
230230
- src/unstructured_client/destinations.py
231-
- src/unstructured_client/general.py
232231
- src/unstructured_client/httpclient.py
233232
- src/unstructured_client/jobs.py
234233
- src/unstructured_client/models/__init__.py
@@ -370,7 +369,6 @@ generatedFiles:
370369
- src/unstructured_client/types/basemodel.py
371370
- src/unstructured_client/utils/__init__.py
372371
- src/unstructured_client/utils/annotations.py
373-
- src/unstructured_client/utils/datetimes.py
374372
- src/unstructured_client/utils/enums.py
375373
- src/unstructured_client/utils/eventstreaming.py
376374
- src/unstructured_client/utils/forms.py
@@ -670,7 +668,7 @@ examples:
670668
"200":
671669
application/json: {"created_at": "2025-03-13T23:31:02.383Z", "id": "c3274f55-9861-4e4e-8526-4273aa4d2772", "status": "FAILURE"}
672670
"422":
673-
application/json: {"detail": "<value>"}
671+
application/json: {"detail": [{"loc": ["<value>"], "msg": "<value>", "type": "<value>"}, {"loc": [], "msg": "<value>", "type": "<value>"}, {"loc": [], "msg": "<value>", "type": "<value>"}]}
674672
create_connection_check_sources:
675673
speakeasy-default-create-connection-check-sources:
676674
parameters:
@@ -681,7 +679,7 @@ examples:
681679
"202":
682680
application/json: {"created_at": "2023-03-12T05:54:05.025Z", "id": "b5793adb-057f-470c-ae7e-309d786a99eb", "status": "SUCCESS"}
683681
"422":
684-
application/json: {"detail": "<value>"}
682+
application/json: {"detail": []}
685683
get_connection_check_sources:
686684
speakeasy-default-get-connection-check-sources:
687685
parameters:
@@ -692,6 +690,6 @@ examples:
692690
"200":
693691
application/json: {"created_at": "2023-09-12T00:38:55.692Z", "id": "f7d1d931-a753-4fe9-ae3f-671f188a9b55", "status": "SUCCESS"}
694692
"422":
695-
application/json: {"detail": "<value>"}
693+
application/json: {"detail": [{"loc": ["<value>"], "msg": "<value>", "type": "<value>"}, {"loc": [], "msg": "<value>", "type": "<value>"}]}
696694
examplesVersion: 1.0.1
697695
generatedTests: {}

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ generation:
1212
oAuth2ClientCredentialsEnabled: false
1313
oAuth2PasswordEnabled: false
1414
python:
15-
version: 0.34.0
15+
version: 0.33.1
1616
additionalDependencies:
1717
dev:
1818
deepdiff: '>=6.0'

poetry.lock

Lines changed: 15 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "unstructured-client"
3-
version = "0.34.0"
3+
version = "0.33.1"
44
description = "Python Client SDK for Unstructured API"
55
authors = [{ name = "Unstructured" },]
66
readme = "README-PYPI.md"
@@ -13,6 +13,7 @@ dependencies = [
1313
"nest-asyncio >=1.6.0",
1414
"pydantic >=2.11.2",
1515
"pypdf >=4.0",
16+
"python-dateutil >=2.8.2",
1617
"requests-toolbelt >=1.0.0",
1718
"typing-inspection >=0.4.0",
1819
]
@@ -40,6 +41,7 @@ pytest = ">=8.3.3"
4041
pytest-asyncio = ">=0.24.0"
4142
pytest-mock = ">=3.14.0"
4243
types-aiofiles = ">=24.1.0"
44+
types-python-dateutil = "^2.9.0.20240316"
4345
uvloop = ">=0.20.0"
4446

4547
[build-system]

src/unstructured_client/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
import importlib.metadata
44

55
__title__: str = "unstructured-client"
6-
__version__: str = "0.34.0"
6+
__version__: str = "0.33.1"
77
__openapi_doc_version__: str = "1.1.7"
8-
__gen_version__: str = "2.588.0"
9-
__user_agent__: str = "speakeasy-sdk/python 0.34.0 2.588.0 1.1.7 unstructured-client"
8+
__gen_version__: str = "2.585.2"
9+
__user_agent__: str = "speakeasy-sdk/python 0.33.1 2.585.2 1.1.7 unstructured-client"
1010

1111
try:
1212
if __package__ is not None:

0 commit comments

Comments
 (0)