File tree Expand file tree Collapse file tree 7 files changed +43
-37
lines changed Expand file tree Collapse file tree 7 files changed +43
-37
lines changed Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ s = speakeasy.Speakeasy(
23
23
24
24
req = operations.GetApisRequest(
25
25
metadata = {
26
- " deserunt" : [
26
+ " provident" : [
27
+ " quibusdam" ,
28
+ " unde" ,
27
29
" nulla" ,
28
- " id" ,
29
- " vero" ,
30
30
],
31
- " perspiciatis " : [
32
- " nihil " ,
33
- " fuga " ,
34
- " facilis " ,
35
- " eum " ,
31
+ " corrupti " : [
32
+ " vel " ,
33
+ " error " ,
34
+ " deserunt " ,
35
+ " suscipit " ,
36
36
],
37
- " iusto " : [
38
- " saepe " ,
39
- " inventore " ,
37
+ " iure " : [
38
+ " debitis " ,
39
+ " ipsa " ,
40
40
],
41
41
},
42
42
op = operations.GetApisOp(
@@ -52,7 +52,7 @@ if res.apis is not None:
52
52
<!-- End SDK Example Usage -->
53
53
54
54
<!-- Start SDK Available Operations -->
55
- ## SDK Available Operations
55
+ ## Available Resources and Operations
56
56
57
57
### Speakeasy SDK
58
58
Original file line number Diff line number Diff line change @@ -278,4 +278,12 @@ Based on:
278
278
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
279
279
- Speakeasy CLI 1.19.2 (2.16.5) https://github.com/speakeasy-api/speakeasy
280
280
### 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 - .
Original file line number Diff line number Diff line change @@ -12,20 +12,20 @@ s = speakeasy.Speakeasy(
12
12
13
13
req = operations.GetApisRequest(
14
14
metadata = {
15
- " deserunt" : [
15
+ " provident" : [
16
+ " quibusdam" ,
17
+ " unde" ,
16
18
" nulla" ,
17
- " id" ,
18
- " vero" ,
19
19
],
20
- " perspiciatis " : [
21
- " nihil " ,
22
- " fuga " ,
23
- " facilis " ,
24
- " eum " ,
20
+ " corrupti " : [
21
+ " vel " ,
22
+ " error " ,
23
+ " deserunt " ,
24
+ " suscipit " ,
25
25
],
26
- " iusto " : [
27
- " saepe " ,
28
- " inventore " ,
26
+ " iure " : [
27
+ " debitis " ,
28
+ " ipsa " ,
29
29
],
30
30
},
31
31
op = operations.GetApisOp(
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ configVersion: 1.0.0
2
2
management :
3
3
docChecksum : 2bba3b8f9d211b02569b3f9aff0d34b4
4
4
docVersion : 0.3.0
5
- speakeasyVersion : 1.19.2
6
- generationVersion : 2.16.5
5
+ speakeasyVersion : 1.19.3
6
+ generationVersion : 2.16.7
7
7
generation :
8
8
telemetryEnabled : true
9
9
sdkClassName : speakeasy
10
10
sdkFlattening : true
11
11
singleTagPerOp : false
12
12
python :
13
- version : 1.14.2
13
+ version : 1.14.3
14
14
author : Speakeasy
15
15
description : Speakeasy API Client SDK for Python
16
16
packageName : speakeasy-client-sdk-python
Original file line number Diff line number Diff line change @@ -124,12 +124,7 @@ attr-naming-style=snake_case
124
124
# attr-rgx=
125
125
126
126
# 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 =
133
128
134
129
# Bad variable names regexes, separated by a comma. If names match any regex,
135
130
# they will always be refused
@@ -441,7 +436,10 @@ disable=raw-checker-failed,
441
436
trailing-newlines,
442
437
too-many-public-methods,
443
438
too-many-locals,
444
- too-many-lines
439
+ too-many-lines,
440
+ using-constant-test,
441
+ too-many-statements,
442
+ cyclic-import,
445
443
446
444
# Enable the message, report, category or checker with the given id(s). You can
447
445
# either give multiple identifier separated by comma (,) or put this option
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.14.2 " ,
13
+ version = "1.14.3 " ,
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 @@ -41,8 +41,8 @@ class Speakeasy:
41
41
_security_client : requests_http .Session
42
42
_server_url : str = SERVERS [SERVER_PROD ]
43
43
_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 "
46
46
47
47
def __init__ (self ,
48
48
security : shared .Security = None ,
You can’t perform that action at this time.
0 commit comments