Skip to content

Commit 3b3111f

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.57.0
1 parent af59bbf commit 3b3111f

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,4 +334,12 @@ Based on:
334334
- OpenAPI Doc 1.0.0
335335
- Speakeasy CLI 1.56.4 (2.61.5) https://github.com/speakeasy-api/speakeasy
336336
### Releases
337-
- [PyPI v0.21.1] https://pypi.org/project/airbyte-api/0.21.1 - .
337+
- [PyPI v0.21.1] https://pypi.org/project/airbyte-api/0.21.1 - .
338+
339+
## 2023-07-13 00:16:36
340+
### Changes
341+
Based on:
342+
- OpenAPI Doc 1.0.0
343+
- Speakeasy CLI 1.57.0 (2.62.1) https://github.com/speakeasy-api/speakeasy
344+
### Releases
345+
- [PyPI v0.22.0] https://pypi.org/project/airbyte-api/0.22.0 - .

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ configVersion: 1.0.0
22
management:
33
docChecksum: bb2011e16a0ec78eb8a13a803e08b4aa
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.56.4
6-
generationVersion: 2.61.5
5+
speakeasyVersion: 1.57.0
6+
generationVersion: 2.62.1
77
generation:
88
comments:
99
disableComments: false
@@ -14,7 +14,7 @@ generation:
1414
tagNamespacingDisabled: false
1515
telemetryEnabled: true
1616
python:
17-
version: 0.21.1
17+
version: 0.22.0
1818
author: Airbyte
1919
description: Python Client SDK for Airbyte API
2020
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.21.1",
13+
version="0.22.0",
1414
author="Airbyte",
1515
description="Python Client SDK for Airbyte API",
1616
long_description=long_description,

src/airbyte/models/shared/source_facebook_marketing.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class SourceFacebookMarketingInsightConfigValidActionBreakdowns(str, Enum):
1414
r"""Generic enumeration.
15-
15+
1616
Derive from this class to define new enumerations.
1717
"""
1818
ACTION_CANVAS_COMPONENT_NAME = 'action_canvas_component_name'
@@ -28,7 +28,7 @@ class SourceFacebookMarketingInsightConfigValidActionBreakdowns(str, Enum):
2828

2929
class SourceFacebookMarketingInsightConfigValidBreakdowns(str, Enum):
3030
r"""Generic enumeration.
31-
31+
3232
Derive from this class to define new enumerations.
3333
"""
3434
AD_FORMAT_ASSET = 'ad_format_asset'
@@ -61,7 +61,7 @@ class SourceFacebookMarketingInsightConfigValidBreakdowns(str, Enum):
6161

6262
class SourceFacebookMarketingInsightConfigValidEnums(str, Enum):
6363
r"""Generic enumeration.
64-
64+
6565
Derive from this class to define new enumerations.
6666
"""
6767
ACCOUNT_CURRENCY = 'account_currency'

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.21.1'
22-
gen_version: str = '2.61.5'
21+
sdk_version: str = '0.22.0'
22+
gen_version: str = '2.62.1'
2323

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

src/airbyte/sources.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ def get_source(self, request: operations.GetSourceRequest) -> operations.GetSour
9292
def initiate_o_auth(self, request: shared.InitiateOauthRequest) -> operations.InitiateOAuthResponse:
9393
r"""Initiate OAuth for a source
9494
Given a source ID, workspace ID, and redirect URL, initiates OAuth for the source.
95-
95+
9696
This returns a fully formed URL for performing user authentication against the relevant source identity provider (IdP). Once authentication has been completed, the IdP will redirect to an Airbyte endpoint which will save the access and refresh tokens off as a secret and return the secret ID to the redirect URL specified in the `secret_id` query string parameter.
97-
97+
9898
That secret ID can be used to create a source with credentials in place of actual tokens.
9999
"""
100100
base_url = utils.template_url(*self.sdk_configuration.get_server_details())

0 commit comments

Comments
 (0)