@@ -53,7 +53,7 @@ export class ApiEndpoints {
53
53
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
54
54
55
55
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
56
- const res : operations . DeleteApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
56
+ const res : operations . DeleteApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
57
57
switch ( true ) {
58
58
case httpRes ?. status == 200 :
59
59
break ;
@@ -106,7 +106,7 @@ export class ApiEndpoints {
106
106
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
107
107
108
108
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
109
- const res : operations . FindApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
109
+ const res : operations . FindApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
110
110
switch ( true ) {
111
111
case httpRes ?. status == 200 :
112
112
if ( utils . matchContentType ( contentType , `application/json` ) ) {
@@ -166,7 +166,7 @@ export class ApiEndpoints {
166
166
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
167
167
168
168
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
169
- const res : operations . GenerateOpenApiSpecForApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
169
+ const res : operations . GenerateOpenApiSpecForApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
170
170
switch ( true ) {
171
171
case httpRes ?. status == 200 :
172
172
if ( utils . matchContentType ( contentType , `application/json` ) ) {
@@ -225,7 +225,7 @@ export class ApiEndpoints {
225
225
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
226
226
227
227
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
228
- const res : operations . GeneratePostmanCollectionForApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
228
+ const res : operations . GeneratePostmanCollectionForApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
229
229
switch ( true ) {
230
230
case httpRes ?. status == 200 :
231
231
if ( utils . matchContentType ( contentType , `application/octet-stream` ) ) {
@@ -281,7 +281,7 @@ export class ApiEndpoints {
281
281
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
282
282
283
283
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
284
- const res : operations . GetAllApiEndpointsResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
284
+ const res : operations . GetAllApiEndpointsResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
285
285
switch ( true ) {
286
286
case httpRes ?. status == 200 :
287
287
if ( utils . matchContentType ( contentType , `application/json` ) ) {
@@ -334,7 +334,7 @@ export class ApiEndpoints {
334
334
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
335
335
336
336
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
337
- const res : operations . GetAllForVersionApiEndpointsResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
337
+ const res : operations . GetAllForVersionApiEndpointsResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
338
338
switch ( true ) {
339
339
case httpRes ?. status == 200 :
340
340
if ( utils . matchContentType ( contentType , `application/json` ) ) {
@@ -387,7 +387,7 @@ export class ApiEndpoints {
387
387
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
388
388
389
389
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
390
- const res : operations . GetApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
390
+ const res : operations . GetApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
391
391
switch ( true ) {
392
392
case httpRes ?. status == 200 :
393
393
if ( utils . matchContentType ( contentType , `application/json` ) ) {
@@ -458,7 +458,7 @@ export class ApiEndpoints {
458
458
const contentType : string = httpRes ?. headers ?. [ "content-type" ] ?? "" ;
459
459
460
460
if ( httpRes ?. status == null ) throw new Error ( `status code not found in response: ${ httpRes } ` ) ;
461
- const res : operations . UpsertApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes , } ;
461
+ const res : operations . UpsertApiEndpointResponse = { statusCode : httpRes . status , contentType : contentType , rawResponse : httpRes } ;
462
462
switch ( true ) {
463
463
case httpRes ?. status == 200 :
464
464
if ( utils . matchContentType ( contentType , `application/json` ) ) {
0 commit comments