We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 085d653 commit 6b9b1d1Copy full SHA for 6b9b1d1
1 file changed
packages/http-router/src/Router.ts
@@ -207,6 +207,8 @@ export class Router<
207
method: req.method,
208
path: req.url,
209
error: validatorFn.errors?.map((error: any) => error.message).join('\n '),
210
+ bodyParams: undefined,
211
+ queryParams,
212
});
213
return c.json(
214
{
@@ -229,6 +231,8 @@ export class Router<
229
231
230
232
233
234
+ bodyParams,
235
+ queryParams: undefined,
236
237
238
@@ -260,6 +264,7 @@ export class Router<
260
264
261
265
262
266
error: responseValidatorFn.errors?.map((error: any) => error.message).join('\n '),
267
+ originalResponse: body,
263
268
269
270
0 commit comments