├── .gitignore ├── README.md ├── gulpfile.ts ├── package.json ├── sample └── sample1-simple-usage │ ├── app.ts │ ├── controller │ └── PostController.ts │ └── entity │ └── Post.ts ├── src ├── decorators │ ├── EntityFromBody.ts │ ├── EntityFromBodyParam.ts │ ├── EntityFromCookie.ts │ ├── EntityFromParam.ts │ └── EntityFromQuery.ts ├── index.ts ├── options │ └── EntityParamOptions.ts └── util │ └── Utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/gulpfile.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/package.json -------------------------------------------------------------------------------- /sample/sample1-simple-usage/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/sample/sample1-simple-usage/app.ts -------------------------------------------------------------------------------- /sample/sample1-simple-usage/controller/PostController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/sample/sample1-simple-usage/controller/PostController.ts -------------------------------------------------------------------------------- /sample/sample1-simple-usage/entity/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/sample/sample1-simple-usage/entity/Post.ts -------------------------------------------------------------------------------- /src/decorators/EntityFromBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/decorators/EntityFromBody.ts -------------------------------------------------------------------------------- /src/decorators/EntityFromBodyParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/decorators/EntityFromBodyParam.ts -------------------------------------------------------------------------------- /src/decorators/EntityFromCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/decorators/EntityFromCookie.ts -------------------------------------------------------------------------------- /src/decorators/EntityFromParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/decorators/EntityFromParam.ts -------------------------------------------------------------------------------- /src/decorators/EntityFromQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/decorators/EntityFromQuery.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/options/EntityParamOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/options/EntityParamOptions.ts -------------------------------------------------------------------------------- /src/util/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/src/util/Utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/typeorm-routing-controllers-extensions/HEAD/tsconfig.json --------------------------------------------------------------------------------