노지원
노지원
swagger support optional security, but nestia doesn't support it. so i suggest update security tag. ```ts // example code export class Controller{ @security @security bearer @core.TypedRoute.Get() async get() {} }...
``` view PostStatics { post_id String @unique view Int like Int } ``` ```ts const PostStatics = createView("PostStatics", (view) => { view.string("post_id", { unique: true }) .int("view") .int("like"); }); ```...
## Bug Report It regenerates the same type as many times as it is reused. ### Summary ```ts /** Actual behavior in Test case `clone-type-create-duplicate` */ export namespace Exception {...
## 🚀 Feature request ### Current Behavior Currently, fp-ts Functor instances only support synchronous function transformations through the map function. When dealing with Functors containing Promises, applying asynchronous functions requires...
## Description There are cases where API responses come in file (stream) format. Regardless of the NestJS Controller handler's return type, I want to change the response content type in...