Skip to content
Open
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
203 changes: 124 additions & 79 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ speakeasyVersion: 1.601.0
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:bb294c5acf766035792f752ed036cc8e4183e5f23b75fa5cb885b7499dcf6306
sourceBlobDigest: sha256:555b59cc03c5a4e9bfb3817e48dec67a8b8e13a6a46712cf5e23a6230fec359e
sourceRevisionDigest: sha256:1279a852d7894f376299674a3868477c5d3d002c6536991a37db76a59b9191f7
sourceBlobDigest: sha256:f80d6a7fce90ccdd87d79277de2d1c07e3ab624ceff2cdb91b55665e267b0e48
tags:
- latest
- speakeasy-sdk-regen-1768522382
- 1.2.28
- speakeasy-sdk-regen-1770164039
- 1.3.4
targets:
unstructured-python:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:bb294c5acf766035792f752ed036cc8e4183e5f23b75fa5cb885b7499dcf6306
sourceBlobDigest: sha256:555b59cc03c5a4e9bfb3817e48dec67a8b8e13a6a46712cf5e23a6230fec359e
sourceRevisionDigest: sha256:1279a852d7894f376299674a3868477c5d3d002c6536991a37db76a59b9191f7
sourceBlobDigest: sha256:f80d6a7fce90ccdd87d79277de2d1c07e3ab624ceff2cdb91b55665e267b0e48
codeSamplesNamespace: my-source-code-samples
codeSamplesRevisionDigest: sha256:4dd3dc9d9824533e6a8e70ef4a0db808b125deb8c266a62a99a11c64162b7595
codeSamplesRevisionDigest: sha256:489cf8fc218e3efced020d79d12139679006fac4b436e781d0f97a3effeccc49
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
10 changes: 10 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1190,4 +1190,14 @@ Based on:
### Generated
- [python v0.42.10] .
### Releases
- [PyPI v0.42.10] https://pypi.org/project/unstructured-client/0.42.10 - .

## 2026-02-12 00:15:09
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.42.10] .
### Releases
- [PyPI v0.42.10] https://pypi.org/project/unstructured-client/0.42.10 - .
6 changes: 3 additions & 3 deletions codeSamples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ actions:
"x-codeSamples":
- "lang": "python"
"label": "create_destination"
"source": "from unstructured_client import UnstructuredClient\nfrom unstructured_client.models import operations, shared\n\n\nwith UnstructuredClient() as uc_client:\n\n res = uc_client.destinations.create_destination(request=operations.CreateDestinationRequest(\n create_destination_connector=shared.CreateDestinationConnector(\n name=\"<value>\",\n type=shared.DestinationConnectorType.MOTHERDUCK,\n config={\n \"hosts\": [],\n \"index_name\": \"<value>\",\n },\n ),\n ))\n\n assert res.destination_connector_information is not None\n\n # Handle response\n print(res.destination_connector_information)"
"source": "from unstructured_client import UnstructuredClient\nfrom unstructured_client.models import operations, shared\n\n\nwith UnstructuredClient() as uc_client:\n\n res = uc_client.destinations.create_destination(request=operations.CreateDestinationRequest(\n create_destination_connector=shared.CreateDestinationConnector(\n name=\"<value>\",\n type=\"<value>\",\n config=shared.PineconeDestinationConnectorConfigInput(\n index_name=\"<value>\",\n api_key=\"<value>\",\n namespace=\"<value>\",\n batch_size=50,\n ),\n ),\n ))\n\n assert res.destination_connector_information is not None\n\n # Handle response\n print(res.destination_connector_information)"
- target: $["paths"]["/api/v1/destinations/{destination_id}"]["delete"]
update:
"x-codeSamples":
Expand Down Expand Up @@ -98,7 +98,7 @@ actions:
"x-codeSamples":
- "lang": "python"
"label": "create_source"
"source": "from unstructured_client import UnstructuredClient\nfrom unstructured_client.models import shared\n\n\nwith UnstructuredClient() as uc_client:\n\n res = uc_client.sources.create_source(request={\n \"create_source_connector\": {\n \"name\": \"<value>\",\n \"type\": shared.SourceConnectorType.DROPBOX,\n \"config\": {\n \"box_app_config\": \"<value>\",\n \"remote_url\": \"https://ugly-ribbon.info\",\n \"recursive\": True,\n },\n },\n })\n\n assert res.source_connector_information is not None\n\n # Handle response\n print(res.source_connector_information)"
"source": "from unstructured_client import UnstructuredClient\nfrom unstructured_client.models import operations, shared\n\n\nwith UnstructuredClient() as uc_client:\n\n res = uc_client.sources.create_source(request=operations.CreateSourceRequest(\n create_source_connector=shared.CreateSourceConnector(\n name=\"<value>\",\n type=shared.SourceConnectorType.BOX,\n config={\n \"host\": \"ugly-ribbon.info\",\n \"database\": \"<value>\",\n \"port\": 526676,\n \"username\": \"Albertha_Senger\",\n \"password\": \"jIalrq2izU8rFxd\",\n \"table_name\": \"<value>\",\n \"batch_size\": 637100,\n \"id_column\": \"id\",\n },\n ),\n ))\n\n assert res.source_connector_information is not None\n\n # Handle response\n print(res.source_connector_information)"
- target: $["paths"]["/api/v1/sources/{source_id}"]["delete"]
update:
"x-codeSamples":
Expand All @@ -116,7 +116,7 @@ actions:
"x-codeSamples":
- "lang": "python"
"label": "update_source"
"source": "from unstructured_client import UnstructuredClient\n\n\nwith UnstructuredClient() as uc_client:\n\n res = uc_client.sources.update_source(request={\n \"source_id\": \"6ddfe201-42c1-4097-a271-1fc2801d1903\",\n \"update_source_connector\": {\n \"config\": {\n \"bucket\": \"<value>\",\n \"connection_string\": \"<value>\",\n \"batch_size\": 615322,\n \"username\": \"Lue.Murphy87\",\n \"password\": \"qfyDYveMwvwoQEV\",\n \"collection_id\": \"<id>\",\n },\n },\n })\n\n assert res.source_connector_information is not None\n\n # Handle response\n print(res.source_connector_information)"
"source": "from unstructured_client import UnstructuredClient\nfrom unstructured_client.models import operations, shared\n\n\nwith UnstructuredClient() as uc_client:\n\n res = uc_client.sources.update_source(request=operations.UpdateSourceRequest(\n source_id=\"6ddfe201-42c1-4097-a271-1fc2801d1903\",\n update_source_connector=shared.UpdateSourceConnector(\n config={\n \"bucket\": \"<value>\",\n \"connection_string\": \"<value>\",\n \"batch_size\": 615322,\n \"username\": \"Lue.Murphy87\",\n \"password\": \"qfyDYveMwvwoQEV\",\n \"collection_id\": \"<id>\",\n },\n ),\n ))\n\n assert res.source_connector_information is not None\n\n # Handle response\n print(res.source_connector_information)"
- target: $["paths"]["/api/v1/sources/{source_id}/connection-check"]["get"]
update:
"x-codeSamples":
Expand Down
6 changes: 6 additions & 0 deletions docs/models/shared/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ value: shared.S3DestinationConnectorConfigInput = /* values here */
value: shared.SnowflakeDestinationConnectorConfigInput = /* values here */
```

### `shared.TeradataDestinationConnectorConfigInput`

```python
value: shared.TeradataDestinationConnectorConfigInput = /* values here */
```

### `shared.WeaviateDestinationConnectorConfigInput`

```python
Expand Down
7 changes: 7 additions & 0 deletions docs/models/shared/context.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Context


## Fields

| Field | Type | Required | Description |
| ----------- | ----------- | ----------- | ----------- |
10 changes: 5 additions & 5 deletions docs/models/shared/createdestinationconnector.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

## Fields

| Field | Type | Required | Description |
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
| `config` | [shared.Config](../../models/shared/config.md) | :heavy_check_mark: | N/A |
| `name` | *str* | :heavy_check_mark: | N/A |
| `type` | [shared.DestinationConnectorType](../../models/shared/destinationconnectortype.md) | :heavy_check_mark: | N/A |
| Field | Type | Required | Description |
| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
| `config` | [shared.Config](../../models/shared/config.md) | :heavy_check_mark: | N/A |
| `name` | *str* | :heavy_check_mark: | N/A |
| `type` | [shared.Type](../../models/shared/type.md) | :heavy_check_mark: | N/A |
2 changes: 1 addition & 1 deletion docs/models/shared/createsourceconnector.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| `config` | [shared.CreateSourceConnectorConfig](../../models/shared/createsourceconnectorconfig.md) | :heavy_check_mark: | N/A |
| `name` | *str* | :heavy_check_mark: | N/A |
| `type` | [shared.SourceConnectorType](../../models/shared/sourceconnectortype.md) | :heavy_check_mark: | N/A |
| `type` | [shared.CreateSourceConnectorType](../../models/shared/createsourceconnectortype.md) | :heavy_check_mark: | N/A |
6 changes: 6 additions & 0 deletions docs/models/shared/createsourceconnectorconfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ value: shared.SharePointSourceConnectorConfigInput = /* values here */
value: shared.SnowflakeSourceConnectorConfigInput = /* values here */
```

### `shared.TeradataSourceConnectorConfigInput`

```python
value: shared.TeradataSourceConnectorConfigInput = /* values here */
```

### `shared.JiraSourceConnectorConfigInput`

```python
Expand Down
17 changes: 17 additions & 0 deletions docs/models/shared/createsourceconnectortype.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# CreateSourceConnectorType


## Supported Types

### `shared.SourceConnectorType`

```python
value: shared.SourceConnectorType = /* values here */
```

### `str`

```python
value: str = /* values here */
```

2 changes: 1 addition & 1 deletion docs/models/shared/destinationconnectorinformation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
| `created_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | N/A |
| `id` | *str* | :heavy_check_mark: | N/A |
| `name` | *str* | :heavy_check_mark: | N/A |
| `type` | [shared.DestinationConnectorType](../../models/shared/destinationconnectortype.md) | :heavy_check_mark: | N/A |
| `type` | [shared.DestinationConnectorInformationType](../../models/shared/destinationconnectorinformationtype.md) | :heavy_check_mark: | N/A |
| `updated_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | N/A |
6 changes: 6 additions & 0 deletions docs/models/shared/destinationconnectorinformationconfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ value: shared.S3DestinationConnectorConfig = /* values here */
value: shared.SnowflakeDestinationConnectorConfig = /* values here */
```

### `shared.TeradataDestinationConnectorConfig`

```python
value: shared.TeradataDestinationConnectorConfig = /* values here */
```

### `shared.WeaviateDestinationConnectorConfig`

```python
Expand Down
17 changes: 17 additions & 0 deletions docs/models/shared/destinationconnectorinformationtype.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# DestinationConnectorInformationType


## Supported Types

### `shared.DestinationConnectorType`

```python
value: shared.DestinationConnectorType = /* values here */
```

### `str`

```python
value: str = /* values here */
```

1 change: 1 addition & 0 deletions docs/models/shared/destinationconnectortype.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@
| `QDRANT_CLOUD` | qdrant-cloud |
| `S3` | s3 |
| `SNOWFLAKE` | snowflake |
| `TERADATA` | teradata |
| `WEAVIATE_CLOUD` | weaviate-cloud |
| `IBM_WATSONX_S3` | ibm_watsonx_s3 |
9 changes: 5 additions & 4 deletions docs/models/shared/encryptiontype.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

## Values

| Name | Value |
| --------- | --------- |
| `RSA` | rsa |
| `RSA_AES` | rsa_aes |
| Name | Value |
| ---------------- | ---------------- |
| `RSA` | rsa |
| `RSA_AES` | rsa_aes |
| `RUNTIME_CONFIG` | runtime_config |
Loading