Skip to content

Commit cf7f5ba

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.96.1
1 parent f64b159 commit cf7f5ba

File tree

16 files changed

+90
-49
lines changed

16 files changed

+90
-49
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ var sdk = new SpeakeasySDK(
2525

2626
var res = await sdk.Apis.GetApisAsync(new GetApisRequest() {
2727
Metadata = new Dictionary<string, List<string>>() {
28-
{ "aut", new List<string>() {
29-
"bypassing",
28+
{ "South", new List<string>() {
29+
"Southwest",
3030
} },
3131
},
3232
Op = new GetApisOp() {

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,4 +268,14 @@ Based on:
268268
### Generated
269269
- [csharp v1.16.1] .
270270
### Releases
271-
- [NuGet v1.16.1] https://www.nuget.org/packages/SpeakeasySDK/1.16.1 - .
271+
- [NuGet v1.16.1] https://www.nuget.org/packages/SpeakeasySDK/1.16.1 - .
272+
273+
## 2023-10-07 00:03:16
274+
### Changes
275+
Based on:
276+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
277+
- Speakeasy CLI 1.96.1 (2.150.0) https://github.com/speakeasy-api/speakeasy
278+
### Generated
279+
- [csharp v1.16.2] .
280+
### Releases
281+
- [NuGet v1.16.2] https://www.nuget.org/packages/SpeakeasySDK/1.16.2 - .

Speakeasy/ApiEndpoints.cs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ public class ApiEndpointsSDK: IApiEndpointsSDK
9696
{
9797
public SDKConfig Config { get; private set; }
9898
private const string _language = "csharp";
99-
private const string _sdkVersion = "1.16.1";
100-
private const string _sdkGenVersion = "2.143.2";
99+
private const string _sdkVersion = "1.16.2";
100+
private const string _sdkGenVersion = "2.150.0";
101101
private const string _openapiDocVersion = "0.3.0";
102-
private const string _userAgent = "speakeasy-sdk/csharp 1.16.1 2.143.2 0.3.0 SpeakeasySDK";
102+
private const string _userAgent = "speakeasy-sdk/csharp 1.16.2 2.150.0 0.3.0 SpeakeasySDK";
103103
private string _serverUrl = "";
104104
private ISpeakeasyHttpClient _defaultClient;
105105
private ISpeakeasyHttpClient _securityClient;
@@ -139,6 +139,7 @@ public async Task<DeleteApiEndpointResponse> DeleteApiEndpointAsync(DeleteApiEnd
139139
ContentType = contentType,
140140
RawResponse = httpResponse
141141
};
142+
142143
if((response.StatusCode == 200))
143144
{
144145

@@ -175,6 +176,7 @@ public async Task<FindApiEndpointResponse> FindApiEndpointAsync(FindApiEndpointR
175176
ContentType = contentType,
176177
RawResponse = httpResponse
177178
};
179+
178180
if((response.StatusCode == 200))
179181
{
180182
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -215,6 +217,7 @@ public async Task<GenerateOpenApiSpecForApiEndpointResponse> GenerateOpenApiSpec
215217
ContentType = contentType,
216218
RawResponse = httpResponse
217219
};
220+
218221
if((response.StatusCode == 200))
219222
{
220223
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -255,6 +258,7 @@ public async Task<GeneratePostmanCollectionForApiEndpointResponse> GeneratePostm
255258
ContentType = contentType,
256259
RawResponse = httpResponse
257260
};
261+
258262
if((response.StatusCode == 200))
259263
{
260264
if(Utilities.IsContentTypeMatch("application/octet-stream",response.ContentType))
@@ -295,6 +299,7 @@ public async Task<GetAllApiEndpointsResponse> GetAllApiEndpointsAsync(GetAllApiE
295299
ContentType = contentType,
296300
RawResponse = httpResponse
297301
};
302+
298303
if((response.StatusCode == 200))
299304
{
300305
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -335,6 +340,7 @@ public async Task<GetAllForVersionApiEndpointsResponse> GetAllForVersionApiEndpo
335340
ContentType = contentType,
336341
RawResponse = httpResponse
337342
};
343+
338344
if((response.StatusCode == 200))
339345
{
340346
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -375,6 +381,7 @@ public async Task<GetApiEndpointResponse> GetApiEndpointAsync(GetApiEndpointRequ
375381
ContentType = contentType,
376382
RawResponse = httpResponse
377383
};
384+
378385
if((response.StatusCode == 200))
379386
{
380387
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -424,6 +431,7 @@ public async Task<UpsertApiEndpointResponse> UpsertApiEndpointAsync(UpsertApiEnd
424431
ContentType = contentType,
425432
RawResponse = httpResponse
426433
};
434+
427435
if((response.StatusCode == 200))
428436
{
429437
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))

Speakeasy/Apis.cs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ public class ApisSDK: IApisSDK
9292
{
9393
public SDKConfig Config { get; private set; }
9494
private const string _language = "csharp";
95-
private const string _sdkVersion = "1.16.1";
96-
private const string _sdkGenVersion = "2.143.2";
95+
private const string _sdkVersion = "1.16.2";
96+
private const string _sdkGenVersion = "2.150.0";
9797
private const string _openapiDocVersion = "0.3.0";
98-
private const string _userAgent = "speakeasy-sdk/csharp 1.16.1 2.143.2 0.3.0 SpeakeasySDK";
98+
private const string _userAgent = "speakeasy-sdk/csharp 1.16.2 2.150.0 0.3.0 SpeakeasySDK";
9999
private string _serverUrl = "";
100100
private ISpeakeasyHttpClient _defaultClient;
101101
private ISpeakeasyHttpClient _securityClient;
@@ -135,6 +135,7 @@ public async Task<DeleteApiResponse> DeleteApiAsync(DeleteApiRequest? request =
135135
ContentType = contentType,
136136
RawResponse = httpResponse
137137
};
138+
138139
if((response.StatusCode == 200))
139140
{
140141

@@ -171,6 +172,7 @@ public async Task<GenerateOpenApiSpecResponse> GenerateOpenApiSpecAsync(Generate
171172
ContentType = contentType,
172173
RawResponse = httpResponse
173174
};
175+
174176
if((response.StatusCode == 200))
175177
{
176178
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -211,6 +213,7 @@ public async Task<GeneratePostmanCollectionResponse> GeneratePostmanCollectionAs
211213
ContentType = contentType,
212214
RawResponse = httpResponse
213215
};
216+
214217
if((response.StatusCode == 200))
215218
{
216219
if(Utilities.IsContentTypeMatch("application/octet-stream",response.ContentType))
@@ -251,6 +254,7 @@ public async Task<GetAllApiVersionsResponse> GetAllApiVersionsAsync(GetAllApiVer
251254
ContentType = contentType,
252255
RawResponse = httpResponse
253256
};
257+
254258
if((response.StatusCode == 200))
255259
{
256260
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -291,6 +295,7 @@ public async Task<GetApisResponse> GetApisAsync(GetApisRequest? request = null)
291295
ContentType = contentType,
292296
RawResponse = httpResponse
293297
};
298+
294299
if((response.StatusCode == 200))
295300
{
296301
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -340,6 +345,7 @@ public async Task<UpsertApiResponse> UpsertApiAsync(UpsertApiRequest request)
340345
ContentType = contentType,
341346
RawResponse = httpResponse
342347
};
348+
343349
if((response.StatusCode == 200))
344350
{
345351
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))

Speakeasy/Embeds.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ public class EmbedsSDK: IEmbedsSDK
5454
{
5555
public SDKConfig Config { get; private set; }
5656
private const string _language = "csharp";
57-
private const string _sdkVersion = "1.16.1";
58-
private const string _sdkGenVersion = "2.143.2";
57+
private const string _sdkVersion = "1.16.2";
58+
private const string _sdkGenVersion = "2.150.0";
5959
private const string _openapiDocVersion = "0.3.0";
60-
private const string _userAgent = "speakeasy-sdk/csharp 1.16.1 2.143.2 0.3.0 SpeakeasySDK";
60+
private const string _userAgent = "speakeasy-sdk/csharp 1.16.2 2.150.0 0.3.0 SpeakeasySDK";
6161
private string _serverUrl = "";
6262
private ISpeakeasyHttpClient _defaultClient;
6363
private ISpeakeasyHttpClient _securityClient;
@@ -97,6 +97,7 @@ public async Task<GetEmbedAccessTokenResponse> GetEmbedAccessTokenAsync(GetEmbed
9797
ContentType = contentType,
9898
RawResponse = httpResponse
9999
};
100+
100101
if((response.StatusCode == 200))
101102
{
102103
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -137,6 +138,7 @@ public async Task<GetValidEmbedAccessTokensResponse> GetValidEmbedAccessTokensAs
137138
ContentType = contentType,
138139
RawResponse = httpResponse
139140
};
141+
140142
if((response.StatusCode == 200))
141143
{
142144
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -177,6 +179,7 @@ public async Task<RevokeEmbedAccessTokenResponse> RevokeEmbedAccessTokenAsync(Re
177179
ContentType = contentType,
178180
RawResponse = httpResponse
179181
};
182+
180183
if((response.StatusCode == 200))
181184
{
182185

Speakeasy/Metadata.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ public class MetadataSDK: IMetadataSDK
4949
{
5050
public SDKConfig Config { get; private set; }
5151
private const string _language = "csharp";
52-
private const string _sdkVersion = "1.16.1";
53-
private const string _sdkGenVersion = "2.143.2";
52+
private const string _sdkVersion = "1.16.2";
53+
private const string _sdkGenVersion = "2.150.0";
5454
private const string _openapiDocVersion = "0.3.0";
55-
private const string _userAgent = "speakeasy-sdk/csharp 1.16.1 2.143.2 0.3.0 SpeakeasySDK";
55+
private const string _userAgent = "speakeasy-sdk/csharp 1.16.2 2.150.0 0.3.0 SpeakeasySDK";
5656
private string _serverUrl = "";
5757
private ISpeakeasyHttpClient _defaultClient;
5858
private ISpeakeasyHttpClient _securityClient;
@@ -92,6 +92,7 @@ public async Task<DeleteVersionMetadataResponse> DeleteVersionMetadataAsync(Dele
9292
ContentType = contentType,
9393
RawResponse = httpResponse
9494
};
95+
9596
if((response.StatusCode == 200))
9697
{
9798

@@ -128,6 +129,7 @@ public async Task<GetVersionMetadataResponse> GetVersionMetadataAsync(GetVersion
128129
ContentType = contentType,
129130
RawResponse = httpResponse
130131
};
132+
131133
if((response.StatusCode == 200))
132134
{
133135
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -177,6 +179,7 @@ public async Task<InsertVersionMetadataResponse> InsertVersionMetadataAsync(Inse
177179
ContentType = contentType,
178180
RawResponse = httpResponse
179181
};
182+
180183
if((response.StatusCode == 200))
181184
{
182185
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))

Speakeasy/Plugins.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ public class PluginsSDK: IPluginsSDK
4949
{
5050
public SDKConfig Config { get; private set; }
5151
private const string _language = "csharp";
52-
private const string _sdkVersion = "1.16.1";
53-
private const string _sdkGenVersion = "2.143.2";
52+
private const string _sdkVersion = "1.16.2";
53+
private const string _sdkGenVersion = "2.150.0";
5454
private const string _openapiDocVersion = "0.3.0";
55-
private const string _userAgent = "speakeasy-sdk/csharp 1.16.1 2.143.2 0.3.0 SpeakeasySDK";
55+
private const string _userAgent = "speakeasy-sdk/csharp 1.16.2 2.150.0 0.3.0 SpeakeasySDK";
5656
private string _serverUrl = "";
5757
private ISpeakeasyHttpClient _defaultClient;
5858
private ISpeakeasyHttpClient _securityClient;
@@ -92,6 +92,7 @@ public async Task<GetPluginsResponse> GetPluginsAsync()
9292
ContentType = contentType,
9393
RawResponse = httpResponse
9494
};
95+
9596
if((response.StatusCode == 200))
9697
{
9798
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -132,6 +133,7 @@ public async Task<RunPluginResponse> RunPluginAsync(RunPluginRequest? request =
132133
ContentType = contentType,
133134
RawResponse = httpResponse
134135
};
136+
135137
if((response.StatusCode == 200))
136138
{
137139
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -181,6 +183,7 @@ public async Task<UpsertPluginResponse> UpsertPluginAsync(Plugin request)
181183
ContentType = contentType,
182184
RawResponse = httpResponse
183185
};
186+
184187
if((response.StatusCode == 200))
185188
{
186189
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))

Speakeasy/Requests.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ public class RequestsSDK: IRequestsSDK
5959
{
6060
public SDKConfig Config { get; private set; }
6161
private const string _language = "csharp";
62-
private const string _sdkVersion = "1.16.1";
63-
private const string _sdkGenVersion = "2.143.2";
62+
private const string _sdkVersion = "1.16.2";
63+
private const string _sdkGenVersion = "2.150.0";
6464
private const string _openapiDocVersion = "0.3.0";
65-
private const string _userAgent = "speakeasy-sdk/csharp 1.16.1 2.143.2 0.3.0 SpeakeasySDK";
65+
private const string _userAgent = "speakeasy-sdk/csharp 1.16.2 2.150.0 0.3.0 SpeakeasySDK";
6666
private string _serverUrl = "";
6767
private ISpeakeasyHttpClient _defaultClient;
6868
private ISpeakeasyHttpClient _securityClient;
@@ -102,6 +102,7 @@ public async Task<GenerateRequestPostmanCollectionResponse> GenerateRequestPostm
102102
ContentType = contentType,
103103
RawResponse = httpResponse
104104
};
105+
105106
if((response.StatusCode == 200))
106107
{
107108
if(Utilities.IsContentTypeMatch("application/octet-stream",response.ContentType))
@@ -142,6 +143,7 @@ public async Task<GetRequestFromEventLogResponse> GetRequestFromEventLogAsync(Ge
142143
ContentType = contentType,
143144
RawResponse = httpResponse
144145
};
146+
145147
if((response.StatusCode == 200))
146148
{
147149
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -182,6 +184,7 @@ public async Task<QueryEventLogResponse> QueryEventLogAsync(QueryEventLogRequest
182184
ContentType = contentType,
183185
RawResponse = httpResponse
184186
};
187+
185188
if((response.StatusCode == 200))
186189
{
187190
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))

Speakeasy/Schemas.cs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ public class SchemasSDK: ISchemasSDK
9494
{
9595
public SDKConfig Config { get; private set; }
9696
private const string _language = "csharp";
97-
private const string _sdkVersion = "1.16.1";
98-
private const string _sdkGenVersion = "2.143.2";
97+
private const string _sdkVersion = "1.16.2";
98+
private const string _sdkGenVersion = "2.150.0";
9999
private const string _openapiDocVersion = "0.3.0";
100-
private const string _userAgent = "speakeasy-sdk/csharp 1.16.1 2.143.2 0.3.0 SpeakeasySDK";
100+
private const string _userAgent = "speakeasy-sdk/csharp 1.16.2 2.150.0 0.3.0 SpeakeasySDK";
101101
private string _serverUrl = "";
102102
private ISpeakeasyHttpClient _defaultClient;
103103
private ISpeakeasyHttpClient _securityClient;
@@ -137,6 +137,7 @@ public async Task<DeleteSchemaResponse> DeleteSchemaAsync(DeleteSchemaRequest? r
137137
ContentType = contentType,
138138
RawResponse = httpResponse
139139
};
140+
140141
if((response.StatusCode == 200))
141142
{
142143

@@ -173,6 +174,7 @@ public async Task<DownloadSchemaResponse> DownloadSchemaAsync(DownloadSchemaRequ
173174
ContentType = contentType,
174175
RawResponse = httpResponse
175176
};
177+
176178
if((response.StatusCode == 200))
177179
{
178180
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -217,6 +219,7 @@ public async Task<DownloadSchemaRevisionResponse> DownloadSchemaRevisionAsync(Do
217219
ContentType = contentType,
218220
RawResponse = httpResponse
219221
};
222+
220223
if((response.StatusCode == 200))
221224
{
222225
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -261,6 +264,7 @@ public async Task<GetSchemaResponse> GetSchemaAsync(GetSchemaRequest? request =
261264
ContentType = contentType,
262265
RawResponse = httpResponse
263266
};
267+
264268
if((response.StatusCode == 200))
265269
{
266270
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -301,6 +305,7 @@ public async Task<GetSchemaDiffResponse> GetSchemaDiffAsync(GetSchemaDiffRequest
301305
ContentType = contentType,
302306
RawResponse = httpResponse
303307
};
308+
304309
if((response.StatusCode == 200))
305310
{
306311
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -341,6 +346,7 @@ public async Task<GetSchemaRevisionResponse> GetSchemaRevisionAsync(GetSchemaRev
341346
ContentType = contentType,
342347
RawResponse = httpResponse
343348
};
349+
344350
if((response.StatusCode == 200))
345351
{
346352
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -381,6 +387,7 @@ public async Task<GetSchemasResponse> GetSchemasAsync(GetSchemasRequest? request
381387
ContentType = contentType,
382388
RawResponse = httpResponse
383389
};
390+
384391
if((response.StatusCode == 200))
385392
{
386393
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
@@ -430,6 +437,7 @@ public async Task<RegisterSchemaResponse> RegisterSchemaAsync(RegisterSchemaRequ
430437
ContentType = contentType,
431438
RawResponse = httpResponse
432439
};
440+
433441
if((response.StatusCode == 200))
434442
{
435443

0 commit comments

Comments
 (0)