@@ -23,7 +23,7 @@ Delete a particular schema revision for an Api.
2323
2424``` python
2525import speakeasy
26- from speakeasy.models import operations
26+ from speakeasy.models import operations, shared
2727
2828s = speakeasy.Speakeasy(
2929 security = shared.Security(
@@ -63,7 +63,7 @@ Download the latest schema for a particular apiID.
6363
6464``` python
6565import speakeasy
66- from speakeasy.models import operations
66+ from speakeasy.models import operations, shared
6767
6868s = speakeasy.Speakeasy(
6969 security = shared.Security(
@@ -102,7 +102,7 @@ Download a particular schema revision for an Api.
102102
103103``` python
104104import speakeasy
105- from speakeasy.models import operations
105+ from speakeasy.models import operations, shared
106106
107107s = 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
145145import speakeasy
146- from speakeasy.models import operations
146+ from speakeasy.models import operations, shared
147147
148148s = speakeasy.Speakeasy(
149149 security = shared.Security(
@@ -182,7 +182,7 @@ Get a diff of two schema revisions for an Api.
182182
183183``` python
184184import speakeasy
185- from speakeasy.models import operations
185+ from speakeasy.models import operations, shared
186186
187187s = 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
226226import speakeasy
227- from speakeasy.models import operations
227+ from speakeasy.models import operations, shared
228228
229229s = 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
267267import speakeasy
268- from speakeasy.models import operations
268+ from speakeasy.models import operations, shared
269269
270270s = 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
307307import speakeasy
308- from speakeasy.models import operations
308+ from speakeasy.models import operations, shared
309309
310310s = speakeasy.Speakeasy(
311311 security = shared.Security(
0 commit comments