Skip to content

Commit dc14bee

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.74.3
1 parent 65bece9 commit dc14bee

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,4 +458,14 @@ Based on:
458458
### Generated
459459
- [python v0.32.0] .
460460
### Releases
461-
- [PyPI v0.32.0] https://pypi.org/project/airbyte-api/0.32.0 - .
461+
- [PyPI v0.32.0] https://pypi.org/project/airbyte-api/0.32.0 - .
462+
463+
## 2023-08-19 00:12:22
464+
### Changes
465+
Based on:
466+
- OpenAPI Doc 1.0.0
467+
- Speakeasy CLI 1.74.3 (2.86.6) https://github.com/speakeasy-api/speakeasy
468+
### Generated
469+
- [python v0.32.1] .
470+
### Releases
471+
- [PyPI v0.32.1] https://pypi.org/project/airbyte-api/0.32.1 - .

gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ configVersion: 1.0.0
22
management:
33
docChecksum: eaa9626014fcb80af2557b14d6630a48
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.73.1
6-
generationVersion: 2.84.3
5+
speakeasyVersion: 1.74.3
6+
generationVersion: 2.86.6
77
generation:
88
comments:
99
disableComments: false
@@ -15,12 +15,12 @@ generation:
1515
telemetryEnabled: true
1616
features:
1717
python:
18-
core: 2.82.0
18+
core: 2.82.1
1919
globalSecurity: 2.81.1
2020
globalServerURLs: 2.82.0
2121
includes: 2.81.1
2222
python:
23-
version: 0.32.0
23+
version: 0.32.1
2424
author: Airbyte
2525
description: Python Client SDK for Airbyte API
2626
maxMethodParams: 0

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="airbyte-api",
13-
version="0.32.0",
13+
version="0.32.1",
1414
author="Airbyte",
1515
description="Python Client SDK for Airbyte API",
1616
long_description=long_description,

src/airbyte/sdkconfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class SDKConfiguration:
1818
server_idx: int = 0
1919
language: str = 'python'
2020
openapi_doc_version: str = '1.0.0'
21-
sdk_version: str = '0.32.0'
22-
gen_version: str = '2.84.3'
21+
sdk_version: str = '0.32.1'
22+
gen_version: str = '2.86.6'
2323

2424
def get_server_details(self) -> tuple[str, dict[str, str]]:
2525
if self.server_url:

src/airbyte/utils/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,11 +675,11 @@ def _serialize_header(explode: bool, obj: any) -> str:
675675

676676

677677
def unmarshal_json(data, typ):
678-
unmarhsal = make_dataclass('Unmarhsal', [('res', typ)],
678+
unmarshal = make_dataclass('Unmarshal', [('res', typ)],
679679
bases=(DataClassJsonMixin,))
680680
json_dict = json.loads(data)
681681
try:
682-
out = unmarhsal.from_dict({"res": json_dict})
682+
out = unmarshal.from_dict({"res": json_dict})
683683
except AttributeError as attr_err:
684684
raise AttributeError(f'unable to unmarshal {data} as {typ}') from attr_err
685685
return out.res

0 commit comments

Comments
 (0)