Skip to content

Commit 53dfd3e

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeasy CLI 1.115.0
1 parent e9603a3 commit 53dfd3e

File tree

5 files changed

+20
-16
lines changed

5 files changed

+20
-16
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ It has been generated successfully based on your OpenAPI spec. However, it is no
1515
- [ ] 🎁 Publish your SDK to package managers by [configuring automatic publishing](https://www.speakeasyapi.dev/docs/productionize-sdks/publish-sdks)
1616
- [ ] ✨ When ready to productionize, delete this section from the README
1717
<!-- Start SDK Installation -->
18-
# SDK Installation
18+
## SDK Installation
1919

2020
```bash
2121
pip install ding_client_sdk
@@ -24,8 +24,7 @@ pip install ding_client_sdk
2424

2525
## SDK Example Usage
2626
<!-- Start SDK Example Usage -->
27-
28-
# Send a code
27+
## Send a code
2928
This example shows how to send an OTP code to a user's phone number.
3029

3130
```python
@@ -56,24 +55,22 @@ if res.create_authentication_response is not None:
5655
<!-- End SDK Example Usage -->
5756

5857
<!-- Start SDK Available Operations -->
59-
# Available Resources and Operations
58+
## Available Resources and Operations
6059

6160

62-
## [.otp](docs/sdks/otp/README.md)
61+
### [.otp](docs/sdks/otp/README.md)
6362

6463
* [check](docs/sdks/otp/README.md#check) - Check an authentication code
6564
* [create_autentication](docs/sdks/otp/README.md#create_autentication) - Create an authentication
6665
* [retry](docs/sdks/otp/README.md#retry) - Retry an authentication
6766

68-
## [.lookup](docs/sdks/lookup/README.md)
67+
### [.lookup](docs/sdks/lookup/README.md)
6968

7069
* [lookup](docs/sdks/lookup/README.md#lookup) - Lookup a phone number
7170
<!-- End SDK Available Operations -->
7271

7372
<!-- Start Dev Containers -->
7473

75-
76-
7774
<!-- End Dev Containers -->
7875

7976
<!-- Start Error Handling -->
@@ -198,12 +195,9 @@ http_client = requests.Session()
198195
http_client.headers.update({'x-custom-header': 'someValue'})
199196
s = ding.Ding(client: http_client)
200197
```
201-
202-
203198
<!-- End Custom HTTP Client -->
204199

205200
<!-- Start Authentication -->
206-
207201
# Authentication
208202

209203
## Per-Client Security Schemes

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,14 @@ Based on:
88
### Generated
99
- [python v0.1.0] .
1010
### Releases
11-
- [PyPI v0.1.0] https://pypi.org/project/ding_client_sdk/0.1.0 - .
11+
- [PyPI v0.1.0] https://pypi.org/project/ding_client_sdk/0.1.0 - .
12+
13+
## 2023-11-08 10:47:49
14+
### Changes
15+
Based on:
16+
- OpenAPI Doc 1.0.0
17+
- Speakeasy CLI 1.115.0 (2.183.0) https://github.com/speakeasy-api/speakeasy
18+
### Generated
19+
- [python v1.1.0] .
20+
### Releases
21+
- [PyPI v1.1.0] https://pypi.org/project/ding_client_sdk/1.1.0 - .

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ features:
1717
globalServerURLs: 2.82.0
1818
serverIDs: 2.81.1
1919
python:
20-
version: 1.0.0
20+
version: 1.1.0
2121
author: Ding
2222
clientServerStatusCodesAsErrors: true
2323
description: Ding's Python SDK

setup.py

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

1111
setuptools.setup(
1212
name="ding_client_sdk",
13-
version="0.1.0",
13+
version="1.1.0",
1414
author="Ding",
1515
description="Ding's Python SDK",
1616
long_description=long_description,

src/ding/sdkconfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ class SDKConfiguration:
2323
server: str = ''
2424
language: str = 'python'
2525
openapi_doc_version: str = '1.0.0'
26-
sdk_version: str = '0.1.0'
26+
sdk_version: str = '1.1.0'
2727
gen_version: str = '2.183.0'
28-
user_agent: str = 'speakeasy-sdk/python 0.1.0 2.183.0 1.0.0 ding_client_sdk'
28+
user_agent: str = 'speakeasy-sdk/python 1.1.0 2.183.0 1.0.0 ding_client_sdk'
2929
retry_config: RetryConfig = None
3030

3131
def get_server_details(self) -> Tuple[str, Dict[str, str]]:

0 commit comments

Comments
 (0)