Anga

Results 10 comments of Anga

Looks like you haven't installed dependencies with `npm i`.

Hi @xunziheng, Thanks for the suggestion! I'll look into it.

Hi, thanks for the report! Can you please show me the arguments you are passing to the build function? I am unable to reproduce this issue with what you've provided...

I have updated the `resedit` package that is used internally by `@angablue/exe` with version `v2.1.3`. This addresses some bugs that could be corrupting your output. Does this update resolve your...

Instead of using `z.date()` try using `z.coerce.date()`. While you may receive a string, Zod will try coerce it into a Date before performing validation. I haven't tested this against your...

I believe this is the desired behaviour for `validateRequest*` calls but not for `processRequest*` calls. `validateRequest*` does not modify the query, params and body whereas `processRequest*` does.

I believe the types still don't function correctly though. It appears that the types are using the schema input types rather than the schema output types.

The issue is not the values, it's the inferred types which are incorrect.

I ended up writing my own middleware which addresses this issue. The usage is not the same, but regardless you may find it useful. I would submit a PR to...

Hey @kenmadev , thanks for the report. It looks like replacing this same functionality as seen in `pkg` would involve creating a virtual file system as laid out in [this...