Hi, I have a TransformInterceptor that wraps all of my responses like this:
{
result: <the-data-returned-by-controller>
}
The OpenApi spec generated by the swagger integration does not seem to honor that transformer.
I'm curious if there is a way to configure swagger or nest to specify that wrapper type for all of my responses?
It don't mind specifying this statically, I would just like to be able to do it in one place and not on every controller/route.