Skip to content

Commit 5a4b0b3

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.351.1
1 parent a1f43bc commit 5a4b0b3

File tree

73 files changed

+369
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+369
-232
lines changed

.speakeasy/gen.lock

+8-7
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
33
management:
44
docChecksum: 312822a7ccdbf7c77dbbfeef49fb2053
55
docVersion: 0.4.0 .
6-
speakeasyVersion: 1.346.3
7-
generationVersion: 2.379.6
8-
releaseVersion: 6.3.0
9-
configChecksum: 511764c1ed21807dbbda4fcd048339ff
6+
speakeasyVersion: 1.351.1
7+
generationVersion: 2.384.3
8+
releaseVersion: 7.0.0-rc.0
9+
configChecksum: 1d686a63e7865a7b7cb6ff50fbdaeda1
1010
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
@@ -15,11 +15,11 @@ features:
1515
python:
1616
acceptHeaders: 3.0.0
1717
additionalDependencies: 1.0.0
18-
core: 5.2.4
18+
core: 5.3.1
1919
defaultEnabledRetries: 0.2.0
2020
deprecations: 3.0.0
21-
downloadStreams: 1.0.0
22-
envVarSecurityUsage: 0.2.0
21+
downloadStreams: 1.0.1
22+
envVarSecurityUsage: 0.2.1
2323
examples: 3.0.0
2424
globalSecurity: 3.0.0
2525
globalSecurityCallbacks: 1.0.0
@@ -69,6 +69,7 @@ generatedFiles:
6969
- src/speakeasy_client_sdk_python/utils/eventstreaming.py
7070
- src/speakeasy_client_sdk_python/utils/forms.py
7171
- src/speakeasy_client_sdk_python/utils/headers.py
72+
- src/speakeasy_client_sdk_python/utils/logger.py
7273
- src/speakeasy_client_sdk_python/utils/metadata.py
7374
- src/speakeasy_client_sdk_python/utils/queryparams.py
7475
- src/speakeasy_client_sdk_python/utils/requestbodies.py

.speakeasy/gen.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ generation:
1111
oAuth2ClientCredentialsEnabled: false
1212
python:
1313
version: 7.0.0-rc.0
14+
additionalDependencies:
15+
dev: {}
16+
main: {}
1417
authors:
1518
- Speakeasy
1619
clientServerStatusCodesAsErrors: true

.speakeasy/workflow.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
speakeasyVersion: 1.346.3
1+
speakeasyVersion: 1.351.1
22
sources:
33
speakeasy-openapi:
44
sourceNamespace: speakeasy-openapi
5-
sourceRevisionDigest: sha256:d406788bc634eed35f120d28218a266db43ece356bf8604e3d0e58c11186990e
6-
sourceBlobDigest: sha256:469530993014d334b464cacfcc662663e2e72db61a1ad2838b91e4c8fab4f3f3
5+
sourceRevisionDigest: sha256:02836429166e1c637402f0f067f36aed1706d9ee7693eee13cd84382cdcc8df4
6+
sourceBlobDigest: sha256:e3e8d5f794c2d732b4bee571c092e80d1aaf1a5e3e998300b313ee4b8f9fc012
77
tags:
88
- latest
99
- main
1010
targets:
1111
speakeasy-client-sdk-python:
1212
source: speakeasy-openapi
1313
sourceNamespace: speakeasy-openapi
14-
sourceRevisionDigest: sha256:d406788bc634eed35f120d28218a266db43ece356bf8604e3d0e58c11186990e
15-
sourceBlobDigest: sha256:469530993014d334b464cacfcc662663e2e72db61a1ad2838b91e4c8fab4f3f3
14+
sourceRevisionDigest: sha256:02836429166e1c637402f0f067f36aed1706d9ee7693eee13cd84382cdcc8df4
15+
sourceBlobDigest: sha256:e3e8d5f794c2d732b4bee571c092e80d1aaf1a5e3e998300b313ee4b8f9fc012
1616
outLocation: /github/workspace/repo
1717
workflow:
1818
workflowVersion: 1.0.0

README.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -541,14 +541,14 @@ s = Speakeasy(
541541

542542

543543
res = s.schemas.register_schema(request={
544+
"api_id": "<value>",
545+
"version_id": "<value>",
544546
"request_body": {
545547
"file": {
546548
"content": open("<file_path>", "rb"),
547549
"file_name": "your_file_here",
548550
},
549551
},
550-
"api_id": "<value>",
551-
"version_id": "<value>",
552552
})
553553

554554
if res is not None:
@@ -558,6 +558,20 @@ if res is not None:
558558
```
559559
<!-- End File uploads [file-upload] -->
560560

561+
<!-- Start Debugging [debug] -->
562+
## Debugging
563+
564+
To emit debug logs for SDK requests and responses you can pass a logger object directly into your SDK object.
565+
566+
```python
567+
from speakeasy_client_sdk_python import Speakeasy
568+
import logging
569+
570+
logging.basicConfig(level=logging.DEBUG)
571+
s = Speakeasy(debug_logger=logging.getLogger("speakeasy_client_sdk_python"))
572+
```
573+
<!-- End Debugging [debug] -->
574+
561575
<!-- Placeholder for Future Speakeasy SDK Sections -->
562576

563577

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1766,4 +1766,14 @@ Based on:
17661766
### Generated
17671767
- [python v6.3.0] .
17681768
### Releases
1769-
- [PyPI v6.3.0] https://pypi.org/project/speakeasy-client-sdk-python/6.3.0 - .
1769+
- [PyPI v6.3.0] https://pypi.org/project/speakeasy-client-sdk-python/6.3.0 - .
1770+
1771+
## 2024-08-01 18:11:22
1772+
### Changes
1773+
Based on:
1774+
- OpenAPI Doc
1775+
- Speakeasy CLI 1.351.1 (2.384.3) https://github.com/speakeasy-api/speakeasy
1776+
### Generated
1777+
- [python v7.0.0-rc.0] .
1778+
### Releases
1779+
- [PyPI v7.0.0-rc.0] https://pypi.org/project/speakeasy-client-sdk-python/7.0.0-rc.0 - .

docs/models/operations/deleteapiendpointrequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description |
77
| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
8-
| `api_endpoint_id` | *str* | :heavy_check_mark: | The ID of the ApiEndpoint to delete. |
98
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api the ApiEndpoint belongs to. |
10-
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api the ApiEndpoint belongs to. |
9+
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api the ApiEndpoint belongs to. |
10+
| `api_endpoint_id` | *str* | :heavy_check_mark: | The ID of the ApiEndpoint to delete. |

docs/models/operations/deleteschemarequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
| Field | Type | Required | Description |
77
| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
88
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api to delete schemas for. |
9-
| `revision_id` | *str* | :heavy_check_mark: | The revision ID of the schema to delete. |
10-
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to delete metadata for. |
9+
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to delete metadata for. |
10+
| `revision_id` | *str* | :heavy_check_mark: | The revision ID of the schema to delete. |

docs/models/operations/deleteversionmetadatarequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
| Field | Type | Required | Description |
77
| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
88
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api to delete metadata for. |
9+
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to delete metadata for. |
910
| `meta_key` | *str* | :heavy_check_mark: | The key of the metadata to delete. |
10-
| `meta_value` | *str* | :heavy_check_mark: | The value of the metadata to delete. |
11-
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to delete metadata for. |
11+
| `meta_value` | *str* | :heavy_check_mark: | The value of the metadata to delete. |

docs/models/operations/downloadschemarevisionrequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
| Field | Type | Required | Description |
77
| ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------- |
88
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api to retrieve schemas for. |
9-
| `revision_id` | *str* | :heavy_check_mark: | The revision ID of the schema to retrieve. |
10-
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to delete metadata for. |
9+
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to delete metadata for. |
10+
| `revision_id` | *str* | :heavy_check_mark: | The revision ID of the schema to retrieve. |

docs/models/operations/findapiendpointrequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
88
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api the ApiEndpoint belongs to. |
9-
| `display_name` | *str* | :heavy_check_mark: | The displayName of the ApiEndpoint to find (set by operationId from OpenAPI schema). |
10-
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api the ApiEndpoint belongs to. |
9+
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api the ApiEndpoint belongs to. |
10+
| `display_name` | *str* | :heavy_check_mark: | The displayName of the ApiEndpoint to find (set by operationId from OpenAPI schema). |

docs/models/operations/generateopenapispecforapiendpointrequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
8-
| `api_endpoint_id` | *str* | :heavy_check_mark: | The ID of the ApiEndpoint to generate an OpenAPI specification for. |
98
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api to generate an OpenAPI specification for. |
10-
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to generate an OpenAPI specification for. |
9+
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to generate an OpenAPI specification for. |
10+
| `api_endpoint_id` | *str* | :heavy_check_mark: | The ID of the ApiEndpoint to generate an OpenAPI specification for. |

docs/models/operations/generatepostmancollectionforapiendpointrequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
| Field | Type | Required | Description |
77
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
8-
| `api_endpoint_id` | *str* | :heavy_check_mark: | The ID of the ApiEndpoint to generate a Postman collection for. |
98
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api to generate a Postman collection for. |
10-
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to generate a Postman collection for. |
9+
| `version_id` | *str* | :heavy_check_mark: | The version ID of the Api to generate a Postman collection for. |
10+
| `api_endpoint_id` | *str* | :heavy_check_mark: | The ID of the ApiEndpoint to generate a Postman collection for. |

docs/models/operations/getallapiversionsrequest.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
| Field | Type | Required | Description |
77
| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- |
88
| `api_id` | *str* | :heavy_check_mark: | The ID of the Api to retrieve. |
9-
| `metadata` | Dict[str, List[*str*]] | :heavy_minus_sign: | Metadata to filter Apis on |
10-
| `op` | [Optional[operations.Op]](../../models/operations/op.md) | :heavy_minus_sign: | Configuration for filter operations |
9+
| `op` | [Optional[operations.Op]](../../models/operations/op.md) | :heavy_minus_sign: | Configuration for filter operations |
10+
| `metadata` | Dict[str, List[*str*]] | :heavy_minus_sign: | Metadata to filter Apis on |

0 commit comments

Comments
 (0)