@@ -141,7 +141,7 @@ export class PetApi extends BaseAPI implements PetApiInterface {
141141 security : petstore_auth ;
142142 } ) : Promise < void > {
143143 return await this . POST (
144- "/pet" ,
144+ this . basePath + "/pet" ,
145145 JSON . stringify ( params . petDto ) ,
146146 {
147147 ...params . security ?. headers ( ) ,
@@ -230,7 +230,7 @@ export class PetApi extends BaseAPI implements PetApiInterface {
230230 security : petstore_auth ;
231231 } ) : Promise < void > {
232232 return await this . PUT (
233- "/pet" ,
233+ this . basePath + "/pet" ,
234234 JSON . stringify ( params . petDto ) ,
235235 {
236236 ...params . security ?. headers ( ) ,
@@ -354,7 +354,7 @@ export class StoreApi extends BaseAPI implements StoreApiInterface {
354354 security : api_key ;
355355 } ) : Promise < { [ key : string ] : number ; } > {
356356 return await this . GET (
357- "/store/inventory" ,
357+ this . basePath + "/store/inventory" ,
358358 undefined ,
359359 {
360360 ...params . security ?. headers ( ) , }
@@ -385,7 +385,7 @@ export class StoreApi extends BaseAPI implements StoreApiInterface {
385385 orderDto ?: OrderDto ;
386386 } ) : Promise < OrderDto > {
387387 return await this . POST (
388- "/store/order" ,
388+ this . basePath + "/store/order" ,
389389 JSON . stringify ( params . orderDto ) ,
390390 {
391391 "Content-Type" : "application/json" ,
@@ -492,7 +492,7 @@ export class UserApi extends BaseAPI implements UserApiInterface {
492492 userDto ?: UserDto ;
493493 } ) : Promise < void > {
494494 return await this . POST (
495- "/user" ,
495+ this . basePath + "/user" ,
496496 JSON . stringify ( params . userDto ) ,
497497 {
498498 "Content-Type" : "application/json" ,
@@ -509,7 +509,7 @@ export class UserApi extends BaseAPI implements UserApiInterface {
509509 userDto ?: Array < UserDto > ;
510510 } ) : Promise < void > {
511511 return await this . POST (
512- "/user/createWithArray" ,
512+ this . basePath + "/user/createWithArray" ,
513513 JSON . stringify ( params . userDto ) ,
514514 {
515515 "Content-Type" : "application/json" ,
@@ -526,7 +526,7 @@ export class UserApi extends BaseAPI implements UserApiInterface {
526526 userDto ?: Array < UserDto > ;
527527 } ) : Promise < void > {
528528 return await this . POST (
529- "/user/createWithList" ,
529+ this . basePath + "/user/createWithList" ,
530530 JSON . stringify ( params . userDto ) ,
531531 {
532532 "Content-Type" : "application/json" ,
@@ -586,7 +586,7 @@ export class UserApi extends BaseAPI implements UserApiInterface {
586586 */
587587 public async logoutUser ( ) : Promise < void > {
588588 return await this . GET (
589- "/user/logout" ,
589+ this . basePath + "/user/logout" ,
590590 undefined ,
591591 { }
592592 ) ;
0 commit comments