Skip to content

Commit 07c029d

Browse files
committed
ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.19.3
1 parent 2bb5872 commit 07c029d

File tree

8 files changed

+24
-20
lines changed

8 files changed

+24
-20
lines changed

files/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if res.data is not None:
3434
<!-- End SDK Example Usage -->
3535

3636
<!-- Start SDK Available Operations -->
37-
## SDK Available Operations
37+
## Available Resources and Operations
3838

3939

4040
### files

files/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,12 @@ Based on:
166166
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Files.yaml
167167
- Speakeasy CLI 1.19.2 (2.16.5) https://github.com/speakeasy-api/speakeasy
168168
### Releases
169-
- [PyPI v0.8.3] https://pypi.org/project/codat-files/0.8.3 - files
169+
- [PyPI v0.8.3] https://pypi.org/project/codat-files/0.8.3 - files
170+
171+
## 2023-04-01 00:01:05
172+
### Changes
173+
Based on:
174+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Files.yaml
175+
- Speakeasy CLI 1.19.3 (2.16.7) https://github.com/speakeasy-api/speakeasy
176+
### Releases
177+
- [PyPI v0.8.4] https://pypi.org/project/codat-files/0.8.4 - files

files/gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 517ac0d80ce90d204de529d1478fe740
3+
docChecksum: 0448d3fa262ad61467ee7c9557114cb4
44
docVersion: 2.1.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: false
99
sdkClassName: codat
1010
sdkFlattening: true
1111
singleTagPerOp: false
1212
python:
13-
version: 0.8.3
13+
version: 0.8.4
1414
author: Speakeasy
1515
description: Python Client SDK Generated by Speakeasy
1616
packageName: codat-files

files/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
@@ -438,7 +433,10 @@ disable=raw-checker-failed,
438433
trailing-newlines,
439434
too-many-public-methods,
440435
too-many-locals,
441-
too-many-lines
436+
too-many-lines,
437+
using-constant-test,
438+
too-many-statements,
439+
cyclic-import,
442440

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

files/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="codat-files",
13-
version="0.8.3",
13+
version="0.8.4",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

files/src/codat/files.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ def upload_files(self, request: operations.UploadFilesRequest) -> operations.Upl
8888

8989
res = operations.UploadFilesResponse(status_code=http_res.status_code, content_type=content_type, raw_response=http_res)
9090

91-
if http_res.status_code == 200:
92-
pass
9391

9492
return res
9593

files/src/codat/models/shared/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class File:
1515
file_name: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('fileName'), 'exclude': lambda f: f is None }})
1616
source_type: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('sourceType'), 'exclude': lambda f: f is None }})
1717
uploaded: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('uploaded'), 'exclude': lambda f: f is None }})
18-
r"""In Codat's data model, dates and times are represented using the <a class=\"external\" href=\"https://en.wikipedia.org/wiki/ISO_8601\" target=\"_blank\">ISO 8601 standard</a>. Date and time fields are formatted as strings; for example:
18+
r"""In Codat's data model, dates and times are represented using the <a class=\\"external\\" href=\\"https://en.wikipedia.org/wiki/ISO_8601\\" target=\\"_blank\\">ISO 8601 standard</a>. Date and time fields are formatted as strings; for example:
1919
2020
```
2121
2020-10-08T22:40:50Z

files/src/codat/sdk.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Codat:
1818
1919
[Read more...](https://docs.codat.io/other/file-upload)
2020
21-
[See our OpenAPI spec](https://github.com/codatio/oas)
21+
[See our OpenAPI spec](https://github.com/codatio/oas)
2222
"""
2323
files: Files
2424
r"""Endpoints to manage uploaded files."""
@@ -27,8 +27,8 @@ class Codat:
2727
_security_client: requests_http.Session
2828
_server_url: str = SERVERS[0]
2929
_language: str = "python"
30-
_sdk_version: str = "0.8.3"
31-
_gen_version: str = "2.16.5"
30+
_sdk_version: str = "0.8.4"
31+
_gen_version: str = "2.16.7"
3232

3333
def __init__(self,
3434
security: shared.Security = None,

0 commit comments

Comments
 (0)