Skip to content

Commit ce88fa6

Browse files
authored
Merge pull request #31 from airbytehq/speakeasy-sdk-regen-1689153495
chore: speakeasy sdk regeneration - Generate
2 parents 4738155 + cd26daa commit ce88fa6

File tree

23 files changed

+156
-34
lines changed

23 files changed

+156
-34
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ pip install airbyte-api
2323

2424
## SDK Example Usage
2525
<!-- Start SDK Example Usage -->
26+
27+
2628
```python
2729
import airbyte
2830
from airbyte.models import shared

RELEASES.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,4 +326,44 @@ Based on:
326326
- OpenAPI Doc 1.0.0
327327
- Speakeasy CLI 1.56.0 (2.61.0) https://github.com/speakeasy-api/speakeasy
328328
### Releases
329-
- [PyPI v0.21.0] https://pypi.org/project/airbyte-api/0.21.0 - .
329+
- [PyPI v0.21.0] https://pypi.org/project/airbyte-api/0.21.0 - .
330+
331+
## 2023-07-12 09:18:13
332+
### Changes
333+
Based on:
334+
- OpenAPI Doc 1.0.0
335+
- Speakeasy CLI 1.56.4 (2.61.5) https://github.com/speakeasy-api/speakeasy
336+
### Releases
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 - .
346+
347+
## 2023-07-14 00:16:28
348+
### Changes
349+
Based on:
350+
- OpenAPI Doc 1.0.0
351+
- Speakeasy CLI 1.59.0 (2.65.0) https://github.com/speakeasy-api/speakeasy
352+
### Releases
353+
- [PyPI v0.23.0] https://pypi.org/project/airbyte-api/0.23.0 - .
354+
355+
## 2023-07-18 00:23:32
356+
### Changes
357+
Based on:
358+
- OpenAPI Doc 1.0.0
359+
- Speakeasy CLI 1.61.0 (2.70.0) https://github.com/speakeasy-api/speakeasy
360+
### Releases
361+
- [PyPI v0.24.0] https://pypi.org/project/airbyte-api/0.24.0 - .
362+
363+
## 2023-07-19 00:22:38
364+
### Changes
365+
Based on:
366+
- OpenAPI Doc 1.0.0
367+
- Speakeasy CLI 1.62.1 (2.70.2) https://github.com/speakeasy-api/speakeasy
368+
### Releases
369+
- [PyPI v0.24.1] https://pypi.org/project/airbyte-api/0.24.1 - .

USAGE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<!-- Start SDK Example Usage -->
2+
3+
24
```python
35
import airbyte
46
from airbyte.models import shared

docs/sdks/connections/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Delete a Connection
100100

101101
```python
102102
import airbyte
103-
from airbyte.models import operations
103+
from airbyte.models import operations, shared
104104

105105
s = airbyte.Airbyte(
106106
security=shared.Security(
@@ -138,7 +138,7 @@ Get Connection details
138138

139139
```python
140140
import airbyte
141-
from airbyte.models import operations
141+
from airbyte.models import operations, shared
142142

143143
s = airbyte.Airbyte(
144144
security=shared.Security(
@@ -176,7 +176,7 @@ List connections
176176

177177
```python
178178
import airbyte
179-
from airbyte.models import operations
179+
from airbyte.models import operations, shared
180180

181181
s = airbyte.Airbyte(
182182
security=shared.Security(

docs/sdks/destinations/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Delete a Destination
6767

6868
```python
6969
import airbyte
70-
from airbyte.models import operations
70+
from airbyte.models import operations, shared
7171

7272
s = airbyte.Airbyte(
7373
security=shared.Security(
@@ -105,7 +105,7 @@ Get Destination details
105105

106106
```python
107107
import airbyte
108-
from airbyte.models import operations
108+
from airbyte.models import operations, shared
109109

110110
s = airbyte.Airbyte(
111111
security=shared.Security(
@@ -143,7 +143,7 @@ List destinations
143143

144144
```python
145145
import airbyte
146-
from airbyte.models import operations
146+
from airbyte.models import operations, shared
147147

148148
s = airbyte.Airbyte(
149149
security=shared.Security(

docs/sdks/jobs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Cancel a running Job
1515

1616
```python
1717
import airbyte
18-
from airbyte.models import operations
18+
from airbyte.models import operations, shared
1919

2020
s = airbyte.Airbyte(
2121
security=shared.Security(
@@ -92,7 +92,7 @@ Get Job status and details
9292

9393
```python
9494
import airbyte
95-
from airbyte.models import operations
95+
from airbyte.models import operations, shared
9696

9797
s = airbyte.Airbyte(
9898
security=shared.Security(

docs/sdks/sources/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Delete a Source
6565

6666
```python
6767
import airbyte
68-
from airbyte.models import operations
68+
from airbyte.models import operations, shared
6969

7070
s = airbyte.Airbyte(
7171
security=shared.Security(
@@ -103,7 +103,7 @@ Get Source details
103103

104104
```python
105105
import airbyte
106-
from airbyte.models import operations
106+
from airbyte.models import operations, shared
107107

108108
s = airbyte.Airbyte(
109109
security=shared.Security(
@@ -186,7 +186,7 @@ List sources
186186

187187
```python
188188
import airbyte
189-
from airbyte.models import operations
189+
from airbyte.models import operations, shared
190190

191191
s = airbyte.Airbyte(
192192
security=shared.Security(

docs/sdks/streams/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Get stream properties
1212

1313
```python
1414
import airbyte
15-
from airbyte.models import operations
15+
from airbyte.models import operations, shared
1616

1717
s = airbyte.Airbyte(
1818
security=shared.Security(

docs/sdks/workspaces/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Delete a Workspace
106106

107107
```python
108108
import airbyte
109-
from airbyte.models import operations
109+
from airbyte.models import operations, shared
110110

111111
s = airbyte.Airbyte(
112112
security=shared.Security(
@@ -144,7 +144,7 @@ Get Workspace details
144144

145145
```python
146146
import airbyte
147-
from airbyte.models import operations
147+
from airbyte.models import operations, shared
148148

149149
s = airbyte.Airbyte(
150150
security=shared.Security(
@@ -182,7 +182,7 @@ List workspaces
182182

183183
```python
184184
import airbyte
185-
from airbyte.models import operations
185+
from airbyte.models import operations, shared
186186

187187
s = airbyte.Airbyte(
188188
security=shared.Security(

files.gen

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pylintrc
1010
setup.py
1111
src/airbyte/__init__.py
1212
src/airbyte/models/__init__.py
13+
src/airbyte/models/errors/sdkerror.py
1314
src/airbyte/utils/__init__.py
1415
src/airbyte/utils/retries.py
1516
src/airbyte/utils/utils.py
@@ -365,6 +366,7 @@ src/airbyte/models/shared/workspacesresponse.py
365366
src/airbyte/models/shared/workspaceupdaterequest.py
366367
src/airbyte/models/shared/security.py
367368
src/airbyte/models/shared/__init__.py
369+
src/airbyte/models/errors/__init__.py
368370
docs/sdks/airbyte/README.md
369371
docs/sdks/connections/README.md
370372
docs/sdks/destinations/README.md

0 commit comments

Comments
 (0)