fix missing params on construction endpoint

This commit is contained in:
SpaceAdmiral 2023-10-28 09:32:59 -07:00
parent 2b41334359
commit 8b07e55980

View File

@ -811,8 +811,28 @@
"tags": [ "tags": [
"Systems" "Systems"
] ]
},
"parameters": [
{
"description": "The system symbol",
"in": "path",
"name": "systemSymbol",
"required": true,
"schema": {
"type": "string"
} }
}, },
{
"description": "The waypoint symbol",
"in": "path",
"name": "waypointSymbol",
"required": true,
"schema": {
"type": "string"
}
}
]
},
"/systems/{systemSymbol}/waypoints/{waypointSymbol}/construction/supply": { "/systems/{systemSymbol}/waypoints/{waypointSymbol}/construction/supply": {
"post": { "post": {
"description": "Supply a construction site with the specified good. Requires a waypoint with a property of `isUnderConstruction` to be true.\n\nThe good must be in your ship's cargo. The good will be removed from your ship's cargo and added to the construction site's materials.", "description": "Supply a construction site with the specified good. Requires a waypoint with a property of `isUnderConstruction` to be true.\n\nThe good must be in your ship's cargo. The good will be removed from your ship's cargo and added to the construction site's materials.",