File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed
Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -198,4 +198,12 @@ Based on:
198198- OpenAPI Doc 1.0.0
199199- Speakeasy CLI 1.43.0 (2.35.3) https://github.com/speakeasy-api/speakeasy
200200### Releases
201- - [ PyPI v0.12.0] https://pypi.org/project/airbyte-api/0.12.0 - .
201+ - [ PyPI v0.12.0] https://pypi.org/project/airbyte-api/0.12.0 - .
202+
203+ ## 2023-06-07 00:14:25
204+ ### Changes
205+ Based on:
206+ - OpenAPI Doc 1.0.0
207+ - Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
208+ ### Releases
209+ - [ PyPI v0.12.1] https://pypi.org/project/airbyte-api/0.12.1 - .
Original file line number Diff line number Diff line change 11# Airbyte SDK
22
3+ ## Overview
4+
35### Available Operations
46
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ configVersion: 1.0.0
22management :
33 docChecksum : e82f3e11abf47c2509f115468e75bb06
44 docVersion : 1.0.0
5- speakeasyVersion : 1.43.0
6- generationVersion : 2.35.3
5+ speakeasyVersion : 1.44.2
6+ generationVersion : 2.35.9
77generation :
88 sdkClassName : airbyte
99 singleTagPerOp : false
1010 telemetryEnabled : true
1111python :
12- version : 0.12.0
12+ version : 0.12.1
1313 author : Airbyte
1414 description : Python Client SDK for Airbyte API
1515 maxMethodParams : 0
Original file line number Diff line number Diff line change 1010
1111setuptools .setup (
1212 name = "airbyte-api" ,
13- version = "0.12.0 " ,
13+ version = "0.12.1 " ,
1414 author = "Airbyte" ,
1515 description = "Python Client SDK for Airbyte API" ,
1616 long_description = long_description ,
Original file line number Diff line number Diff line change 33import requests
44from dataclasses import dataclass
55
6+
67SERVERS = [
78 'https://api.airbyte.com/v1/' ,
89 # Airbyte API v1
@@ -16,8 +17,8 @@ class SDKConfiguration:
1617 server_url : str = ''
1718 server_idx : int = 0
1819 language : str = 'python'
19- sdk_version : str = '0.12.0 '
20- gen_version : str = '2.35.3 '
20+ sdk_version : str = '0.12.1 '
21+ gen_version : str = '2.35.9 '
2122
2223 def get_server_details (self ) -> tuple [str , dict [str , str ]]:
2324 if self .server_url :
You can’t perform that action at this time.
0 commit comments