routing-controllers-openapi
routing-controllers-openapi copied to clipboard
Runtime OpenAPI v3 schema generation for routing-controllers.
Hi! I am using the @Body decorator from `routing-controllers` and it somehow doesn't parse to the Swagger Docs. I read that it might have to do with using @Body and...
Bumps [validator](https://github.com/validatorjs/validator.js) from 13.5.2 to 13.7.0. Release notes Sourced from validator's releases. 13.7.0 13.7.0 New Features #1706 isISO4217, currency code validator @jpaya17 Fixes and Enhancements #1647 isFQDN: add allow_wildcard option...
Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 3.0.1. Commits f545bdb 3.0.1 c57d4c2 fix a few old XO issues for backport 419250f Fix potential ReDoS (#37) See full diff in compare view [![Dependabot...
Support for @UploadedFile('fileName') and @UploadedFile('fileName') decorator ref: #19
hi, I would like to generate OpenAPI specs for a payload which would contain a map with string[] as values. Example: ```javascript { 'combinations': { 'combination1': ['elem1', 'elem2'], 'combination2': ['elem2',...
Bumps [urijs](https://github.com/medialize/URI.js) from 1.19.7 to 1.19.11. Release notes Sourced from urijs's releases. 1.19.11 (April 3rd 2022) SECURITY fixing URI.parse() handle excessive slashes in scheme-relative URLs - disclosed by zeyu2001 via...
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...
I need to return an array of strings. Is there something similar to @ResponseSchema that accepts basic types? I'm looking for this type of output: ``` @OpenAPI({ summary: 'Returns a...
Have a project set up using the following structure, ``` ./controllers/auth.ts ./validator/auth.ts ./main.ts ``` Here's a rough implementation of how the files are implemented, ./main.ts ``` import { routingControllersToSpec }...