Results 6 comments of akineko

When multiple response definitions are specified for an API, it seems to result in an error if there are differences in the schema. ok ```ts const app = new OpenAPIHono()...

I fixed, Adding a response without content. example ```ts const app = new OpenAPIHono() .openapi(createRoute({ method: 'get', path: '/users', responses: { 200: { description: 'users', content: { 'application/json': { schema:...

Hi @OxYz0n3 Your problem can be solved using RouteHandler. ```ts import { createRoute, OpenAPIHono, type RouteHandler } from '@hono/zod-openapi' const route = createRoute(...) const handler: RouteHandler = (c) => {...

Happened to me too. I have not been able to create a minimum reproducible state, but I will share what I know. - It seems that this does not occur...

Hi, @yusukebe I tried troubleshooting to see if I could reproduce this issue with minimal code, and I found the cause. Setting nodeResolution to node in tsconfig.json triggers this error....

**Update**: I tested with version 1.0.34 and the issue has been resolved! 🎉 The IDE integration is now working correctly again. Thank you to the Claude Code team for fixing...