@rxap/plugin-nestjs 16.1.0-dev.4 → 16.1.0-dev.41

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.
Files changed (112) hide show
  1. package/CHANGELOG.md +361 -0
  2. package/README.md +155 -1
  3. package/generators.json +112 -0
  4. package/package.json +59 -41
  5. package/src/generators/feature-microservice/generator.d.ts +4 -0
  6. package/src/generators/feature-microservice/generator.js +17 -0
  7. package/src/generators/feature-microservice/generator.js.map +1 -0
  8. package/src/generators/feature-microservice/index.d.ts +2 -0
  9. package/src/generators/feature-microservice/index.js +7 -0
  10. package/src/generators/feature-microservice/index.js.map +1 -0
  11. package/src/generators/feature-microservice/schema.d.ts +5 -0
  12. package/src/generators/feature-microservice/schema.json +23 -0
  13. package/src/generators/frontend-microservice/generator.d.ts +4 -0
  14. package/src/generators/frontend-microservice/generator.js +17 -0
  15. package/src/generators/frontend-microservice/generator.js.map +1 -0
  16. package/src/generators/frontend-microservice/index.d.ts +2 -0
  17. package/src/generators/frontend-microservice/index.js +7 -0
  18. package/src/generators/frontend-microservice/index.js.map +1 -0
  19. package/src/generators/frontend-microservice/schema.d.ts +6 -0
  20. package/src/generators/frontend-microservice/schema.json +29 -0
  21. package/src/generators/health-indicator/generator.d.ts +4 -0
  22. package/src/generators/health-indicator/generator.js +31 -0
  23. package/src/generators/health-indicator/generator.js.map +1 -0
  24. package/src/generators/health-indicator/index.d.ts +2 -0
  25. package/src/generators/health-indicator/index.js +7 -0
  26. package/src/generators/health-indicator/index.js.map +1 -0
  27. package/src/generators/health-indicator/schema.d.ts +5 -0
  28. package/src/generators/health-indicator/schema.json +32 -0
  29. package/src/generators/health-indicator-init/generator.d.ts +4 -0
  30. package/src/generators/health-indicator-init/generator.js +35 -0
  31. package/src/generators/health-indicator-init/generator.js.map +1 -0
  32. package/src/generators/health-indicator-init/index.d.ts +2 -0
  33. package/src/generators/health-indicator-init/index.js +7 -0
  34. package/src/generators/health-indicator-init/index.js.map +1 -0
  35. package/src/generators/health-indicator-init/schema.d.ts +4 -0
  36. package/src/generators/health-indicator-init/schema.json +22 -0
  37. package/src/generators/init/generator.js +8 -5
  38. package/src/generators/init/generator.js.map +1 -1
  39. package/src/generators/init/index.d.ts +2 -0
  40. package/src/generators/init/index.js +7 -0
  41. package/src/generators/init/index.js.map +1 -0
  42. package/src/generators/init/schema.d.ts +2 -0
  43. package/src/generators/init/schema.json +10 -0
  44. package/src/generators/init-application/extract-existing-config-validation.d.ts +3 -0
  45. package/src/generators/init-application/extract-existing-config-validation.js +47 -0
  46. package/src/generators/init-application/extract-existing-config-validation.js.map +1 -0
  47. package/src/generators/init-application/files/shared/Dockerfile +33 -0
  48. package/src/generators/init-application/generator.js +569 -34
  49. package/src/generators/init-application/generator.js.map +1 -1
  50. package/src/generators/init-application/index.d.ts +2 -0
  51. package/src/generators/init-application/index.js +7 -0
  52. package/src/generators/init-application/index.js.map +1 -0
  53. package/src/generators/init-application/schema.d.ts +5 -2
  54. package/src/generators/init-application/schema.json +36 -21
  55. package/src/generators/init-library/generator.js +36 -7
  56. package/src/generators/init-library/generator.js.map +1 -1
  57. package/src/generators/init-library/index.d.ts +2 -0
  58. package/src/generators/init-library/index.js +7 -0
  59. package/src/generators/init-library/index.js.map +1 -0
  60. package/src/generators/init-library/schema.d.ts +2 -0
  61. package/src/generators/init-library/schema.json +10 -0
  62. package/src/generators/jwt/generator.d.ts +4 -0
  63. package/src/generators/jwt/generator.js +76 -0
  64. package/src/generators/jwt/generator.js.map +1 -0
  65. package/src/generators/jwt/index.d.ts +2 -0
  66. package/src/generators/jwt/index.js +7 -0
  67. package/src/generators/jwt/index.js.map +1 -0
  68. package/src/generators/jwt/schema.d.ts +4 -0
  69. package/src/generators/jwt/schema.json +18 -0
  70. package/src/generators/microservice/generator.d.ts +4 -0
  71. package/src/generators/microservice/generator.js +26 -0
  72. package/src/generators/microservice/generator.js.map +1 -0
  73. package/src/generators/microservice/index.d.ts +2 -0
  74. package/src/generators/microservice/index.js +7 -0
  75. package/src/generators/microservice/index.js.map +1 -0
  76. package/src/generators/microservice/schema.d.ts +6 -0
  77. package/src/generators/microservice/schema.json +27 -0
  78. package/src/generators/open-api/generator.d.ts +4 -0
  79. package/src/generators/open-api/generator.js +74 -0
  80. package/src/generators/open-api/generator.js.map +1 -0
  81. package/src/generators/open-api/index.d.ts +2 -0
  82. package/src/generators/open-api/index.js +7 -0
  83. package/src/generators/open-api/index.js.map +1 -0
  84. package/src/generators/open-api/schema.d.ts +4 -0
  85. package/src/generators/open-api/schema.json +18 -0
  86. package/src/generators/sentry/generator.d.ts +4 -0
  87. package/src/generators/sentry/generator.js +152 -0
  88. package/src/generators/sentry/generator.js.map +1 -0
  89. package/src/generators/sentry/index.d.ts +2 -0
  90. package/src/generators/sentry/index.js +7 -0
  91. package/src/generators/sentry/index.js.map +1 -0
  92. package/src/generators/sentry/schema.d.ts +6 -0
  93. package/src/generators/sentry/schema.json +32 -0
  94. package/src/generators/swagger/files/environments/environment.swagger.ts__tmpl__ +1 -0
  95. package/src/generators/swagger/files/swagger.ts__tmpl__ +17 -15
  96. package/src/generators/swagger/generator.js +10 -17
  97. package/src/generators/swagger/generator.js.map +1 -1
  98. package/src/generators/swagger/index.d.ts +2 -0
  99. package/src/generators/swagger/index.js +7 -0
  100. package/src/generators/swagger/index.js.map +1 -0
  101. package/src/generators/swagger/schema.d.ts +1 -0
  102. package/src/generators/swagger/schema.json +3 -0
  103. package/src/generators/validator/generator.d.ts +4 -0
  104. package/src/generators/validator/generator.js +14 -0
  105. package/src/generators/validator/generator.js.map +1 -0
  106. package/src/generators/validator/index.d.ts +2 -0
  107. package/src/generators/validator/index.js +7 -0
  108. package/src/generators/validator/index.js.map +1 -0
  109. package/src/generators/validator/schema.d.ts +4 -0
  110. package/src/generators/validator/schema.json +22 -0
  111. package/src/lib/skip-non-nest-project.js +3 -3
  112. package/src/lib/skip-non-nest-project.js.map +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,367 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [16.1.0-dev.41](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.40...@rxap/plugin-nestjs@16.1.0-dev.41) (2023-10-11)
7
+
8
+ ### Bug Fixes
9
+
10
+ - fail with manuel action instructions ([94dee1f](https://gitlab.com/rxap/packages/commit/94dee1f89ac92d309e31d04629452ef468adf832))
11
+
12
+ # 16.1.0-dev.40 (2023-10-11)
13
+
14
+ ### Bug Fixes
15
+
16
+ - add development configuration to build target ([676142f](https://gitlab.com/rxap/packages/commit/676142f78571b9f4ae47c78e61448b114f98ba38))
17
+ - add implicit dependencies between openapi client sdk project and the service project ([d2910cd](https://gitlab.com/rxap/packages/commit/d2910cdce7396665ed271952409ff4cc58a3f5cf))
18
+ - add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
19
+ - add missing template property ([3a92a50](https://gitlab.com/rxap/packages/commit/3a92a50c201c18520b56c780df0fe3d797537fa3))
20
+ - add project ts-morph ([fda78f5](https://gitlab.com/rxap/packages/commit/fda78f5ed61caac6dc5c4d9a70afd3aced6a05fa))
21
+ - add ROOT_DOMAIN default env value ([bce5c91](https://gitlab.com/rxap/packages/commit/bce5c91c0face19e59c8e145b5b7e4cecf268089))
22
+ - add skip-projects flag ([e1f31ed](https://gitlab.com/rxap/packages/commit/e1f31ed837646f605ced82a52749e62af07ba939))
23
+ - change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
24
+ - convert directory into project name prefix ([d2f0c19](https://gitlab.com/rxap/packages/commit/d2f0c19aa2fa798be5657f333c991a1af2e05408))
25
+ - create an info path for the default app controller ([7c54f5d](https://gitlab.com/rxap/packages/commit/7c54f5d569551c79042b2f8db437da6530d87d74))
26
+ - create health files if not exist ([60e7b63](https://gitlab.com/rxap/packages/commit/60e7b63919ab35eb3a546112eaf0f69cdecbb233))
27
+ - default status service base url var generation ([46125dd](https://gitlab.com/rxap/packages/commit/46125dd161db5eac87f5fea4fdb47ac61bc469a6))
28
+ - ensure all required cacheable operations are defined ([d9ded9c](https://gitlab.com/rxap/packages/commit/d9ded9c5e150d9781ce490ad7ac292194d09bf2a))
29
+ - ensure changes to the openapi client sdk project configuration are written to disk ([e0e6821](https://gitlab.com/rxap/packages/commit/e0e68211f160f79609fe62a81f66d713c1432bbc))
30
+ - ensure extraction works in new module structure ([c646866](https://gitlab.com/rxap/packages/commit/c646866cbb55d08d6a2dd7207c683578bdfd0105))
31
+ - ensure options are passed to the microservice generator ([3c4dfe0](https://gitlab.com/rxap/packages/commit/3c4dfe090f9f9b6b62abc3ea83a47d37a18cf52b))
32
+ - ensure overwrite option is passed to sub schematics ([0c8a19b](https://gitlab.com/rxap/packages/commit/0c8a19b5166f804aa335f739a00a5415bd97f61a))
33
+ - ensure project tags ([4a59b94](https://gitlab.com/rxap/packages/commit/4a59b94526ea0ed16216b1b8001a694ac7a8bea4))
34
+ - ensure projects are buildable or publishable ([354400b](https://gitlab.com/rxap/packages/commit/354400bd7b012e67801f8986ae4a05b40ef44d4a))
35
+ - ensure the apiConfigurationFile is defined ([09f9432](https://gitlab.com/rxap/packages/commit/09f9432bf20c20de29eb510b5b61db68f56bd306))
36
+ - ensure the env replacement for nest application is defined ([beccd3f](https://gitlab.com/rxap/packages/commit/beccd3f67df21ca60d696a7fe69445875c14a2c3))
37
+ - ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
38
+ - ensure the project specific api prefix is used ([4e977a6](https://gitlab.com/rxap/packages/commit/4e977a6469c9f0537ef32c81c8adec34c34bcec9))
39
+ - expose generators as schematics ([8a58d07](https://gitlab.com/rxap/packages/commit/8a58d07c2f1dcfff75e724a418d7c3bddb2d0bbc))
40
+ - generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
41
+ - import SentryOptionsFactory from the correct package ([001abfe](https://gitlab.com/rxap/packages/commit/001abfeba6c5adbdfd6a17748f1d0bc15b8aaee1))
42
+ - improve nest application init generator execution ([c41c348](https://gitlab.com/rxap/packages/commit/c41c348aaa0814e0567bf5270d242692ab735b51))
43
+ - install required dependencies ([c98eb72](https://gitlab.com/rxap/packages/commit/c98eb72f284d2645b882f266b1a5887392df2ba2))
44
+ - install required dependencies ([a416b24](https://gitlab.com/rxap/packages/commit/a416b24af4cedbb63218de1402e5cbb2ccaf68d9))
45
+ - install required dependencies ([859be87](https://gitlab.com/rxap/packages/commit/859be8766fbb20cb2c38c5e71ac3037286d59f0c))
46
+ - introduce Is\*Project functions ([3c9f251](https://gitlab.com/rxap/packages/commit/3c9f251f1d7be46ca366171e79e86ef2764fa3b0))
47
+ - introduce more Is\*Project functions ([41a3713](https://gitlab.com/rxap/packages/commit/41a3713e2965f46900e80902a455b62e08686989))
48
+ - move forRoot logic into detected loader classes ([45812d6](https://gitlab.com/rxap/packages/commit/45812d66901f37130ec4018b0bc9369829800155))
49
+ - only skip swagger configuration if explicit disabled ([b86fbff](https://gitlab.com/rxap/packages/commit/b86fbff8b6fabed940247abf25e8d611400fce26))
50
+ - pass overwrite option to utility function ([2b94b6d](https://gitlab.com/rxap/packages/commit/2b94b6d74c531c0d3d8655cfeb661053073779e1))
51
+ - peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
52
+ - remove coerce default root domain ([20809c7](https://gitlab.com/rxap/packages/commit/20809c72bcca2b31bd6afdc53641e99fd9666899))
53
+ - remove generate file call ([ee235d5](https://gitlab.com/rxap/packages/commit/ee235d50713485e6b84e3735e7dee2a80f23e979))
54
+ - remove support for open-api client sdk packages ([0015878](https://gitlab.com/rxap/packages/commit/0015878e53cba42943d37354ef5c7d5f17828fd7))
55
+ - resolve issues ([602183d](https://gitlab.com/rxap/packages/commit/602183d93528a28773e05b7a983110bafb93a2f2))
56
+ - respect the overwrite flag ([efd7313](https://gitlab.com/rxap/packages/commit/efd7313bcb14886043d5cfd646a5542d6162312c))
57
+ - restore existing config validation ([3e3b92d](https://gitlab.com/rxap/packages/commit/3e3b92df3d183cc617bc0c3f70fb309f04fba0aa))
58
+ - set correct default publishable library package json version ([c942e51](https://gitlab.com/rxap/packages/commit/c942e5152a19e33cf9881106879eb2df20ef723b))
59
+ - set correct schema types ([c9d14da](https://gitlab.com/rxap/packages/commit/c9d14da08492f1d486b448ad96ff35ce92077a5b))
60
+ - set default throttler ttl to 1 ([6fd02aa](https://gitlab.com/rxap/packages/commit/6fd02aac633fde34cba8d66cc5e373b7eff9dc79))
61
+ - set required defaults for nestjs microservice init ([04463ec](https://gitlab.com/rxap/packages/commit/04463ec95cdc1265861a6b27f5532db1921fa677))
62
+ - skip plugin or schematic projects ([8953299](https://gitlab.com/rxap/packages/commit/89532993198c32bc25e5008748db385f6cee25a7))
63
+ - soft fail for library generation ([8d69e69](https://gitlab.com/rxap/packages/commit/8d69e69464e25c90d9cfb9e709fd0cde1fce0f7e))
64
+ - streamline the nestjs application initialization ([d5cc807](https://gitlab.com/rxap/packages/commit/d5cc8079d3ae542c988904fc7f0cc7a63dd7d2f0))
65
+ - support config validation overwrite ([bf9fc5d](https://gitlab.com/rxap/packages/commit/bf9fc5dcdb961d7583114e88abfe7ba0340df0f8))
66
+ - support dynamic label definition ([b284395](https://gitlab.com/rxap/packages/commit/b284395f0a1630a6b2f1310886ef4009f5523079))
67
+ - support dynamic server config loading ([17f73ab](https://gitlab.com/rxap/packages/commit/17f73aba524837a8e21f85b84d5cef8b2fe1e99b))
68
+ - support overwrite of default docker file ([4289d2b](https://gitlab.com/rxap/packages/commit/4289d2bd1cf184fc68766804d0c729a2773803be))
69
+ - update service status name ([595cd07](https://gitlab.com/rxap/packages/commit/595cd07ab522dc1818c6f275e7a526e6b31d63ac))
70
+ - update the application configuration file with the service api prefix ([86f0779](https://gitlab.com/rxap/packages/commit/86f0779339f21b786f894fa13685a504f6ad8bf3))
71
+ - use es module import style ([f41dbf7](https://gitlab.com/rxap/packages/commit/f41dbf754efa7e80d7277d1c8fb9aafe6aad6812))
72
+ - use function CoerceNxJsonCacheableOperation ([485e598](https://gitlab.com/rxap/packages/commit/485e598e7a1192b5635f6c54dee5349b9d2889c3))
73
+ - use local status server if possible ([4f498cd](https://gitlab.com/rxap/packages/commit/4f498cd2297e6b30e3962a1356a45e714982bec0))
74
+ - use ready hook for RegisterToStatusService ([072800b](https://gitlab.com/rxap/packages/commit/072800bd171a3e01773fe30942ea0c079065edb8))
75
+ - use the new status service hostname ([c59a0aa](https://gitlab.com/rxap/packages/commit/c59a0aae38e34a43d3ebfea36fd4ce128e865702))
76
+ - use the plugin-open-api project for client sdk generation ([734aa70](https://gitlab.com/rxap/packages/commit/734aa70f1a319bc2f9f42f6e1607b3aa57ce66b3))
77
+ - use unified Dockerfile ([506344a](https://gitlab.com/rxap/packages/commit/506344a573dd20a3054fe846e8b7a9556be2b788))
78
+
79
+ ### Features
80
+
81
+ - add feature-microservice generator ([12f91f3](https://gitlab.com/rxap/packages/commit/12f91f36bb33552ebf56c8684d22e9ff4f7ef13f))
82
+ - add frontend-microservice generator ([ba67aea](https://gitlab.com/rxap/packages/commit/ba67aea0604a7a63ad73c1129a666026d73aca1e))
83
+ - add generate-open-api target to nestjs application projects ([24e804e](https://gitlab.com/rxap/packages/commit/24e804e80e44af186177454176e990ef92e2a212))
84
+ - add microservice generator ([c421e01](https://gitlab.com/rxap/packages/commit/c421e015cc7e8677664e8de1b2ee2f6b39e324d5))
85
+ - add openapi utility operation generation ([648b8ef](https://gitlab.com/rxap/packages/commit/648b8ef7a4fa521e4baf7362e443799f8718f401))
86
+ - add project json generator executor ([b4cd0cd](https://gitlab.com/rxap/packages/commit/b4cd0cd4d63521d37873d33d8ebe2f2a71202ec2))
87
+ - add the health indicator generator ([20b45b6](https://gitlab.com/rxap/packages/commit/20b45b6609a2dcd2eadd8c73a6a27501451bfc64))
88
+ - add the jwt generator ([ca9a3b3](https://gitlab.com/rxap/packages/commit/ca9a3b3e1f08dc7a54f8b19e4b4382d2ffa34053))
89
+ - add the mandatory app property to the environment object ([cfcb308](https://gitlab.com/rxap/packages/commit/cfcb3082c1f49295fe582bfdc057e17e2fff4804))
90
+ - add the open-api generator ([6500d77](https://gitlab.com/rxap/packages/commit/6500d778bca2fda5e18fe0732409b0664cf054d1))
91
+ - add the sentry generator ([dccb2fb](https://gitlab.com/rxap/packages/commit/dccb2fb1107ae34d440a25cb96d285d5b5bc3c65))
92
+ - add the validator generator ([6d64321](https://gitlab.com/rxap/packages/commit/6d64321501f1898d7094709c02a541cb8f2458c9))
93
+ - exclude health path from global api prefix ([023456b](https://gitlab.com/rxap/packages/commit/023456b9dae37372f2b1f0a8e6efadf285973010))
94
+ - generate status registry feature ([1eac350](https://gitlab.com/rxap/packages/commit/1eac350be642ce3f97671ac109950f2b5fdb6b96))
95
+ - **init-application:** add nest init application generator ([1d8af26](https://gitlab.com/rxap/packages/commit/1d8af264653885a907d8ffaff04d40e287e2a047))
96
+ - **init-library:** add nest init library generator ([8eb5b77](https://gitlab.com/rxap/packages/commit/8eb5b77685e7fa9d077398b742dc385ef5ddfd9f))
97
+ - **init:** add nest init generator ([e44ec06](https://gitlab.com/rxap/packages/commit/e44ec06239befc0aeaa4e2c8a34e46d041ff8ca6))
98
+ - mv swagger generator to plugin-nestjs ([895cba5](https://gitlab.com/rxap/packages/commit/895cba5d040262ae64f05ff14b604871240a0a4b))
99
+ - support open-api package project generation ([375681f](https://gitlab.com/rxap/packages/commit/375681f057e54879fa9fa2d8ba245da5163c0e65))
100
+ - use GetNestApiPrefix utility function ([7a1561c](https://gitlab.com/rxap/packages/commit/7a1561c24dbdcffdc5dfd5d3ba9d67c51264c345))
101
+
102
+ ### Reverts
103
+
104
+ - "build: use nx run commands to build openapi.json" ([4485777](https://gitlab.com/rxap/packages/commit/44857779f20cd6264cb7e1b426988b5b91dc6649))
105
+ - change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
106
+
107
+ # [16.1.0-dev.39](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.38...@rxap/plugin-nestjs@16.1.0-dev.39) (2023-10-10)
108
+
109
+ ### Bug Fixes
110
+
111
+ - support dynamic label definition ([58022a3](https://gitlab.com/rxap/packages/commit/58022a39496f1a75cf8599c54b119ec02c02ee62))
112
+ - support overwrite of default docker file ([7ac132f](https://gitlab.com/rxap/packages/commit/7ac132faf705795b79d3c7ad5c88d115a3a62276))
113
+
114
+ ### Features
115
+
116
+ - use GetNestApiPrefix utility function ([24c5c9f](https://gitlab.com/rxap/packages/commit/24c5c9f6f28a7bba17b17b0175afe40e399d518f))
117
+
118
+ # [16.1.0-dev.38](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.37...@rxap/plugin-nestjs@16.1.0-dev.38) (2023-10-03)
119
+
120
+ ### Bug Fixes
121
+
122
+ - ensure all required cacheable operations are defined ([49a9199](https://gitlab.com/rxap/packages/commit/49a9199cd2592cf8550650dc17f9995e4f6727f8))
123
+
124
+ # [16.1.0-dev.37](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.36...@rxap/plugin-nestjs@16.1.0-dev.37) (2023-10-02)
125
+
126
+ ### Bug Fixes
127
+
128
+ - set correct default publishable library package json version ([32c032d](https://gitlab.com/rxap/packages/commit/32c032dd47552dc53f5adbc39af0ef2a074beea6))
129
+ - use function CoerceNxJsonCacheableOperation ([14f26b0](https://gitlab.com/rxap/packages/commit/14f26b0d679f5d1208a23ae20d6d9f6f4516a60d))
130
+
131
+ # [16.1.0-dev.36](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.35...@rxap/plugin-nestjs@16.1.0-dev.36) (2023-10-02)
132
+
133
+ ### Bug Fixes
134
+
135
+ - introduce Is\*Project functions ([0f4a53a](https://gitlab.com/rxap/packages/commit/0f4a53a2a68c7f854d819c005a30957d8b1cb3c6))
136
+ - introduce more Is\*Project functions ([8d37211](https://gitlab.com/rxap/packages/commit/8d37211fb1906f90d7176cfcfe43f755f04a0fa6))
137
+
138
+ # [16.1.0-dev.35](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.34...@rxap/plugin-nestjs@16.1.0-dev.35) (2023-10-02)
139
+
140
+ ### Bug Fixes
141
+
142
+ - ensure options are passed to the microservice generator ([0d048cf](https://gitlab.com/rxap/packages/commit/0d048cf25a258107c38a9f52b96415331125ba56))
143
+ - ensure the project specific api prefix is used ([85327a4](https://gitlab.com/rxap/packages/commit/85327a40e26fe6e46bff0961bf91044e3cd4c59c))
144
+
145
+ # [16.1.0-dev.34](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.33...@rxap/plugin-nestjs@16.1.0-dev.34) (2023-10-02)
146
+
147
+ ### Bug Fixes
148
+
149
+ - ensure changes to the openapi client sdk project configuration are written to disk ([f68ee6c](https://gitlab.com/rxap/packages/commit/f68ee6cb01155dfb8195f13dc311a1877f40a385))
150
+
151
+ # [16.1.0-dev.33](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.32...@rxap/plugin-nestjs@16.1.0-dev.33) (2023-10-02)
152
+
153
+ ### Bug Fixes
154
+
155
+ - add implicit dependencies between openapi client sdk project and the service project ([0762167](https://gitlab.com/rxap/packages/commit/07621678af18ae73068270e506f4c14863d8a5a0))
156
+ - set required defaults for nestjs microservice init ([c49215d](https://gitlab.com/rxap/packages/commit/c49215d6c854edbc49e03e126c90358326c16ea3))
157
+
158
+ # [16.1.0-dev.32](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.31...@rxap/plugin-nestjs@16.1.0-dev.32) (2023-10-02)
159
+
160
+ ### Bug Fixes
161
+
162
+ - convert directory into project name prefix ([97d743d](https://gitlab.com/rxap/packages/commit/97d743dfc500232aa3ee505fe0eaffc24af8ed30))
163
+ - ensure the apiConfigurationFile is defined ([ec22d23](https://gitlab.com/rxap/packages/commit/ec22d234d9a207803ca093cf55488d89280d7aeb))
164
+ - import SentryOptionsFactory from the correct package ([23243db](https://gitlab.com/rxap/packages/commit/23243db072efb24c543421c049a656f10c592d92))
165
+ - move forRoot logic into detected loader classes ([01796e0](https://gitlab.com/rxap/packages/commit/01796e0898a3dee4e365278a73029dd023093136))
166
+ - remove coerce default root domain ([8092172](https://gitlab.com/rxap/packages/commit/809217280ba95cf2132c6a5b0cb262687b5aee81))
167
+ - update the application configuration file with the service api prefix ([b9bbc58](https://gitlab.com/rxap/packages/commit/b9bbc58573e0fc885da765da71abd6b0ae2c4613))
168
+
169
+ ### Features
170
+
171
+ - add feature-microservice generator ([4aed057](https://gitlab.com/rxap/packages/commit/4aed057737303429cd543008d9a2947f3756bca2))
172
+ - add frontend-microservice generator ([444e758](https://gitlab.com/rxap/packages/commit/444e7585d4a1c8c3fe2528671ef7948bad1323be))
173
+ - add microservice generator ([a2d46fc](https://gitlab.com/rxap/packages/commit/a2d46fc4c718d365346e243d899eb35d458900ac))
174
+
175
+ # [16.1.0-dev.31](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.30...@rxap/plugin-nestjs@16.1.0-dev.31) (2023-09-28)
176
+
177
+ ### Bug Fixes
178
+
179
+ - add ROOT_DOMAIN default env value ([9465f3d](https://gitlab.com/rxap/packages/commit/9465f3d44e4882e364c7c105420604b268bf271f))
180
+
181
+ # [16.1.0-dev.30](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.29...@rxap/plugin-nestjs@16.1.0-dev.30) (2023-09-21)
182
+
183
+ ### Bug Fixes
184
+
185
+ - add skip-projects flag ([0f45987](https://gitlab.com/rxap/packages/commit/0f45987bc9dd927b1ede9eb53256125fa0e33674))
186
+
187
+ # [16.1.0-dev.29](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.28...@rxap/plugin-nestjs@16.1.0-dev.29) (2023-09-19)
188
+
189
+ ### Bug Fixes
190
+
191
+ - support dynamic server config loading ([088583a](https://gitlab.com/rxap/packages/commit/088583acece9a693a461c958af3fa27cb20d661f))
192
+
193
+ # [16.1.0-dev.28](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.27...@rxap/plugin-nestjs@16.1.0-dev.28) (2023-09-18)
194
+
195
+ ### Bug Fixes
196
+
197
+ - install required dependencies ([2ec480a](https://gitlab.com/rxap/packages/commit/2ec480a2080d2be7aeb18b27dc9efb2ddc87835f))
198
+
199
+ # [16.1.0-dev.27](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.26...@rxap/plugin-nestjs@16.1.0-dev.27) (2023-09-18)
200
+
201
+ ### Bug Fixes
202
+
203
+ - install required dependencies ([1eafe46](https://gitlab.com/rxap/packages/commit/1eafe462bcc0797340b52e3853ddffb49a5e584e))
204
+
205
+ # [16.1.0-dev.26](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.25...@rxap/plugin-nestjs@16.1.0-dev.26) (2023-09-18)
206
+
207
+ ### Bug Fixes
208
+
209
+ - ensure project tags ([f644ed7](https://gitlab.com/rxap/packages/commit/f644ed7191bb89fa6d45ae53ed61c7ff0f36ab8a))
210
+
211
+ # [16.1.0-dev.25](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.24...@rxap/plugin-nestjs@16.1.0-dev.25) (2023-09-18)
212
+
213
+ ### Bug Fixes
214
+
215
+ - install required dependencies ([3c86754](https://gitlab.com/rxap/packages/commit/3c867542bdc88c781f3894761b2a284955d9f7c4))
216
+
217
+ # [16.1.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.23...@rxap/plugin-nestjs@16.1.0-dev.24) (2023-09-18)
218
+
219
+ ### Bug Fixes
220
+
221
+ - update service status name ([238353c](https://gitlab.com/rxap/packages/commit/238353c821f25268af93599756406e73431fca21))
222
+
223
+ # [16.1.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.22...@rxap/plugin-nestjs@16.1.0-dev.23) (2023-09-12)
224
+
225
+ ### Bug Fixes
226
+
227
+ - ensure extraction works in new module structure ([bc421d7](https://gitlab.com/rxap/packages/commit/bc421d74643e15d55b2b74c930ddc32e3a601d03))
228
+
229
+ # [16.1.0-dev.22](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.21...@rxap/plugin-nestjs@16.1.0-dev.22) (2023-09-12)
230
+
231
+ ### Bug Fixes
232
+
233
+ - remove generate file call ([dc7d904](https://gitlab.com/rxap/packages/commit/dc7d9042abb02dbad0b006aee71c508300a5fa17))
234
+
235
+ # [16.1.0-dev.21](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.20...@rxap/plugin-nestjs@16.1.0-dev.21) (2023-09-12)
236
+
237
+ ### Bug Fixes
238
+
239
+ - restore existing config validation ([88feca5](https://gitlab.com/rxap/packages/commit/88feca56b0209f5fdfd649321606414ba66756ab))
240
+
241
+ # [16.1.0-dev.20](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.19...@rxap/plugin-nestjs@16.1.0-dev.20) (2023-09-12)
242
+
243
+ ### Bug Fixes
244
+
245
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
246
+
247
+ # [16.1.0-dev.19](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.18...@rxap/plugin-nestjs@16.1.0-dev.19) (2023-09-12)
248
+
249
+ ### Bug Fixes
250
+
251
+ - add development configuration to build target ([393a03a](https://gitlab.com/rxap/packages/commit/393a03aa54366fd1a037aac9ef42a57a23258f1f))
252
+ - use local status server if possible ([d9b48fa](https://gitlab.com/rxap/packages/commit/d9b48fa8f862d769e7c2675226a900eca3b8fde5))
253
+ - use ready hook for RegisterToStatusService ([b0b1cd5](https://gitlab.com/rxap/packages/commit/b0b1cd5273343ae09ab1b3c3dd2d0fae951d7cbd))
254
+
255
+ # [16.1.0-dev.18](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.17...@rxap/plugin-nestjs@16.1.0-dev.18) (2023-09-12)
256
+
257
+ ### Bug Fixes
258
+
259
+ - improve nest application init generator execution ([30adde1](https://gitlab.com/rxap/packages/commit/30adde1b164884137890e4c604ed86a7a75261d9))
260
+ - use unified Dockerfile ([913898d](https://gitlab.com/rxap/packages/commit/913898d976a56873caabd2140cf2e6e0fef15214))
261
+
262
+ ### Reverts
263
+
264
+ - "build: use nx run commands to build openapi.json" ([b294956](https://gitlab.com/rxap/packages/commit/b294956b25d42350a1e0907635c88776a39b7708))
265
+
266
+ # [16.1.0-dev.17](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.16...@rxap/plugin-nestjs@16.1.0-dev.17) (2023-09-09)
267
+
268
+ ### Features
269
+
270
+ - add openapi utility operation generation ([9e67895](https://gitlab.com/rxap/packages/commit/9e678950b7f47bb39768f2d41c3a64b3af7a3c10))
271
+
272
+ # [16.1.0-dev.16](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.15...@rxap/plugin-nestjs@16.1.0-dev.16) (2023-09-07)
273
+
274
+ **Note:** Version bump only for package @rxap/plugin-nestjs
275
+
276
+ # [16.1.0-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.14...@rxap/plugin-nestjs@16.1.0-dev.15) (2023-09-03)
277
+
278
+ **Note:** Version bump only for package @rxap/plugin-nestjs
279
+
280
+ # [16.1.0-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.13...@rxap/plugin-nestjs@16.1.0-dev.14) (2023-09-03)
281
+
282
+ **Note:** Version bump only for package @rxap/plugin-nestjs
283
+
284
+ # [16.1.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.12...@rxap/plugin-nestjs@16.1.0-dev.13) (2023-09-03)
285
+
286
+ ### Bug Fixes
287
+
288
+ - create health files if not exist ([ea81a96](https://gitlab.com/rxap/packages/commit/ea81a964686256ea0c7d1a52cb09d6481a47cc98))
289
+ - remove support for open-api client sdk packages ([ace153f](https://gitlab.com/rxap/packages/commit/ace153f977690e7714c3c4110600e2a8916a0d52))
290
+ - respect the overwrite flag ([3234759](https://gitlab.com/rxap/packages/commit/32347594f4e3f27eb639647d6db0ec61a8537d04))
291
+ - use es module import style ([f844c22](https://gitlab.com/rxap/packages/commit/f844c22eac4a4e5ef288eb1039879faa207c9889))
292
+
293
+ # [16.1.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.11...@rxap/plugin-nestjs@16.1.0-dev.12) (2023-09-02)
294
+
295
+ ### Bug Fixes
296
+
297
+ - use the plugin-open-api project for client sdk generation ([5097269](https://gitlab.com/rxap/packages/commit/509726988a0bcb10a39dedff3bde9bbc36cf1331))
298
+
299
+ ### Features
300
+
301
+ - support open-api package project generation ([d1f2d03](https://gitlab.com/rxap/packages/commit/d1f2d03a1b6bca7171fc04dc161bb62325017fc6))
302
+
303
+ # [16.1.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.10...@rxap/plugin-nestjs@16.1.0-dev.11) (2023-09-01)
304
+
305
+ ### Bug Fixes
306
+
307
+ - default status service base url var generation ([9509086](https://gitlab.com/rxap/packages/commit/95090864e8eda444fa2a849dbf2fb4b608afcc7c))
308
+ - ensure the env replacement for nest application is defined ([692dda5](https://gitlab.com/rxap/packages/commit/692dda5e52a20ac3158cf2d07e96e44de4f1fe77))
309
+ - set default throttler ttl to 1 ([dcd9f60](https://gitlab.com/rxap/packages/commit/dcd9f609bd75245f0cf7e889f4eab2cc66cf995d))
310
+ - support config validation overwrite ([bd01600](https://gitlab.com/rxap/packages/commit/bd01600ba9e0159b4e338a902314436d45c7d782))
311
+ - use the new status service hostname ([c2655b6](https://gitlab.com/rxap/packages/commit/c2655b6c8f499755cc788da991ac9cebca05a49c))
312
+
313
+ # [16.1.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.9...@rxap/plugin-nestjs@16.1.0-dev.10) (2023-08-31)
314
+
315
+ ### Bug Fixes
316
+
317
+ - add missing template property ([11daed1](https://gitlab.com/rxap/packages/commit/11daed1cb52709ee436014f571642644dbb77fe9))
318
+ - add project ts-morph ([f17725d](https://gitlab.com/rxap/packages/commit/f17725dccf31d3f5fab9087e103e19ad5df43246))
319
+ - create an info path for the default app controller ([8d3ab19](https://gitlab.com/rxap/packages/commit/8d3ab197ba35ece19345e3eea78e938a512586e5))
320
+ - ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
321
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
322
+ - pass overwrite option to utility function ([7bf4f62](https://gitlab.com/rxap/packages/commit/7bf4f62249879ec13cb476844cac143033d4a8b4))
323
+ - resolve issues ([07edb75](https://gitlab.com/rxap/packages/commit/07edb75b3ed6bedc2b831145d6ac5b57e342c6fd))
324
+ - streamline the nestjs application initialization ([4fcdde5](https://gitlab.com/rxap/packages/commit/4fcdde539d462efaaf6fe24000187c87bbad8c19))
325
+
326
+ ### Features
327
+
328
+ - add the health indicator generator ([3153e97](https://gitlab.com/rxap/packages/commit/3153e97c034d3f8856a68cf507ac88b5fb8c53bc))
329
+ - add the jwt generator ([b9d22b1](https://gitlab.com/rxap/packages/commit/b9d22b1fc6c7b7bfa960012f92a1a9f74fd20a32))
330
+ - add the mandatory app property to the environment object ([2655e0d](https://gitlab.com/rxap/packages/commit/2655e0d5449949a67b38044d34e6180f22ffc9c1))
331
+ - add the open-api generator ([6ecf74d](https://gitlab.com/rxap/packages/commit/6ecf74d83dfb7092523fdeb6dc7e925f8aece46e))
332
+ - add the sentry generator ([567eb83](https://gitlab.com/rxap/packages/commit/567eb83f2932643f359eb844db9b104e0b6c223d))
333
+ - add the validator generator ([810ff12](https://gitlab.com/rxap/packages/commit/810ff12308a98446c37f03ae2523b1d7d7a8b7d5))
334
+ - exclude health path from global api prefix ([15a5dbe](https://gitlab.com/rxap/packages/commit/15a5dbe4581e943bd7d0775fd87f8c2b0322cc02))
335
+ - generate status registry feature ([aff8ff8](https://gitlab.com/rxap/packages/commit/aff8ff8f0e67e6181383beb93ee1f7c898c9a2ea))
336
+
337
+ # [16.1.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.8...@rxap/plugin-nestjs@16.1.0-dev.9) (2023-08-17)
338
+
339
+ ### Reverts
340
+
341
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
342
+
343
+ # [16.1.0-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.7...@rxap/plugin-nestjs@16.1.0-dev.8) (2023-08-16)
344
+
345
+ ### Bug Fixes
346
+
347
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
348
+
349
+ # [16.1.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.6...@rxap/plugin-nestjs@16.1.0-dev.7) (2023-08-14)
350
+
351
+ ### Bug Fixes
352
+
353
+ - soft fail for library generation ([109f456](https://gitlab.com/rxap/packages/commit/109f456e74f048942a09d2c579539b80ea620134))
354
+
355
+ # [16.1.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.5...@rxap/plugin-nestjs@16.1.0-dev.6) (2023-08-06)
356
+
357
+ ### Bug Fixes
358
+
359
+ - expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
360
+
361
+ # [16.1.0-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.4...@rxap/plugin-nestjs@16.1.0-dev.5) (2023-08-05)
362
+
363
+ ### Bug Fixes
364
+
365
+ - only skip swagger configuration if explicit disabled ([97435db](https://gitlab.com/rxap/packages/commit/97435db71cba7c38f9821335d33e93689105b836))
366
+
6
367
  # [16.1.0-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.3...@rxap/plugin-nestjs@16.1.0-dev.4) (2023-08-04)
7
368
 
8
369
  ### Bug Fixes
package/README.md CHANGED
@@ -19,7 +19,7 @@ yarn add @rxap/plugin-nestjs
19
19
  ```
20
20
  **Install peer dependencies:**
21
21
  ```bash
22
- yarn add @nx/devkit@^16.5.0 @nx/js@^16.5.0 @rxap/generator-utilities@^1.1.0-dev.1 @rxap/plugin-utilities@^16.1.0-dev.3 @rxap/workspace-utilities@^0.1.0-dev.1 nx@^16.5.0
22
+ yarn add @nx/devkit@^16.5.0 @nx/js@^16.5.0 @nx/nest@^16.5.0 @rxap/generator-utilities@^1.1.0-dev.18 @rxap/plugin-utilities@^16.1.0-dev.19 @rxap/ts-morph@^0.1.0-dev.15 @rxap/utilities@^16.0.0-dev.21 @rxap/workspace-ts-morph@^0.1.0-dev.10 @rxap/workspace-utilities@^0.1.0-dev.22 ts-morph@^18.0.0 tslib@2.6.2
23
23
  ```
24
24
  **Execute the init generator:**
25
25
  ```bash
@@ -54,6 +54,160 @@ yarn nx g @rxap/plugin-nestjs:init-application
54
54
  ```bash
55
55
  yarn nx g @rxap/plugin-nestjs:swagger
56
56
  ```
57
+
58
+ ## sentry
59
+ > sentry generator
60
+
61
+ ```bash
62
+ yarn nx g @rxap/plugin-nestjs:sentry
63
+ ```
64
+
65
+ ## validator
66
+ > validator generator
67
+
68
+ ```bash
69
+ yarn nx g @rxap/plugin-nestjs:validator
70
+ ```
71
+
72
+ ## open-api
73
+ > open-api generator
74
+
75
+ ```bash
76
+ yarn nx g @rxap/plugin-nestjs:open-api
77
+ ```
78
+
79
+ ## jwt
80
+ > jwt generator
81
+
82
+ ```bash
83
+ yarn nx g @rxap/plugin-nestjs:jwt
84
+ ```
85
+
86
+ ## health-indicator
87
+ > health-indicator generator
88
+
89
+ ```bash
90
+ yarn nx g @rxap/plugin-nestjs:health-indicator
91
+ ```
92
+
93
+ ## health-indicator-init
94
+ > health-indicator-init generator
95
+
96
+ ```bash
97
+ yarn nx g @rxap/plugin-nestjs:health-indicator-init
98
+ ```
99
+
100
+ ## microservice
101
+ > microservice generator
102
+
103
+ ```bash
104
+ yarn nx g @rxap/plugin-nestjs:microservice
105
+ ```
106
+
107
+ ## feature-microservice
108
+ > feature-microservice generator
109
+
110
+ ```bash
111
+ yarn nx g @rxap/plugin-nestjs:feature-microservice
112
+ ```
113
+
114
+ ## frontend-microservice
115
+ > frontend-microservice generator
116
+
117
+ ```bash
118
+ yarn nx g @rxap/plugin-nestjs:frontend-microservice
119
+ ```
120
+
121
+ ## init
122
+ > init generator
123
+
124
+ ```bash
125
+ yarn nx g @rxap/plugin-nestjs:init
126
+ ```
127
+
128
+ ## init-library
129
+ > init-library generator
130
+
131
+ ```bash
132
+ yarn nx g @rxap/plugin-nestjs:init-library
133
+ ```
134
+
135
+ ## init-application
136
+ > init-application generator
137
+
138
+ ```bash
139
+ yarn nx g @rxap/plugin-nestjs:init-application
140
+ ```
141
+
142
+ ## swagger
143
+ > swagger generator
144
+
145
+ ```bash
146
+ yarn nx g @rxap/plugin-nestjs:swagger
147
+ ```
148
+
149
+ ## sentry
150
+ > sentry generator
151
+
152
+ ```bash
153
+ yarn nx g @rxap/plugin-nestjs:sentry
154
+ ```
155
+
156
+ ## validator
157
+ > validator generator
158
+
159
+ ```bash
160
+ yarn nx g @rxap/plugin-nestjs:validator
161
+ ```
162
+
163
+ ## open-api
164
+ > open-api generator
165
+
166
+ ```bash
167
+ yarn nx g @rxap/plugin-nestjs:open-api
168
+ ```
169
+
170
+ ## jwt
171
+ > jwt generator
172
+
173
+ ```bash
174
+ yarn nx g @rxap/plugin-nestjs:jwt
175
+ ```
176
+
177
+ ## health-indicator
178
+ > health-indicator generator
179
+
180
+ ```bash
181
+ yarn nx g @rxap/plugin-nestjs:health-indicator
182
+ ```
183
+
184
+ ## health-indicator-init
185
+ > health-indicator-init generator
186
+
187
+ ```bash
188
+ yarn nx g @rxap/plugin-nestjs:health-indicator-init
189
+ ```
190
+
191
+ ## microservice
192
+ > microservice generator
193
+
194
+ ```bash
195
+ yarn nx g @rxap/plugin-nestjs:microservice
196
+ ```
197
+
198
+ ## feature-microservice
199
+ > feature-microservice generator
200
+
201
+ ```bash
202
+ yarn nx g @rxap/plugin-nestjs:feature-microservice
203
+ ```
204
+
205
+ ## frontend-microservice
206
+ > frontend-microservice generator
207
+
208
+ ```bash
209
+ yarn nx g @rxap/plugin-nestjs:frontend-microservice
210
+ ```
57
211
  # Executors
58
212
 
59
213
  ## package-json