`args?` is blank despite using zValidator
Set up details
Using Deno (2.4.2, the latest version)And all the other packages are also up-to-date (Hono 4.8.5, zod-validator 0.7.1, Zod 4.0.5)
I'm getting the packages from NPM, not JSR
Issue
Hono client infers the route as$post: (args?: {}, options?: ClientRequestOptions). Notice the blank args?. This is not expected behaviorExpected behavior is
args: { json: { name: string } }