Skip to content

Commit 6d17364

Browse files
committed
ci: regenerated with OpenAPI Doc 0.2.0, Speakeay CLI 1.0.0
1 parent a58af9a commit 6d17364

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

RELEASES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22

3-
## Version 1.0.0
3+
## Version 1.0.1
44
### Changes
55
Based on:
66
- OpenAPI Doc 0.2.0 https://docs.speakeasyapi.dev/openapi.yaml
77
- Speakeasy CLI 1.0.0 https://github.com/speakeasy-api/speakeasy
88
### Releases
9-
- [PyPI v1.0.0] https://pypi.org/project/speakeasy-client-sdk-python/1.0.0 - .
9+
- [PyPI v1.0.1] https://pypi.org/project/speakeasy-client-sdk-python/1.0.1 - .

gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
management:
2-
openapi-checksum: 85121b09180ffa7f639ebd829f945718
2+
openapi-checksum: 00ed1d6e3f9aae0492c8f1c9fa66e916
33
openapi-version: 0.2.0
44
speakeasy-version: 1.0.0
55
python:
6-
version: 1.0.0
6+
version: 1.0.1
77
packagename: speakeasy-client-sdk-python
88
author: Speakeasy
99
description: Speakeasy API Client SDK for Python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.setup(
1010
name="speakeasy-client-sdk-python",
11-
version="1.0.0",
11+
version="1.0.1",
1212
author="Speakeasy",
1313
description="Speakeasy API Client SDK for Python",
1414
long_description=long_description,

src/sdk/plugins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def run_plugin(self, request: operations.RunPluginRequest) -> operations.RunPlug
5454

5555
base_url = self._server_url
5656

57-
url = utils.generate_url(base_url, "/v1/plugin/{pluginID}", request.path_params)
57+
url = utils.generate_url(base_url, "/v1/plugins/{pluginID}", request.path_params)
5858

5959
query_params = utils.get_query_params(request.query_params)
6060

@@ -83,7 +83,7 @@ def upsert_plugin(self, request: operations.UpsertPluginRequest) -> operations.U
8383

8484
base_url = self._server_url
8585

86-
url = base_url.removesuffix("/") + "/v1/plugin"
86+
url = base_url.removesuffix("/") + "/v1/plugins"
8787

8888
headers = {}
8989
req_content_type, data, json, files = utils.serialize_request_body(request)

src/sdk/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class SDK:
3232
_security: shared.Security
3333
_server_url: str = SERVERS[SERVER_PROD]
3434
_language: str = "python"
35-
_sdk_version: str = "1.0.0"
35+
_sdk_version: str = "1.0.1"
3636
_gen_version: str = "1.0.0"
3737

3838
def __init__(self) -> None:

0 commit comments

Comments
 (0)