Skip to content

Commit 79332ab

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.47.1
1 parent 7dec53f commit 79332ab

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,12 @@ Based on:
238238
- OpenAPI Doc 1.0.0
239239
- Speakeasy CLI 1.47.0 (2.39.0) https://github.com/speakeasy-api/speakeasy
240240
### Releases
241-
- [PyPI v0.14.0] https://pypi.org/project/airbyte-api/0.14.0 - .
241+
- [PyPI v0.14.0] https://pypi.org/project/airbyte-api/0.14.0 - .
242+
243+
## 2023-06-11 00:16:27
244+
### Changes
245+
Based on:
246+
- OpenAPI Doc 1.0.0
247+
- Speakeasy CLI 1.47.1 (2.39.2) https://github.com/speakeasy-api/speakeasy
248+
### Releases
249+
- [PyPI v0.14.1] https://pypi.org/project/airbyte-api/0.14.1 - .

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ configVersion: 1.0.0
22
management:
33
docChecksum: aaa4be7f123ebeda7859d7356f70649c
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.47.0
6-
generationVersion: 2.39.0
5+
speakeasyVersion: 1.47.1
6+
generationVersion: 2.39.2
77
generation:
88
sdkClassName: airbyte
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 0.14.0
12+
version: 0.14.1
1313
author: Airbyte
1414
description: Python Client SDK for Airbyte API
1515
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.14.0",
13+
version="0.14.1",
1414
author="Airbyte",
1515
description="Python Client SDK for Airbyte API",
1616
long_description=long_description,

src/airbyte/models/shared/oauthcredentialsconfiguration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
@dataclasses.dataclass
99
class OAuthCredentialsConfiguration:
1010
r"""The configuration for this source/destination based on the OAuth section of the relevant specification."""
11-
pass
11+
12+

src/airbyte/models/shared/oauthinputconfiguration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
@dataclasses.dataclass
99
class OAuthInputConfiguration:
1010
r"""Arbitrary vars to pass for OAuth depending on what the source/destination spec requires."""
11-
pass
11+
12+

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.14.0'
22-
gen_version: str = '2.39.0'
21+
sdk_version: str = '0.14.1'
22+
gen_version: str = '2.39.2'
2323

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

0 commit comments

Comments
 (0)