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:
518
518
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
519
519
- Speakeasy CLI 1.42.3 (2.35.3) https://github.com/speakeasy-api/speakeasy
520
520
### 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 2
2
3
3
## Overview
4
4
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
6
6
7
7
The Speakeasy Platform Documentation
8
8
< https://docs.speakeasyapi.dev >
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ configVersion: 1.0.0
2
2
management :
3
3
docChecksum : 2bba3b8f9d211b02569b3f9aff0d34b4
4
4
docVersion : 0.3.0
5
- speakeasyVersion : 1.42.3
6
- generationVersion : 2.35.3
5
+ speakeasyVersion : 1.44.2
6
+ generationVersion : 2.35.9
7
7
generation :
8
8
sdkClassName : speakeasy
9
9
singleTagPerOp : false
10
10
telemetryEnabled : true
11
11
python :
12
- version : 1.31.0
12
+ version : 1.31.1
13
13
author : Speakeasy
14
14
description : Speakeasy API Client SDK for Python
15
15
maxMethodParams : 0
Original file line number Diff line number Diff line change 10
10
11
11
setuptools .setup (
12
12
name = "speakeasy-client-sdk-python" ,
13
- version = "1.31.0 " ,
13
+ version = "1.31.1 " ,
14
14
author = "Speakeasy" ,
15
15
description = "Speakeasy API Client SDK for Python" ,
16
16
long_description = long_description ,
Original file line number Diff line number Diff line change 14
14
from typing import Optional
15
15
16
16
class 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
18
18
https://docs.speakeasyapi.dev - The Speakeasy Platform Documentation
19
19
"""
20
20
api_endpoints : APIEndpoints
Original file line number Diff line number Diff line change 3
3
import requests
4
4
from dataclasses import dataclass
5
5
6
+
6
7
SERVER_PROD = 'prod'
7
8
SERVERS = {
8
9
SERVER_PROD : 'https://api.prod.speakeasyapi.dev' ,
@@ -17,8 +18,8 @@ class SDKConfiguration:
17
18
server_url : str = ''
18
19
server : str = ''
19
20
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 '
22
23
23
24
def get_server_details (self ) -> tuple [str , dict [str , str ]]:
24
25
if self .server_url :
You can’t perform that action at this time.
0 commit comments