Yusuke Wada

Results 1706 comments of Yusuke Wada

@frasergr Thank you for the issue. Hey, @naporin0624 @sor4chi ! Can one of the two take a look at this?

@sor4chi Thanks! > If you like, I can whip up a draft PR with this change and we can iterate the naming / implementation. Do you want me to put...

Hi @platform-kit It's not a bug. The OpenAPIHono uses `instanceof OpenAPIHono`, and the `module.default` should always be `true`, but it sometimes will be `false` because maybe you use dynamic import...

It might be possible to have the app contain a string or other data that can be used to identify whether or not it is an OpenAPI instead of using...

Hi @ibqn Currently, the Zod Validator does not support validation for either JSON or Form. But, you can write the middleware like the following `or` middleware to support it. ```ts...

Hi @zhuscat This a Zod matter and a Zod's limitation, and you can write like the following: ```ts const schema = app.openapi( createRoute({ method: 'get', path: '/dev', request: { query:...

Hi @LordLumineer I want to reproduce it in my environment, but it's difficult with your snippets. So, can you provide a minimal project to reproduce?

@LordLumineer Thank you. I tried it, but the project is too big to debug. Can you create a **minimal** project that removes the non-bug-related things? And the following error was...

@EdamAme-x I've tried the same things that convert `type` to `interface` before. But the performance did not change at that time. > It appears that PRs other than @yusukebe's do...

Hi @abdurahmanshiine It does not support the type `multipart/form-data` but it accepts `string` so you can use `multipart/form-data` as a `string` like this: ```ts import { createRoute, z, OpenAPIHono }...