We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a2d9e8 + 9d04274 commit d5fa3b5Copy full SHA for d5fa3b5
packages/express-wrapper/src/index.ts
@@ -48,7 +48,7 @@ const decodeRequestAndEncodeResponse = <Route extends HttpRoute>(
48
const validationErrors = PathReporter.failure(maybeRequest.left);
49
const validationErrorMessage = validationErrors.join('\n');
50
res.writeHead(400, { 'Content-Type': 'application/json' });
51
- res.write(JSON.stringify({ errors: validationErrorMessage }));
+ res.write(JSON.stringify({ error: validationErrorMessage }));
52
res.end();
53
return;
54
}
packages/openapi-generator/package.json
@@ -44,7 +44,7 @@
44
"test/": "dist/test/"
45
46
},
47
- "timeout": "30s"
+ "timeout": "1m"
"publishConfig": {
"access": "public"
0 commit comments