samchon / nestia

NestJS Helper Libraries + TypeScript OpenAPI generator
https://nestia.io/
MIT License
1.71k stars 87 forks source link

Fix #862: `@TypedFormData.Body()` in `fastify`. #897

Closed samchon closed 2 months ago

samchon commented 2 months ago

When @TypedFormData.Body() being used with fastify, it could not compose non-binary properties.

It's because @fastify/multipart has totally different methodology, and I hadn't known it.

This PR fixes the bug, so that make non-binary properties to be propertly composed.