Skip to content

Commit f06e34b

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.19.3
1 parent b027466 commit f06e34b

File tree

7 files changed

+43
-37
lines changed

7 files changed

+43
-37
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ s = speakeasy.Speakeasy(
2323

2424
req = operations.GetApisRequest(
2525
metadata={
26-
"deserunt": [
26+
"provident": [
27+
"quibusdam",
28+
"unde",
2729
"nulla",
28-
"id",
29-
"vero",
3030
],
31-
"perspiciatis": [
32-
"nihil",
33-
"fuga",
34-
"facilis",
35-
"eum",
31+
"corrupti": [
32+
"vel",
33+
"error",
34+
"deserunt",
35+
"suscipit",
3636
],
37-
"iusto": [
38-
"saepe",
39-
"inventore",
37+
"iure": [
38+
"debitis",
39+
"ipsa",
4040
],
4141
},
4242
op=operations.GetApisOp(
@@ -52,7 +52,7 @@ if res.apis is not None:
5252
<!-- End SDK Example Usage -->
5353

5454
<!-- Start SDK Available Operations -->
55-
## SDK Available Operations
55+
## Available Resources and Operations
5656

5757
### Speakeasy SDK
5858

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,4 +278,12 @@ Based on:
278278
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
279279
- Speakeasy CLI 1.19.2 (2.16.5) https://github.com/speakeasy-api/speakeasy
280280
### Releases
281-
- [PyPI v1.14.2] https://pypi.org/project/speakeasy-client-sdk-python/1.14.2 - .
281+
- [PyPI v1.14.2] https://pypi.org/project/speakeasy-client-sdk-python/1.14.2 - .
282+
283+
## 2023-04-01 00:10:36
284+
### Changes
285+
Based on:
286+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
287+
- Speakeasy CLI 1.19.3 (2.16.7) https://github.com/speakeasy-api/speakeasy
288+
### Releases
289+
- [PyPI v1.14.3] https://pypi.org/project/speakeasy-client-sdk-python/1.14.3 - .

USAGE.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ s = speakeasy.Speakeasy(
1212

1313
req = operations.GetApisRequest(
1414
metadata={
15-
"deserunt": [
15+
"provident": [
16+
"quibusdam",
17+
"unde",
1618
"nulla",
17-
"id",
18-
"vero",
1919
],
20-
"perspiciatis": [
21-
"nihil",
22-
"fuga",
23-
"facilis",
24-
"eum",
20+
"corrupti": [
21+
"vel",
22+
"error",
23+
"deserunt",
24+
"suscipit",
2525
],
26-
"iusto": [
27-
"saepe",
28-
"inventore",
26+
"iure": [
27+
"debitis",
28+
"ipsa",
2929
],
3030
},
3131
op=operations.GetApisOp(

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 2bba3b8f9d211b02569b3f9aff0d34b4
44
docVersion: 0.3.0
5-
speakeasyVersion: 1.19.2
6-
generationVersion: 2.16.5
5+
speakeasyVersion: 1.19.3
6+
generationVersion: 2.16.7
77
generation:
88
telemetryEnabled: true
99
sdkClassName: speakeasy
1010
sdkFlattening: true
1111
singleTagPerOp: false
1212
python:
13-
version: 1.14.2
13+
version: 1.14.3
1414
author: Speakeasy
1515
description: Speakeasy API Client SDK for Python
1616
packageName: speakeasy-client-sdk-python

pylintrc

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,7 @@ attr-naming-style=snake_case
124124
#attr-rgx=
125125

126126
# Bad variable names which should always be refused, separated by a comma.
127-
bad-names=foo,
128-
bar,
129-
baz,
130-
toto,
131-
tutu,
132-
tata
127+
bad-names=
133128

134129
# Bad variable names regexes, separated by a comma. If names match any regex,
135130
# they will always be refused
@@ -441,7 +436,10 @@ disable=raw-checker-failed,
441436
trailing-newlines,
442437
too-many-public-methods,
443438
too-many-locals,
444-
too-many-lines
439+
too-many-lines,
440+
using-constant-test,
441+
too-many-statements,
442+
cyclic-import,
445443

446444
# Enable the message, report, category or checker with the given id(s). You can
447445
# either give multiple identifier separated by comma (,) or put this option

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="speakeasy-client-sdk-python",
13-
version="1.14.2",
13+
version="1.14.3",
1414
author="Speakeasy",
1515
description="Speakeasy API Client SDK for Python",
1616
long_description=long_description,

src/speakeasy/sdk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class Speakeasy:
4141
_security_client: requests_http.Session
4242
_server_url: str = SERVERS[SERVER_PROD]
4343
_language: str = "python"
44-
_sdk_version: str = "1.14.2"
45-
_gen_version: str = "2.16.5"
44+
_sdk_version: str = "1.14.3"
45+
_gen_version: str = "2.16.7"
4646

4747
def __init__(self,
4848
security: shared.Security = None,

0 commit comments

Comments
 (0)