Generate Scaffolder OpenAPI server

Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
solimant
2024-12-10 21:56:28 +00:00
parent ecb5c20987
commit 45dfc16205
78 changed files with 4645 additions and 198 deletions
@@ -21,7 +21,12 @@ import { PathTemplate, ValueOf } from './common';
*/
export type EndpointMap = Record<
string,
{ query?: object; body?: object; response?: object | void; path?: object }
{
query?: object;
body?: object;
response?: object | string | void;
path?: object;
}
>;
// OpenAPI generator doesn't emit regular lowercase 'delete'.