File tree Expand file tree Collapse file tree 6 files changed +25
-8
lines changed
Expand file tree Collapse file tree 6 files changed +25
-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 @@ -158,4 +158,12 @@ Based on:
158158- OpenAPI Doc 1.0.0
159159- Speakeasy CLI 1.38.0 (2.32.7) https://github.com/speakeasy-api/speakeasy
160160### Releases
161- - [ PyPI v0.10.1] https://pypi.org/project/airbyte-api/0.10.1 - .
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 - .
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ src/airbyte/sources.py
55src/airbyte/streams.py
66src/airbyte/workspaces.py
77src/airbyte/sdk.py
8+ .gitignore
89pylintrc
910setup.py
1011src/airbyte/__init__.py
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.38.0
6- generationVersion : 2.32.7
5+ speakeasyVersion : 1.40.1
6+ generationVersion : 2.34.1
77generation :
88 sdkClassName : airbyte
99 singleTagPerOp : false
1010 telemetryEnabled : true
1111python :
12- version : 0.10.1
12+ version : 0.11.0
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.10.1 " ,
13+ version = "0.11.0 " ,
1414 author = "Airbyte" ,
1515 description = "Python Client SDK for Airbyte API" ,
1616 long_description = long_description ,
2121 "charset-normalizer==2.1.1" ,
2222 "dataclasses-json-speakeasy==0.5.8" ,
2323 "idna==3.3" ,
24+ "jsonpath-python==1.0.6 " ,
2425 "marshmallow==3.17.1" ,
2526 "marshmallow-enum==1.5.1" ,
2627 "mypy-extensions==0.4.3" ,
3233 "typing-inspect==0.8.0" ,
3334 "typing_extensions==4.3.0" ,
3435 "urllib3==1.26.12" ,
35- "pylint==2.16.2" ,
3636 ],
37+ extras_require = {
38+ "dev" :["pylint==2.16.2" ]
39+ },
3740 package_dir = {'' : 'src' },
3841 python_requires = '>=3.9'
3942)
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ class Airbyte:
2828 _security_client : requests_http .Session
2929 _server_url : str = SERVERS [0 ]
3030 _language : str = "python"
31- _sdk_version : str = "0.10.1 "
32- _gen_version : str = "2.32.7 "
31+ _sdk_version : str = "0.11.0 "
32+ _gen_version : str = "2.34.1 "
3333
3434 def __init__ (self ,
3535 security : shared .Security = None ,
You can’t perform that action at this time.
0 commit comments