@@ -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 ) )
0 commit comments