@@ -82,7 +82,7 @@ const _returntypes_find_pets_by_status_PetApi = Dict{Regex,Type}(
8282
8383function _oacinternal_find_pets_by_status (_api:: PetApi , status:: Vector{String} ; _mediaType= nothing )
8484 _ctx = OpenAPI. Clients. Ctx (_api. client, " GET" , _returntypes_find_pets_by_status_PetApi, " /pet/findByStatus" , [" petstore_auth" , ])
85- OpenAPI. Clients. set_param (_ctx. query, " status" , status) # type Vector{String}
85+ OpenAPI. Clients. set_param (_ctx. query, " status" , status; style = " form " , is_explode = false ) # type Vector{String}
8686 OpenAPI. Clients. set_header_accept (_ctx, [" application/xml" , " application/json" , ])
8787 OpenAPI. Clients. set_header_content_type (_ctx, (_mediaType === nothing ) ? [] : [_mediaType])
8888 return _ctx
@@ -114,7 +114,7 @@ const _returntypes_find_pets_by_tags_PetApi = Dict{Regex,Type}(
114114
115115function _oacinternal_find_pets_by_tags (_api:: PetApi , tags:: Vector{String} ; _mediaType= nothing )
116116 _ctx = OpenAPI. Clients. Ctx (_api. client, " GET" , _returntypes_find_pets_by_tags_PetApi, " /pet/findByTags" , [" petstore_auth" , ])
117- OpenAPI. Clients. set_param (_ctx. query, " tags" , tags) # type Vector{String}
117+ OpenAPI. Clients. set_param (_ctx. query, " tags" , tags; style = " form " , is_explode = false ) # type Vector{String}
118118 OpenAPI. Clients. set_header_accept (_ctx, [" application/xml" , " application/json" , ])
119119 OpenAPI. Clients. set_header_content_type (_ctx, (_mediaType === nothing ) ? [] : [_mediaType])
120120 return _ctx
0 commit comments