👋 Thanks for the amazing library! It's really handy! One thing I noticed is that `requestBody.required` is never set when using validator: E.g. ```ts validator('json', z.object({...})) ``` The above will generate a schema like the following: ```jsonc { "requestBody": { "required": true, // <--- missing!!!! "content": { "application/json": // ... } } } ``` ---- I feel like `required` should only be omitted when the validator defines: ```ts validator('json', z.object({...}).optional()) ``` ---- Big thank you again!
{ "requestBody": { "required": true, // <--- missing!!!! "content": { "application/json": // ... } } }