Empty arrays stripped from my request bodies, even when they are specified as "required" in the schema. Is this the intended behavior?
import * as ruo from 'remove-undefined-objects';
Object.defineProperty(ruo, 'default', {
get: () => (obj: unknown) => obj,
});
The API I'm working with needs me to send an empty array, it won't accept a missing field in the body.