Skip to content

Commit 2bff546

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.104.0
1 parent 3028d79 commit 2bff546

File tree

14 files changed

+147
-113
lines changed

14 files changed

+147
-113
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ s = speakeasy.Speakeasy(
2222

2323
req = operations.GetApisRequest(
2424
metadata={
25-
"South": [
26-
'Southwest',
25+
"key": [
26+
'string',
2727
],
2828
},
2929
op=operations.GetApisOp(

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,4 +1006,14 @@ Based on:
10061006
### Generated
10071007
- [python v2.0.0] .
10081008
### Releases
1009-
- [PyPI v2.0.0] https://pypi.org/project/speakeasy-client-sdk-python/2.0.0 - .
1009+
- [PyPI v2.0.0] https://pypi.org/project/speakeasy-client-sdk-python/2.0.0 - .
1010+
1011+
## 2023-10-21 00:09:34
1012+
### Changes
1013+
Based on:
1014+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
1015+
- Speakeasy CLI 1.104.0 (2.169.0) https://github.com/speakeasy-api/speakeasy
1016+
### Generated
1017+
- [python v2.1.0] .
1018+
### Releases
1019+
- [PyPI v2.1.0] https://pypi.org/project/speakeasy-client-sdk-python/2.1.0 - .

USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ s = speakeasy.Speakeasy(
1313

1414
req = operations.GetApisRequest(
1515
metadata={
16-
"South": [
17-
'Southwest',
16+
"key": [
17+
'string',
1818
],
1919
},
2020
op=operations.GetApisOp(

docs/sdks/apiendpoints/README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ s = speakeasy.Speakeasy(
3333
)
3434

3535
req = operations.DeleteAPIEndpointRequest(
36-
api_endpoint_id='blue',
37-
api_id='Gasoline',
38-
version_id='Southwest',
36+
api_endpoint_id='string',
37+
api_id='string',
38+
version_id='string',
3939
)
4040

4141
res = s.api_endpoints.delete_api_endpoint(req)
@@ -75,9 +75,9 @@ s = speakeasy.Speakeasy(
7575
)
7676

7777
req = operations.FindAPIEndpointRequest(
78-
api_id='Cotton',
79-
display_name='Chief',
80-
version_id='Wooden',
78+
api_id='string',
79+
display_name='string',
80+
version_id='string',
8181
)
8282

8383
res = s.api_endpoints.find_api_endpoint(req)
@@ -117,9 +117,9 @@ s = speakeasy.Speakeasy(
117117
)
118118

119119
req = operations.GenerateOpenAPISpecForAPIEndpointRequest(
120-
api_endpoint_id='Mazda',
121-
api_id='web',
122-
version_id='explicabo',
120+
api_endpoint_id='string',
121+
api_id='string',
122+
version_id='string',
123123
)
124124

125125
res = s.api_endpoints.generate_open_api_spec_for_api_endpoint(req)
@@ -158,9 +158,9 @@ s = speakeasy.Speakeasy(
158158
)
159159

160160
req = operations.GeneratePostmanCollectionForAPIEndpointRequest(
161-
api_endpoint_id='indigo',
162-
api_id='barring',
163-
version_id='Senior',
161+
api_endpoint_id='string',
162+
api_id='string',
163+
version_id='string',
164164
)
165165

166166
res = s.api_endpoints.generate_postman_collection_for_api_endpoint(req)
@@ -199,7 +199,7 @@ s = speakeasy.Speakeasy(
199199
)
200200

201201
req = operations.GetAllAPIEndpointsRequest(
202-
api_id='unless',
202+
api_id='string',
203203
)
204204

205205
res = s.api_endpoints.get_all_api_endpoints(req)
@@ -238,8 +238,8 @@ s = speakeasy.Speakeasy(
238238
)
239239

240240
req = operations.GetAllForVersionAPIEndpointsRequest(
241-
api_id='now',
242-
version_id='Diesel',
241+
api_id='string',
242+
version_id='string',
243243
)
244244

245245
res = s.api_endpoints.get_all_for_version_api_endpoints(req)
@@ -278,9 +278,9 @@ s = speakeasy.Speakeasy(
278278
)
279279

280280
req = operations.GetAPIEndpointRequest(
281-
api_endpoint_id='flog',
282-
api_id='synthesize',
283-
version_id='Barium',
281+
api_endpoint_id='string',
282+
api_id='string',
283+
version_id='string',
284284
)
285285

286286
res = s.api_endpoints.get_api_endpoint(req)
@@ -320,16 +320,16 @@ s = speakeasy.Speakeasy(
320320

321321
req = operations.UpsertAPIEndpointRequest(
322322
api_endpoint_input=shared.APIEndpointInput(
323-
api_endpoint_id='Facilitator',
324-
description='Cross-group bottom-line productivity',
325-
display_name='nor',
326-
method='Northwest',
327-
path='/private',
328-
version_id='what',
323+
api_endpoint_id='string',
324+
description='Public-key systematic attitude',
325+
display_name='string',
326+
method='string',
327+
path='/etc/periodic',
328+
version_id='string',
329329
),
330-
api_endpoint_id='Trans',
331-
api_id='Kia',
332-
version_id='Electronic',
330+
api_endpoint_id='string',
331+
api_id='string',
332+
version_id='string',
333333
)
334334

335335
res = s.api_endpoints.upsert_api_endpoint(req)

docs/sdks/apis/README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ s = speakeasy.Speakeasy(
3131
)
3232

3333
req = operations.DeleteAPIRequest(
34-
api_id='plaintive',
35-
version_id='THX',
34+
api_id='string',
35+
version_id='string',
3636
)
3737

3838
res = s.apis.delete_api(req)
@@ -72,8 +72,8 @@ s = speakeasy.Speakeasy(
7272
)
7373

7474
req = operations.GenerateOpenAPISpecRequest(
75-
api_id='fixed',
76-
version_id='bandwidth',
75+
api_id='string',
76+
version_id='string',
7777
)
7878

7979
res = s.apis.generate_open_api_spec(req)
@@ -112,8 +112,8 @@ s = speakeasy.Speakeasy(
112112
)
113113

114114
req = operations.GeneratePostmanCollectionRequest(
115-
api_id='Paradigm',
116-
version_id='olive',
115+
api_id='string',
116+
version_id='string',
117117
)
118118

119119
res = s.apis.generate_postman_collection(req)
@@ -153,10 +153,10 @@ s = speakeasy.Speakeasy(
153153
)
154154

155155
req = operations.GetAllAPIVersionsRequest(
156-
api_id='azure',
156+
api_id='string',
157157
metadata={
158-
"enhance": [
159-
'Garrison',
158+
"key": [
159+
'string',
160160
],
161161
},
162162
op=operations.GetAllAPIVersionsOp(
@@ -202,8 +202,8 @@ s = speakeasy.Speakeasy(
202202

203203
req = operations.GetApisRequest(
204204
metadata={
205-
"South": [
206-
'Southwest',
205+
"key": [
206+
'string',
207207
],
208208
},
209209
op=operations.GetApisOp(
@@ -249,16 +249,16 @@ s = speakeasy.Speakeasy(
249249

250250
req = operations.UpsertAPIRequest(
251251
api_input=shared.APIInput(
252-
api_id='Van',
253-
description='Front-line zero defect algorithm',
252+
api_id='string',
253+
description='Synchronised 5th generation knowledge user',
254254
meta_data={
255-
"Balanced": [
256-
'West',
255+
"key": [
256+
'string',
257257
],
258258
},
259-
version_id='pixel',
259+
version_id='string',
260260
),
261-
api_id='Buckinghamshire',
261+
api_id='string',
262262
)
263263

264264
res = s.apis.upsert_api(req)

docs/sdks/embeds/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ req = operations.GetEmbedAccessTokenRequest(
3333
filters=[
3434
shared.Filter(
3535
key='<key>',
36-
operator='along',
37-
value='quos',
36+
operator='string',
37+
value='string',
3838
),
3939
],
40-
limit=263313,
41-
offset=411277,
42-
operator='male',
40+
limit=964408,
41+
offset=95617,
42+
operator='string',
4343
),
4444
)
4545

@@ -109,7 +109,7 @@ s = speakeasy.Speakeasy(
109109
)
110110

111111
req = operations.RevokeEmbedAccessTokenRequest(
112-
token_id='Ball',
112+
token_id='string',
113113
)
114114

115115
res = s.embeds.revoke_embed_access_token(req)

docs/sdks/metadata/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ s = speakeasy.Speakeasy(
2828
)
2929

3030
req = operations.DeleteVersionMetadataRequest(
31-
api_id='Hydrogen',
32-
meta_key='Cargo',
33-
meta_value='Minnetonka',
34-
version_id='communities',
31+
api_id='string',
32+
meta_key='string',
33+
meta_value='string',
34+
version_id='string',
3535
)
3636

3737
res = s.metadata.delete_version_metadata(req)
@@ -70,8 +70,8 @@ s = speakeasy.Speakeasy(
7070
)
7171

7272
req = operations.GetVersionMetadataRequest(
73-
api_id='Bronze',
74-
version_id='Buckinghamshire',
73+
api_id='string',
74+
version_id='string',
7575
)
7676

7777
res = s.metadata.get_version_metadata(req)
@@ -111,11 +111,11 @@ s = speakeasy.Speakeasy(
111111

112112
req = operations.InsertVersionMetadataRequest(
113113
version_metadata_input=shared.VersionMetadataInput(
114-
meta_key='Borders',
115-
meta_value='Potassium',
114+
meta_key='string',
115+
meta_value='string',
116116
),
117-
api_id='Bedfordshire',
118-
version_id='Dram',
117+
api_id='string',
118+
version_id='string',
119119
)
120120

121121
res = s.metadata.insert_version_metadata(req)

docs/sdks/plugins/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ req = operations.RunPluginRequest(
6262
filters=[
6363
shared.Filter(
6464
key='<key>',
65-
operator='Designer',
66-
value='Pickup',
65+
operator='string',
66+
value='string',
6767
),
6868
],
69-
limit=455139,
70-
offset=173644,
71-
operator='Indiana',
69+
limit=669298,
70+
offset=94585,
71+
operator='string',
7272
),
73-
plugin_id='Chrysler',
73+
plugin_id='string',
7474
)
7575

7676
res = s.plugins.run_plugin(req)
@@ -110,10 +110,10 @@ s = speakeasy.Speakeasy(
110110
)
111111

112112
req = shared.Plugin(
113-
code='Fish',
114-
plugin_id='Rock',
115-
title='North',
116-
workspace_id='exuding',
113+
code='string',
114+
plugin_id='string',
115+
title='string',
116+
workspace_id='string',
117117
)
118118

119119
res = s.plugins.upsert_plugin(req)

docs/sdks/requests/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ s = speakeasy.Speakeasy(
2929
)
3030

3131
req = operations.GenerateRequestPostmanCollectionRequest(
32-
request_id='Architect',
32+
request_id='string',
3333
)
3434

3535
res = s.requests.generate_request_postman_collection(req)
@@ -68,7 +68,7 @@ s = speakeasy.Speakeasy(
6868
)
6969

7070
req = operations.GetRequestFromEventLogRequest(
71-
request_id='Chevrolet',
71+
request_id='string',
7272
)
7373

7474
res = s.requests.get_request_from_event_log(req)
@@ -112,13 +112,13 @@ req = operations.QueryEventLogRequest(
112112
filters=[
113113
shared.Filter(
114114
key='<key>',
115-
operator='Cotton',
116-
value='Interactions',
115+
operator='string',
116+
value='string',
117117
),
118118
],
119-
limit=6323,
120-
offset=788512,
121-
operator='Practical',
119+
limit=241978,
120+
offset=451388,
121+
operator='string',
122122
),
123123
)
124124

0 commit comments

Comments
 (0)