@mikemajesty/microservice-crud 5.0.2 → 5.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikemajesty/microservice-crud",
3
- "version": "5.0.2",
3
+ "version": "5.0.3",
4
4
  "description": "Monorepo CLI",
5
5
  "main": "src/cli.js",
6
6
  "scripts": {
@@ -13,12 +13,7 @@ import { ApiRequest } from '@/utils/request';
13
13
  import { SwaggerResponse } from './swagger';
14
14
 
15
15
  @Controller('${pluralize(name)}')
16
- <<<<<<< HEAD
17
16
  @ApiTags('${pluralize(name)}')
18
- =======
19
- @ApiTags('${name}')
20
- @ApiBearerAuth()
21
- >>>>>>> 4620d9e9fb7378a4428710f30a5e36d07508a3b8
22
17
  export class ${capitalizeFirstLetter(name)}Controller {
23
18
  @Get()
24
19
  @ApiResponse(SwaggerResponse.get[200])