Skip to content

Commit 1763a0e

Browse files
authored
Merge pull request #22 from airbytehq/speakeasy-sdk-regen-1686863892
chore: speakeasy sdk regeneration - Generate
2 parents eaae5e4 + 2322eea commit 1763a0e

File tree

7 files changed

+28
-10
lines changed

7 files changed

+28
-10
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
.python-version
2+
.DS_Store
13
venv/
24
src/*.egg-info/
35
__pycache__/
46
.pytest_cache/
5-
.python-version`
7+
.python-version`

RELEASES.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,4 +246,20 @@ Based on:
246246
- OpenAPI Doc 1.0.0
247247
- Speakeasy CLI 1.47.1 (2.39.2) https://github.com/speakeasy-api/speakeasy
248248
### Releases
249-
- [PyPI v0.14.1] https://pypi.org/project/airbyte-api/0.14.1 - .
249+
- [PyPI v0.14.1] https://pypi.org/project/airbyte-api/0.14.1 - .
250+
251+
## 2023-06-15 21:18:10
252+
### Changes
253+
Based on:
254+
- OpenAPI Doc 1.0.0
255+
- Speakeasy CLI 1.48.0 (2.41.1) https://github.com/speakeasy-api/speakeasy
256+
### Releases
257+
- [PyPI v0.15.0] https://pypi.org/project/airbyte-api/0.15.0 - .
258+
259+
## 2023-06-20 00:13:20
260+
### Changes
261+
Based on:
262+
- OpenAPI Doc 1.0.0
263+
- Speakeasy CLI 1.49.0 (2.41.4) https://github.com/speakeasy-api/speakeasy
264+
### Releases
265+
- [PyPI v0.15.1] https://pypi.org/project/airbyte-api/0.15.1 - .

files.gen

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ src/airbyte/sources.py
66
src/airbyte/streams.py
77
src/airbyte/workspaces.py
88
src/airbyte/sdk.py
9-
.gitignore
109
pylintrc
1110
setup.py
1211
src/airbyte/__init__.py

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.1
6-
generationVersion: 2.39.2
5+
speakeasyVersion: 1.49.0
6+
generationVersion: 2.41.4
77
generation:
88
sdkClassName: airbyte
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 0.14.1
12+
version: 0.15.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.1",
13+
version="0.15.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.14.1'
22-
gen_version: str = '2.39.2'
21+
sdk_version: str = '0.15.1'
22+
gen_version: str = '2.41.4'
2323

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

src/airbyte/utils/retries.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ class RetryConfig:
2424
backoff: BackoffStrategy
2525
retry_connection_errors: bool
2626

27-
def __init__(self, strategy: str, retry_connection_errors: bool):
27+
def __init__(self, strategy: str, backoff: BackoffStrategy, retry_connection_errors: bool):
2828
self.strategy = strategy
29+
self.backoff = backoff
2930
self.retry_connection_errors = retry_connection_errors
3031

3132

0 commit comments

Comments
 (0)