- Fixed test

This commit is contained in:
Ferdi Koomen 2021-10-28 20:35:38 +02:00
parent a51ac6a22d
commit be7ffbbd80
2 changed files with 24 additions and 2 deletions

View File

@ -33,7 +33,7 @@ async function generateV3() {
}
async function generate() {
// await generateV2();
await generateV2();
await generateV3();
}

View File

@ -314,7 +314,29 @@
"RequestBody"
],
"requestBody": {
"$ref": "#/components/requestBodies/SimpleRequestBody"
"content": {
"application/json": {
"schema": {
"$ref": "#/components/requestBodies/SimpleRequestBody"
}
}
}
}
}
},
"/api/v{api-version}/formData/": {
"post": {
"tags": [
"FormData"
],
"requestBody": {
"content": {
"multipart/form-data": {
"schema": {
"$ref": "#/components/requestBodies/SimpleRequestBody"
}
}
}
}
}
},