File tree Expand file tree Collapse file tree 6 files changed +18
-9
lines changed Expand file tree Collapse file tree 6 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -518,4 +518,12 @@ Based on:
518518- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
519519- Speakeasy CLI 1.42.3 (2.35.3) https://github.com/speakeasy-api/speakeasy
520520### Releases
521- - [ PyPI v1.31.0] https://pypi.org/project/speakeasy-client-sdk-python/1.31.0 - .
521+ - [ PyPI v1.31.0] https://pypi.org/project/speakeasy-client-sdk-python/1.31.0 - .
522+
523+ ## 2023-06-07 00:11:54
524+ ### Changes
525+ Based on:
526+ - OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
527+ - Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
528+ ### Releases
529+ - [ PyPI v1.31.1] https://pypi.org/project/speakeasy-client-sdk-python/1.31.1 - .
Original file line number Diff line number Diff line change 22
33## Overview
44
5- The Speakeasy API allows teams to manage common operations with their APIs
5+ Speakeasy API: The Speakeasy API allows teams to manage common operations with their APIs
66
77The Speakeasy Platform Documentation
88< https://docs.speakeasyapi.dev >
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ configVersion: 1.0.0
22management :
33 docChecksum : 2bba3b8f9d211b02569b3f9aff0d34b4
44 docVersion : 0.3.0
5- speakeasyVersion : 1.42.3
6- generationVersion : 2.35.3
5+ speakeasyVersion : 1.44.2
6+ generationVersion : 2.35.9
77generation :
88 sdkClassName : speakeasy
99 singleTagPerOp : false
1010 telemetryEnabled : true
1111python :
12- version : 1.31.0
12+ version : 1.31.1
1313 author : Speakeasy
1414 description : Speakeasy API Client SDK for Python
1515 maxMethodParams : 0
Original file line number Diff line number Diff line change 1010
1111setuptools .setup (
1212 name = "speakeasy-client-sdk-python" ,
13- version = "1.31.0 " ,
13+ version = "1.31.1 " ,
1414 author = "Speakeasy" ,
1515 description = "Speakeasy API Client SDK for Python" ,
1616 long_description = long_description ,
Original file line number Diff line number Diff line change 1414from typing import Optional
1515
1616class Speakeasy :
17- r"""The Speakeasy API allows teams to manage common operations with their APIs
17+ r"""Speakeasy API: The Speakeasy API allows teams to manage common operations with their APIs
1818 https://docs.speakeasyapi.dev - The Speakeasy Platform Documentation
1919 """
2020 api_endpoints : APIEndpoints
Original file line number Diff line number Diff line change 33import requests
44from dataclasses import dataclass
55
6+
67SERVER_PROD = 'prod'
78SERVERS = {
89 SERVER_PROD : 'https://api.prod.speakeasyapi.dev' ,
@@ -17,8 +18,8 @@ class SDKConfiguration:
1718 server_url : str = ''
1819 server : str = ''
1920 language : str = 'python'
20- sdk_version : str = '1.31.0 '
21- gen_version : str = '2.35.3 '
21+ sdk_version : str = '1.31.1 '
22+ gen_version : str = '2.35.9 '
2223
2324 def get_server_details (self ) -> tuple [str , dict [str , str ]]:
2425 if self .server_url :
You can’t perform that action at this time.
0 commit comments