products/{id} APIs conflicting with products/my-products in generated doc with OpenAPI
I did put the {id} one after the my-products one, but it doesn't seem to work?

46 Replies
hey! what package are you using for openapi?
*specifically to generate the docs view
"@scalar/hono-api-reference": "^0.5.175",
Appreciate your time responding to this!
Happy to help!
I’m afk rn, but I’ll try to repro when i get back
@MarvinKR i'm not able to repro
can you share the
describeRoute
for that /products/{id}
endpointthanks!
can you add syntax highlighting? it makes snippets much easier to read
also, what's the url in your browser when you select that route
e.g.,
http://localhost:3000/docs#tag/default/GET/users/{id}
lol. so i'm not able to repro your issue, but scalar also isn't displaying the response schemas
@MarvinKR have you tried removing the clerk
middleware (or moving it after the spec)?how do you do that? Don't you need premium discord?
Nope. Discord uses markdown syntax, so just add the language after the opening backticks: ```typescript
http://localhost:3001/api/docs#tag/products/GET/api/products/%7Bid%7D
yeah didn't work, also changing the url name didn't affect it. I feel like it's an issue with: name: "id",
in: "path",
hmmmm. this is mine:
http://localhost:3000/docs#tag/users/GET/users/{id}
Yeah I just use api in my basepath but it's pretty much the same
This is what I have in /openapi
try removing the
parameters
option
when i try to set that option and use zValidator
, the UI breaks
using only zValidator
seems to work
(import { validator as zValidator } from "hono-openapi/zod";
)/openapi
when using both
when using only params

with only
zValidator

@Aditya Mathur is it expected behavior that when using
hono-openapi/zod
, setting parameters
in describeRoute
and using zValidator
will duplicate the parameter in the spec?
This was resolved in
v0.4.5
what version are you using of hono-openapi
? @MarvinKRi'm using
v0.4.5

running the code shared above generates the preceding screenshots
Interesting, can you share a reproduction of this? And create a issue over here - https://github.com/rhinobase/hono-openapi/issues
GitHub
Issues · rhinobase/hono-openapi
A plugin for Hono to generate OpenAPI Swagger documentation - Issues · rhinobase/hono-openapi
I am working on another issue right now, which might help this one too. Not sure but I will give it a try.
Here is the PR which was merged https://github.com/rhinobase/hono-openapi/pull/64
"hono-openapi": "^0.4.5",
I need to write some tests 🙃
Haha I've never done tests either 💀
removing parameters fixed it! thx!!!!
happy to help!
@MarvinKR can you check if
v0.4.6
solves this issue for you?hey @Aditya Mathur now I have this issues when writing:
I get this error: Type 'ResolverResult' is not assignable to type 'ReferenceObject | SchemaObject | undefined'.ts(2322)
index.d.ts(329, 9): The expected type comes from property 'schema' which is declared here on type 'MediaTypeObject'
so now I had to do this for request body:
But it does work in content responses:
Can you share the full route definition that’s breaking?
(The full
describeRoute
)Hey @MarvinKR, this is my code -
I am not getting any type errors
can you share a reproduction of this on Stackblitz?
or CodeSandbox
can you do an example with a post endpoint using requestbody ?
thanks!
to clarify, is your issue a TS error or a runtime error?
i'm not seeing any issues with the TS

type issue: Type 'ResolverResult' is not assignable to type 'ReferenceObject | SchemaObject | undefined'.ts(2322)
index.d.ts(329, 9): The expected type comes from property 'schema' which is declared here on type 'MediaTypeObject'
interesting. can you share a screenshot of the code/error? i can't repro
i shared my
package.json
to make sure we're on the same versionsyeah same here:
"@hono/zod-openapi": "^0.19.2",
"@hono/zod-validator": "^0.4.3",
"hono": "^4.7.2",
"hono-openapi": "^0.4.6",
"zod": "^3.24.1",
"zod-openapi": "^4.2.3"
Just share a screenshot of the type errors you are getting, then I can take a look too

any shot this is a conflict between
hono-openapi
and @hono/zod-openapi
?
idk that you want to be running both in a project
there are no TS issues on my end when i copy+paste your snippetQuick question why are you passing this in
describeRoute
?
This is how you should do it
You don't have to pass required, as that we can get from the schema
Seems to be working fine with scalar
what about queries, params, etc?
Yeah for them too use the validator
Thanks for this fix! Appreciate your time & help!