Skip to content

Commit 804e323

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.59.0
1 parent 3b3111f commit 804e323

File tree

12 files changed

+34
-22
lines changed

12 files changed

+34
-22
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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,4 +342,12 @@ Based on:
342342
- OpenAPI Doc 1.0.0
343343
- Speakeasy CLI 1.57.0 (2.62.1) https://github.com/speakeasy-api/speakeasy
344344
### Releases
345-
- [PyPI v0.22.0] https://pypi.org/project/airbyte-api/0.22.0 - .
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 - .

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(

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.57.0
6-
generationVersion: 2.62.1
5+
speakeasyVersion: 1.59.0
6+
generationVersion: 2.65.0
77
generation:
88
comments:
99
disableComments: false
@@ -14,7 +14,7 @@ generation:
1414
tagNamespacingDisabled: false
1515
telemetryEnabled: true
1616
python:
17-
version: 0.22.0
17+
version: 0.23.0
1818
author: Airbyte
1919
description: Python Client SDK for Airbyte API
2020
maxMethodParams: 0

0 commit comments

Comments
 (0)