File tree Expand file tree Collapse file tree 6 files changed +49
-8
lines changed Expand file tree Collapse file tree 6 files changed +49
-8
lines changed Original file line number Diff line number Diff line change
1
+ venv /
2
+ src /* .egg-info /
3
+ __pycache__ /
4
+ .pytest_cache /
5
+ .python-version`
Original file line number Diff line number Diff line change @@ -150,4 +150,36 @@ Based on:
150
150
- OpenAPI Doc 1.0.0
151
151
- Speakeasy CLI 1.37.5 (2.32.2) https://github.com/speakeasy-api/speakeasy
152
152
### Releases
153
- - [ PyPI v0.10.0] https://pypi.org/project/airbyte-api/0.10.0 - .
153
+ - [ PyPI v0.10.0] https://pypi.org/project/airbyte-api/0.10.0 - .
154
+
155
+ ## 2023-05-27 00:14:37
156
+ ### Changes
157
+ Based on:
158
+ - OpenAPI Doc 1.0.0
159
+ - Speakeasy CLI 1.38.0 (2.32.7) https://github.com/speakeasy-api/speakeasy
160
+ ### Releases
161
+ - [ PyPI v0.10.1] https://pypi.org/project/airbyte-api/0.10.1 - .
162
+
163
+ ## 2023-05-31 20:54:27
164
+ ### Changes
165
+ Based on:
166
+ - OpenAPI Doc 1.0.0
167
+ - Speakeasy CLI 1.40.1 (2.34.1) https://github.com/speakeasy-api/speakeasy
168
+ ### Releases
169
+ - [ PyPI v0.11.0] https://pypi.org/project/airbyte-api/0.11.0 - .
170
+
171
+ ## 2023-05-31 21:58:58
172
+ ### Changes
173
+ Based on:
174
+ - OpenAPI Doc 1.0.0
175
+ - Speakeasy CLI 1.40.1 (2.34.1) https://github.com/speakeasy-api/speakeasy
176
+ ### Releases
177
+ - [ PyPI v0.11.1] https://pypi.org/project/airbyte-api/0.11.1 - .
178
+
179
+ ## 2023-06-01 00:17:50
180
+ ### Changes
181
+ Based on:
182
+ - OpenAPI Doc 1.0.0
183
+ - Speakeasy CLI 1.40.2 (2.34.2) https://github.com/speakeasy-api/speakeasy
184
+ ### Releases
185
+ - [ PyPI v0.11.2] https://pypi.org/project/airbyte-api/0.11.2 - .
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ src/airbyte/sources.py
5
5
src/airbyte/streams.py
6
6
src/airbyte/workspaces.py
7
7
src/airbyte/sdk.py
8
+ .gitignore
8
9
pylintrc
9
10
setup.py
10
11
src/airbyte/__init__.py
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ configVersion: 1.0.0
2
2
management :
3
3
docChecksum : e82f3e11abf47c2509f115468e75bb06
4
4
docVersion : 1.0.0
5
- speakeasyVersion : 1.37.5
6
- generationVersion : 2.32 .2
5
+ speakeasyVersion : 1.40.2
6
+ generationVersion : 2.34 .2
7
7
generation :
8
8
sdkClassName : airbyte
9
9
singleTagPerOp : false
10
10
telemetryEnabled : true
11
11
python :
12
- version : 0.10.0
12
+ version : 0.11.2
13
13
author : Airbyte
14
14
description : Python Client SDK for Airbyte API
15
15
maxMethodParams : 0
Original file line number Diff line number Diff line change 10
10
11
11
setuptools .setup (
12
12
name = "airbyte-api" ,
13
- version = "0.10.0 " ,
13
+ version = "0.11.2 " ,
14
14
author = "Airbyte" ,
15
15
description = "Python Client SDK for Airbyte API" ,
16
16
long_description = long_description ,
21
21
"charset-normalizer==2.1.1" ,
22
22
"dataclasses-json-speakeasy==0.5.8" ,
23
23
"idna==3.3" ,
24
+ "jsonpath-python==1.0.6 " ,
24
25
"marshmallow==3.17.1" ,
25
26
"marshmallow-enum==1.5.1" ,
26
27
"mypy-extensions==0.4.3" ,
32
33
"typing-inspect==0.8.0" ,
33
34
"typing_extensions==4.3.0" ,
34
35
"urllib3==1.26.12" ,
35
- "pylint==2.16.2" ,
36
36
],
37
+ extras_require = {
38
+ "dev" :["pylint==2.16.2" ]
39
+ },
37
40
package_dir = {'' : 'src' },
38
41
python_requires = '>=3.9'
39
42
)
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ class Airbyte:
28
28
_security_client : requests_http .Session
29
29
_server_url : str = SERVERS [0 ]
30
30
_language : str = "python"
31
- _sdk_version : str = "0.10.0 "
32
- _gen_version : str = "2.32 .2"
31
+ _sdk_version : str = "0.11.2 "
32
+ _gen_version : str = "2.34 .2"
33
33
34
34
def __init__ (self ,
35
35
security : shared .Security = None ,
You can’t perform that action at this time.
0 commit comments