H
Hono•2w ago
Agustín

Unsafe call of an `error` type typed value

Hi Hono team! 👋 I'm trying to align a route definition with the generated $get method type, but I'm running into a mismatch and would appreciate your help. This is the content of the type:
(property) $get: (args: {
param: {
username: string;
};
}, options?: ClientRequestOptions) => Promise<ClientResponse<{
_id: string;
username?: string | undefined;
name?: string | undefined;
picture?: string | undefined;
banner?: string | undefined;
}, 200, "json">>
(property) $get: (args: {
param: {
username: string;
};
}, options?: ClientRequestOptions) => Promise<ClientResponse<{
_id: string;
username?: string | undefined;
name?: string | undefined;
picture?: string | undefined;
banner?: string | undefined;
}, 200, "json">>
Ant this it's my endpoint defined:
const PATH = "/users";
const TAGS = ["Users"];

export const listUser = createRoute({
tags: TAGS,
method: "get",
path: `${PATH}/:username`,
request: {
params: z.object({
username: z.string(),
}),
},
responses: {
200: schema(zListUserResultSchema, "User found"),
},
});
const PATH = "/users";
const TAGS = ["Users"];

export const listUser = createRoute({
tags: TAGS,
method: "get",
path: `${PATH}/:username`,
request: {
params: z.object({
username: z.string(),
}),
},
responses: {
200: schema(zListUserResultSchema, "User found"),
},
});
No description
1 Reply
ambergristle
ambergristle•2w ago
how have you implemented usersClient?

Did you find this page helpful?