TypeError: o.status is not a function
aspdev91 opened this issue · 2 comments
aspdev91 commented
Has anyone run into this bug/error when adding a body parameter to an API?
TypeError: o.status is not a function\n' +
' at b (/Users/mt/project/app/server/node_modules/@zodios/express/lib/index.js:12:2221)\n'
makeApi([
{
method: 'post',
path: '/',
alias: 'getRoutine',
description: 'Get a specific routine instance by UUID',
parameters: [
{
name: 'body',
schema: z.object({uuid: z.string()}),
type: 'Body',
},
],
response: UserRoutineResponseSchema,
},
])
aspdev91 commented
Seems like an issue with this line:
I tried logging the parameters in the minified code:
function b(t,e,o,a){o.status(400).json(t);}
and t,e,o,a do not line up with the function parameter signature in the code. When I change the code above to:
function b(t,e,o,a){o()}
it works. "o" is next and any errors parsing against the zod schema are passed to an error middleware I use.
stale commented
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.