Sam

Results 6 comments of Sam

> I found some information here https://github.com/typeorm/typeorm/releases/tag/0.3.0 My version **0.3.5** > > **DEPRECATIONS** `entities`, `migrations`, `subscribers` options inside `DataSourceOptions` accepting string directories support is deprecated. You'll be **only able to...

I could take a look at it, but honestly, I just think `guid-typescript` doesn't add much value. It seems to be unmaintained and I still encounter some issues opened 5...

Thanks for the explanation. Those points make sense, though I'm not sure I need type validation for a string, moreover when given type validation is partially "broken" (or it seems)....

Hello, can't wait for this (really hoping to replace tRPC) ! Is there a current plan for body/queryParams validation ? Something like https://github.com/kevinmarrec/h3-typebox Also, having to pass the response type...

How about using something like this: ```ts // server/api/user/[id].patch.ts import { z } from "zod"; // zod used as an example export default defineEventHandler({ validatedRouteParams: z.object({ id: z.coerce.number() }), //...