typescript-rest-swagger
typescript-rest-swagger copied to clipboard
Swagger tools for typescript-rest
Bumps [terser](https://github.com/terser/terser) from 5.7.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
Is there a way to use @Example on an interface, perhaps similar to how @IsInt works in the JSDoc? Something like the docs doesn't work of course: ``` @Example... effectiveDate?:...
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.1 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Hello. I noticed that this library has a very large overlap in goals with [tsoa](https://github.com/lukeautry/tsoa). I'm curious if: (a) someone can describe some of the offerings that this library has...
Typegoose is the "wrapper" I have in a project in order to interact with `mongoose`. I have some objects that references other objects and on Typegoose it has to be...
Added support of parsing Tuple, Partial, Pick and Omit types. Note: Pick and Omit are mapped onto an empty interface for now.
When using `Return.NoResponse` (https://github.com/thiagobustamante/typescript-rest/wiki/Service-Return#no-response) the generated swagger contains a 204 status with no description, when in fact it shouldn't add any status at all since I'm documenting the returns with...
Hi everyone! I recently realized I cannot use `Partial`. For example this works: src/services/index.ts ```typescript import { Path, POST } from "typescript-rest"; import { Response } from "typescript-rest-swagger"; export interface...