Skip to content

Commit a93c2f3

Browse files
committed
ci: regenerated with OpenAPI Doc 0.0.1, Speakeay CLI 1.91.3
1 parent ee5a074 commit a93c2f3

File tree

18 files changed

+140
-43
lines changed

18 files changed

+140
-43
lines changed

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,14 @@ Based on:
104104
### Generated
105105
- [python v0.6.0] .
106106
### Releases
107-
- [PyPI v0.6.0] https://pypi.org/project/unstructured-client/0.6.0 - .
107+
- [PyPI v0.6.0] https://pypi.org/project/unstructured-client/0.6.0 - .
108+
109+
## 2023-09-29 00:18:11
110+
### Changes
111+
Based on:
112+
- OpenAPI Doc 0.0.1
113+
- Speakeasy CLI 1.91.3 (2.139.1) https://github.com/speakeasy-api/speakeasy
114+
### Generated
115+
- [python v0.7.0] .
116+
### Releases
117+
- [PyPI v0.7.0] https://pypi.org/project/unstructured-client/0.7.0 - .

USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ req = shared.PartitionParameters(
1515
coordinates=False,
1616
encoding='utf-8',
1717
files=shared.PartitionParametersFiles(
18-
content='corrupti'.encode(),
19-
files='provident',
18+
content='+WmI5Q)|yy'.encode(),
19+
files='um',
2020
),
2121
gz_uncompressed_content_type='application/pdf',
2222
hi_res_model_name='yolox',

docs/models/errors/httpvalidationerror.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description |
7-
| ----------------------- | ----------------------- | ----------------------- | ----------------------- |
8-
| `detail` | list[*ValidationError*] | :heavy_minus_sign: | N/A |
6+
| Field | Type | Required | Description |
7+
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
8+
| `detail` | list[*errors.ValidationError*] | :heavy_minus_sign: | N/A |

docs/models/errors/validationerror.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description |
7-
| ------------------ | ------------------ | ------------------ | ------------------ |
8-
| `loc` | list[*Any*] | :heavy_check_mark: | N/A |
9-
| `msg` | *str* | :heavy_check_mark: | N/A |
10-
| `type` | *str* | :heavy_check_mark: | N/A |
6+
| Field | Type | Required | Description |
7+
| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
8+
| `loc` | list[[Union[str, int]](undefined/models/shared/validationerrorloc.md)] | :heavy_check_mark: | N/A |
9+
| `msg` | *Optional[str]* | :heavy_check_mark: | N/A |
10+
| `type` | *Optional[str]* | :heavy_check_mark: | N/A |

docs/models/operations/partitionresponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
8-
| `content_type` | *str* | :heavy_check_mark: | HTTP response content type for this operation |
8+
| `content_type` | *Optional[str]* | :heavy_check_mark: | HTTP response content type for this operation |
99
| `elements` | list[*Any*] | :heavy_minus_sign: | Successful Response |
10-
| `status_code` | *int* | :heavy_check_mark: | HTTP response status code for this operation |
10+
| `status_code` | *Optional[int]* | :heavy_check_mark: | HTTP response status code for this operation |
1111
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |

docs/models/shared/partitionparameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
88
| `coordinates` | *Optional[bool]* | :heavy_minus_sign: | If true, return coordinates for each element. Default: false | |
99
| `encoding` | *Optional[str]* | :heavy_minus_sign: | The encoding method used to decode the text input. Default: utf-8 | utf-8 |
10-
| `files` | [Optional[PartitionParametersFiles]](../../models/shared/partitionparametersfiles.md) | :heavy_minus_sign: | The file to extract | |
10+
| `files` | [Optional[shared.PartitionParametersFiles]](undefined/models/shared/partitionparametersfiles.md) | :heavy_minus_sign: | The file to extract | |
1111
| `gz_uncompressed_content_type` | *Optional[str]* | :heavy_minus_sign: | If file is gzipped, use this content type after unzipping | application/pdf |
1212
| `hi_res_model_name` | *Optional[str]* | :heavy_minus_sign: | The name of the inference model used when strategy is hi_res | yolox |
1313
| `include_page_breaks` | *Optional[bool]* | :heavy_minus_sign: | If True, the output will include page breaks if the filetype supports it. Default: false | |

docs/models/shared/partitionparametersfiles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
| Field | Type | Required | Description |
77
| ------------------ | ------------------ | ------------------ | ------------------ |
8-
| `content` | *bytes* | :heavy_check_mark: | N/A |
9-
| `files` | *str* | :heavy_check_mark: | N/A |
8+
| `content` | *Optional[bytes]* | :heavy_check_mark: | N/A |
9+
| `files` | *Optional[str]* | :heavy_check_mark: | N/A |

docs/models/shared/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
| Field | Type | Required | Description | Example |
77
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
8-
| `api_key_auth` | *str* | :heavy_check_mark: | N/A | YOUR_API_KEY |
8+
| `api_key_auth` | *Optional[str]* | :heavy_check_mark: | N/A | YOUR_API_KEY |
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# ValidationErrorLoc
2+
3+
4+
## Supported Types
5+
6+
###
7+
8+
```python
9+
validationErrorLoc: str = /* values here */
10+
```
11+
12+
###
13+
14+
```python
15+
validationErrorLoc: int = /* values here */
16+
```
17+

docs/sdks/general/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ req = shared.PartitionParameters(
2525
coordinates=False,
2626
encoding='utf-8',
2727
files=shared.PartitionParametersFiles(
28-
content='unde'.encode(),
29-
files='nulla',
28+
content='+WmI5Q)|yy'.encode(),
29+
files='um',
3030
),
3131
gz_uncompressed_content_type='application/pdf',
3232
hi_res_model_name='yolox',

0 commit comments

Comments
 (0)