Skip to content

Commit c32a1ca

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.59.0
1 parent d726548 commit c32a1ca

File tree

14 files changed

+49
-37
lines changed

14 files changed

+49
-37
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ pip install speakeasy-client-sdk-python
1010

1111
## SDK Example Usage
1212
<!-- Start SDK Example Usage -->
13+
14+
1315
```python
1416
import speakeasy
15-
from speakeasy.models import operations
17+
from speakeasy.models import operations, shared
1618

1719
s = speakeasy.Speakeasy(
1820
security=shared.Security(

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,4 +686,12 @@ Based on:
686686
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
687687
- Speakeasy CLI 1.57.0 (2.62.1) https://github.com/speakeasy-api/speakeasy
688688
### Releases
689-
- [PyPI v1.43.0] https://pypi.org/project/speakeasy-client-sdk-python/1.43.0 - .
689+
- [PyPI v1.43.0] https://pypi.org/project/speakeasy-client-sdk-python/1.43.0 - .
690+
691+
## 2023-07-14 00:12:14
692+
### Changes
693+
Based on:
694+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
695+
- Speakeasy CLI 1.59.0 (2.65.0) https://github.com/speakeasy-api/speakeasy
696+
### Releases
697+
- [PyPI v1.44.0] https://pypi.org/project/speakeasy-client-sdk-python/1.44.0 - .

USAGE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<!-- Start SDK Example Usage -->
2+
3+
24
```python
35
import speakeasy
4-
from speakeasy.models import operations
6+
from speakeasy.models import operations, shared
57

68
s = speakeasy.Speakeasy(
79
security=shared.Security(

docs/sdks/apiendpoints/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Delete an ApiEndpoint. This will also delete all associated Request Logs (if usi
2323

2424
```python
2525
import speakeasy
26-
from speakeasy.models import operations
26+
from speakeasy.models import operations, shared
2727

2828
s = speakeasy.Speakeasy(
2929
security=shared.Security(
@@ -64,7 +64,7 @@ This is useful for finding the ID of an ApiEndpoint to use in the /v1/apis/{apiI
6464

6565
```python
6666
import speakeasy
67-
from speakeasy.models import operations
67+
from speakeasy.models import operations, shared
6868

6969
s = speakeasy.Speakeasy(
7070
security=shared.Security(
@@ -105,7 +105,7 @@ Returns the original document and the newly generated document allowing a diff t
105105

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

110110
s = speakeasy.Speakeasy(
111111
security=shared.Security(
@@ -145,7 +145,7 @@ Generates a postman collection that allows the endpoint to be called from postma
145145

146146
```python
147147
import speakeasy
148-
from speakeasy.models import operations
148+
from speakeasy.models import operations, shared
149149

150150
s = speakeasy.Speakeasy(
151151
security=shared.Security(
@@ -185,7 +185,7 @@ Get all Api endpoints for a particular apiID.
185185

186186
```python
187187
import speakeasy
188-
from speakeasy.models import operations
188+
from speakeasy.models import operations, shared
189189

190190
s = speakeasy.Speakeasy(
191191
security=shared.Security(
@@ -223,7 +223,7 @@ Get all ApiEndpoints for a particular apiID and versionID.
223223

224224
```python
225225
import speakeasy
226-
from speakeasy.models import operations
226+
from speakeasy.models import operations, shared
227227

228228
s = speakeasy.Speakeasy(
229229
security=shared.Security(
@@ -262,7 +262,7 @@ Get an ApiEndpoint.
262262

263263
```python
264264
import speakeasy
265-
from speakeasy.models import operations
265+
from speakeasy.models import operations, shared
266266

267267
s = speakeasy.Speakeasy(
268268
security=shared.Security(

docs/sdks/apis/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Delete a particular version of an Api. The will also delete all associated ApiEn
2121

2222
```python
2323
import speakeasy
24-
from speakeasy.models import operations
24+
from speakeasy.models import operations, shared
2525

2626
s = speakeasy.Speakeasy(
2727
security=shared.Security(
@@ -61,7 +61,7 @@ Returns the original document and the newly generated document allowing a diff t
6161

6262
```python
6363
import speakeasy
64-
from speakeasy.models import operations
64+
from speakeasy.models import operations, shared
6565

6666
s = speakeasy.Speakeasy(
6767
security=shared.Security(
@@ -100,7 +100,7 @@ Generates a postman collection containing all endpoints for a particular API. In
100100

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

105105
s = speakeasy.Speakeasy(
106106
security=shared.Security(
@@ -140,7 +140,7 @@ Supports filtering the versions based on metadata attributes.
140140

141141
```python
142142
import speakeasy
143-
from speakeasy.models import operations
143+
from speakeasy.models import operations, shared
144144

145145
s = speakeasy.Speakeasy(
146146
security=shared.Security(
@@ -196,7 +196,7 @@ Supports filtering the APIs based on metadata attributes.
196196

197197
```python
198198
import speakeasy
199-
from speakeasy.models import operations
199+
from speakeasy.models import operations, shared
200200

201201
s = speakeasy.Speakeasy(
202202
security=shared.Security(

docs/sdks/embeds/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Get all valid embed access tokens for the current workspace.
7070

7171
```python
7272
import speakeasy
73-
73+
from speakeasy.models import shared
7474

7575
s = speakeasy.Speakeasy(
7676
security=shared.Security(
@@ -99,7 +99,7 @@ Revoke an embed access EmbedToken.
9999

100100
```python
101101
import speakeasy
102-
from speakeasy.models import operations
102+
from speakeasy.models import operations, shared
103103

104104
s = speakeasy.Speakeasy(
105105
security=shared.Security(

docs/sdks/metadata/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Delete metadata for a particular apiID and versionID.
1818

1919
```python
2020
import speakeasy
21-
from speakeasy.models import operations
21+
from speakeasy.models import operations, shared
2222

2323
s = speakeasy.Speakeasy(
2424
security=shared.Security(
@@ -59,7 +59,7 @@ Get all metadata for a particular apiID and versionID.
5959

6060
```python
6161
import speakeasy
62-
from speakeasy.models import operations
62+
from speakeasy.models import operations, shared
6363

6464
s = speakeasy.Speakeasy(
6565
security=shared.Security(

docs/sdks/plugins/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Get all plugins for the current workspace.
1818

1919
```python
2020
import speakeasy
21-
21+
from speakeasy.models import shared
2222

2323
s = speakeasy.Speakeasy(
2424
security=shared.Security(

docs/sdks/requests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Allowing it to be replayed with the same inputs that were captured by the SDK.
1919

2020
```python
2121
import speakeasy
22-
from speakeasy.models import operations
22+
from speakeasy.models import operations, shared
2323

2424
s = speakeasy.Speakeasy(
2525
security=shared.Security(
@@ -57,7 +57,7 @@ Get information about a particular request.
5757

5858
```python
5959
import speakeasy
60-
from speakeasy.models import operations
60+
from speakeasy.models import operations, shared
6161

6262
s = speakeasy.Speakeasy(
6363
security=shared.Security(

docs/sdks/schemas/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Delete a particular schema revision for an Api.
2323

2424
```python
2525
import speakeasy
26-
from speakeasy.models import operations
26+
from speakeasy.models import operations, shared
2727

2828
s = speakeasy.Speakeasy(
2929
security=shared.Security(
@@ -63,7 +63,7 @@ Download the latest schema for a particular apiID.
6363

6464
```python
6565
import speakeasy
66-
from speakeasy.models import operations
66+
from speakeasy.models import operations, shared
6767

6868
s = speakeasy.Speakeasy(
6969
security=shared.Security(
@@ -102,7 +102,7 @@ Download a particular schema revision for an Api.
102102

103103
```python
104104
import speakeasy
105-
from speakeasy.models import operations
105+
from speakeasy.models import operations, shared
106106

107107
s = speakeasy.Speakeasy(
108108
security=shared.Security(
@@ -143,7 +143,7 @@ This won't include the schema itself, that can be retrieved via the downloadSche
143143

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

148148
s = speakeasy.Speakeasy(
149149
security=shared.Security(
@@ -182,7 +182,7 @@ Get a diff of two schema revisions for an Api.
182182

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

187187
s = speakeasy.Speakeasy(
188188
security=shared.Security(
@@ -224,7 +224,7 @@ This won't include the schema itself, that can be retrieved via the downloadSche
224224

225225
```python
226226
import speakeasy
227-
from speakeasy.models import operations
227+
from speakeasy.models import operations, shared
228228

229229
s = speakeasy.Speakeasy(
230230
security=shared.Security(
@@ -265,7 +265,7 @@ This won't include the schemas themselves, they can be retrieved via the downloa
265265

266266
```python
267267
import speakeasy
268-
from speakeasy.models import operations
268+
from speakeasy.models import operations, shared
269269

270270
s = speakeasy.Speakeasy(
271271
security=shared.Security(
@@ -305,7 +305,7 @@ This will be used to populate ApiEndpoints and used as a base for any schema gen
305305

306306
```python
307307
import speakeasy
308-
from speakeasy.models import operations
308+
from speakeasy.models import operations, shared
309309

310310
s = speakeasy.Speakeasy(
311311
security=shared.Security(

0 commit comments

Comments
 (0)