@@ -18,7 +18,7 @@ open class AnotherFakeAPI {
1818 - parameter body: (body) client model
1919 - returns: `EventLoopFuture` of `ClientResponse`
2020 */
21- open class func call123testSpecialTagsRaw( uuidTest: UUID , body: Client , headers: HTTPHeaders = PetstoreClientAPIConfiguration . shared. customHeaders, beforeSend: ( inout ClientRequest ) throws -> ( ) = { _ in } ) -> EventLoopFuture < ClientResponse > {
21+ open class func call123testSpecialTagsRaw( uuidTest: UUID , body: Client , headers: HTTPHeaders = PetstoreClientAPIConfiguration . shared. customHeaders, apiConfiguration : PetstoreClientAPIConfiguration = PetstoreClientAPIConfiguration . shared , beforeSend: ( inout ClientRequest ) throws -> ( ) = { _ in } ) -> EventLoopFuture < ClientResponse > {
2222 let localVariablePath = " /another-fake/dummy "
2323 let localVariableURLString = apiConfiguration. basePath + localVariablePath
2424
@@ -27,7 +27,7 @@ open class AnotherFakeAPI {
2727 }
2828
2929 return localVariableApiClient. send ( . PATCH, headers: headers, to: URI ( string: localVariableURLString) ) { localVariableRequest in
30- try Configuration . apiWrapper ( & localVariableRequest)
30+ try apiConfiguration . apiWrapper ( & localVariableRequest)
3131
3232 localVariableRequest. headers. add ( name: " uuid_test " , value: uuidTest. description)
3333
@@ -51,8 +51,8 @@ open class AnotherFakeAPI {
5151 - parameter body: (body) client model
5252 - returns: `EventLoopFuture` of `Call123testSpecialTags`
5353 */
54- open class func call123testSpecialTags( uuidTest: UUID , body: Client , headers: HTTPHeaders = PetstoreClientAPIConfiguration . shared. customHeaders, beforeSend: ( inout ClientRequest ) throws -> ( ) = { _ in } ) -> EventLoopFuture < Call123testSpecialTags > {
55- return call123testSpecialTagsRaw ( uuidTest: uuidTest, body: body, headers: headers, beforeSend: beforeSend) . flatMapThrowing { response -> Call123testSpecialTags in
54+ open class func call123testSpecialTags( uuidTest: UUID , body: Client , headers: HTTPHeaders = PetstoreClientAPIConfiguration . shared. customHeaders, apiConfiguration : PetstoreClientAPIConfiguration = PetstoreClientAPIConfiguration . shared , beforeSend: ( inout ClientRequest ) throws -> ( ) = { _ in } ) -> EventLoopFuture < Call123testSpecialTags > {
55+ return call123testSpecialTagsRaw ( uuidTest: uuidTest, body: body, headers: headers, apiConfiguration : apiConfiguration , beforeSend: beforeSend) . flatMapThrowing { response -> Call123testSpecialTags in
5656 switch response. status. code {
5757 case 200 :
5858 return . http200( value: try response. content. decode ( Client . self, using: apiConfiguration. contentConfiguration. requireDecoder ( for: Client . defaultContentType) ) , raw: response)
0 commit comments