@rxap/plugin-nestjs 16.1.0-dev.1 → 16.1.0-dev.12

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 (95) hide show
  1. package/CHANGELOG.md +97 -0
  2. package/LICENSE.md +621 -0
  3. package/README.md +137 -1
  4. package/executors.json +9 -0
  5. package/generators.json +87 -0
  6. package/package.json +39 -6
  7. package/src/executors/package-json/executor.d.ts +5 -0
  8. package/src/executors/package-json/executor.js +21 -0
  9. package/src/executors/package-json/executor.js.map +1 -0
  10. package/src/executors/package-json/schema.d.ts +1 -0
  11. package/src/executors/package-json/schema.json +9 -0
  12. package/src/generators/health-indicator/generator.d.ts +4 -0
  13. package/src/generators/health-indicator/generator.js +31 -0
  14. package/src/generators/health-indicator/generator.js.map +1 -0
  15. package/src/generators/health-indicator/index.d.ts +2 -0
  16. package/src/generators/health-indicator/index.js +7 -0
  17. package/src/generators/health-indicator/index.js.map +1 -0
  18. package/src/generators/health-indicator/schema.d.ts +4 -0
  19. package/src/generators/health-indicator/schema.json +29 -0
  20. package/src/generators/health-indicator-init/generator.d.ts +4 -0
  21. package/src/generators/health-indicator-init/generator.js +33 -0
  22. package/src/generators/health-indicator-init/generator.js.map +1 -0
  23. package/src/generators/health-indicator-init/index.d.ts +2 -0
  24. package/src/generators/health-indicator-init/index.js +7 -0
  25. package/src/generators/health-indicator-init/index.js.map +1 -0
  26. package/src/generators/health-indicator-init/schema.d.ts +3 -0
  27. package/src/generators/health-indicator-init/schema.json +19 -0
  28. package/src/generators/init/index.d.ts +2 -0
  29. package/src/generators/init/index.js +7 -0
  30. package/src/generators/init/index.js.map +1 -0
  31. package/src/generators/init/schema.d.ts +1 -0
  32. package/src/generators/init/schema.json +5 -0
  33. package/src/generators/init-application/files/Dockerfile__tmpl__ +21 -0
  34. package/src/generators/init-application/files/healthcheck.js__tmpl__ +38 -0
  35. package/src/generators/init-application/files/main.ts__tmpl__ +114 -0
  36. package/src/generators/init-application/generator.d.ts +0 -3
  37. package/src/generators/init-application/generator.js +439 -5
  38. package/src/generators/init-application/generator.js.map +1 -1
  39. package/src/generators/init-application/index.d.ts +2 -0
  40. package/src/generators/init-application/index.js +7 -0
  41. package/src/generators/init-application/index.js.map +1 -0
  42. package/src/generators/init-application/schema.d.ts +1 -1
  43. package/src/generators/init-application/schema.json +15 -16
  44. package/src/generators/init-library/generator.js +12 -17
  45. package/src/generators/init-library/generator.js.map +1 -1
  46. package/src/generators/init-library/index.d.ts +2 -0
  47. package/src/generators/init-library/index.js +7 -0
  48. package/src/generators/init-library/index.js.map +1 -0
  49. package/src/generators/init-library/schema.d.ts +1 -0
  50. package/src/generators/init-library/schema.json +5 -0
  51. package/src/generators/jwt/generator.d.ts +4 -0
  52. package/src/generators/jwt/generator.js +54 -0
  53. package/src/generators/jwt/generator.js.map +1 -0
  54. package/src/generators/jwt/index.d.ts +2 -0
  55. package/src/generators/jwt/index.js +7 -0
  56. package/src/generators/jwt/index.js.map +1 -0
  57. package/src/generators/jwt/schema.d.ts +3 -0
  58. package/src/generators/jwt/schema.json +15 -0
  59. package/src/generators/open-api/generator.d.ts +4 -0
  60. package/src/generators/open-api/generator.js +45 -0
  61. package/src/generators/open-api/generator.js.map +1 -0
  62. package/src/generators/open-api/index.d.ts +2 -0
  63. package/src/generators/open-api/index.js +7 -0
  64. package/src/generators/open-api/index.js.map +1 -0
  65. package/src/generators/open-api/schema.d.ts +3 -0
  66. package/src/generators/open-api/schema.json +15 -0
  67. package/src/generators/sentry/generator.d.ts +4 -0
  68. package/src/generators/sentry/generator.js +147 -0
  69. package/src/generators/sentry/generator.js.map +1 -0
  70. package/src/generators/sentry/index.d.ts +2 -0
  71. package/src/generators/sentry/index.js +7 -0
  72. package/src/generators/sentry/index.js.map +1 -0
  73. package/src/generators/sentry/schema.d.ts +6 -0
  74. package/src/generators/sentry/schema.json +32 -0
  75. package/src/generators/swagger/files/environments/environment.swagger.ts__tmpl__ +8 -0
  76. package/src/generators/swagger/files/swagger.ts__tmpl__ +21 -0
  77. package/src/generators/swagger/generator.d.ts +4 -0
  78. package/src/generators/swagger/generator.js +87 -0
  79. package/src/generators/swagger/generator.js.map +1 -0
  80. package/src/generators/swagger/index.d.ts +2 -0
  81. package/src/generators/swagger/index.js +7 -0
  82. package/src/generators/swagger/index.js.map +1 -0
  83. package/src/generators/swagger/schema.d.ts +3 -0
  84. package/src/generators/swagger/schema.json +19 -0
  85. package/src/generators/validator/generator.d.ts +4 -0
  86. package/src/generators/validator/generator.js +14 -0
  87. package/src/generators/validator/generator.js.map +1 -0
  88. package/src/generators/validator/index.d.ts +2 -0
  89. package/src/generators/validator/index.js +7 -0
  90. package/src/generators/validator/index.js.map +1 -0
  91. package/src/generators/validator/schema.d.ts +3 -0
  92. package/src/generators/validator/schema.json +19 -0
  93. package/src/index.d.ts +1 -0
  94. package/src/index.js +3 -1
  95. package/src/index.js.map +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,103 @@
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.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)
7
+
8
+ ### Bug Fixes
9
+
10
+ - use the plugin-open-api project for client sdk generation ([5097269](https://gitlab.com/rxap/packages/commit/509726988a0bcb10a39dedff3bde9bbc36cf1331))
11
+
12
+ ### Features
13
+
14
+ - support open-api package project generation ([d1f2d03](https://gitlab.com/rxap/packages/commit/d1f2d03a1b6bca7171fc04dc161bb62325017fc6))
15
+
16
+ # [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)
17
+
18
+ ### Bug Fixes
19
+
20
+ - default status service base url var generation ([9509086](https://gitlab.com/rxap/packages/commit/95090864e8eda444fa2a849dbf2fb4b608afcc7c))
21
+ - ensure the env replacement for nest application is defined ([692dda5](https://gitlab.com/rxap/packages/commit/692dda5e52a20ac3158cf2d07e96e44de4f1fe77))
22
+ - set default throttler ttl to 1 ([dcd9f60](https://gitlab.com/rxap/packages/commit/dcd9f609bd75245f0cf7e889f4eab2cc66cf995d))
23
+ - support config validation overwrite ([bd01600](https://gitlab.com/rxap/packages/commit/bd01600ba9e0159b4e338a902314436d45c7d782))
24
+ - use the new status service hostname ([c2655b6](https://gitlab.com/rxap/packages/commit/c2655b6c8f499755cc788da991ac9cebca05a49c))
25
+
26
+ # [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)
27
+
28
+ ### Bug Fixes
29
+
30
+ - add missing template property ([11daed1](https://gitlab.com/rxap/packages/commit/11daed1cb52709ee436014f571642644dbb77fe9))
31
+ - add project ts-morph ([f17725d](https://gitlab.com/rxap/packages/commit/f17725dccf31d3f5fab9087e103e19ad5df43246))
32
+ - create an info path for the default app controller ([8d3ab19](https://gitlab.com/rxap/packages/commit/8d3ab197ba35ece19345e3eea78e938a512586e5))
33
+ - ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
34
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
35
+ - pass overwrite option to utility function ([7bf4f62](https://gitlab.com/rxap/packages/commit/7bf4f62249879ec13cb476844cac143033d4a8b4))
36
+ - resolve issues ([07edb75](https://gitlab.com/rxap/packages/commit/07edb75b3ed6bedc2b831145d6ac5b57e342c6fd))
37
+ - streamline the nestjs application initialization ([4fcdde5](https://gitlab.com/rxap/packages/commit/4fcdde539d462efaaf6fe24000187c87bbad8c19))
38
+
39
+ ### Features
40
+
41
+ - add the health indicator generator ([3153e97](https://gitlab.com/rxap/packages/commit/3153e97c034d3f8856a68cf507ac88b5fb8c53bc))
42
+ - add the jwt generator ([b9d22b1](https://gitlab.com/rxap/packages/commit/b9d22b1fc6c7b7bfa960012f92a1a9f74fd20a32))
43
+ - add the mandatory app property to the environment object ([2655e0d](https://gitlab.com/rxap/packages/commit/2655e0d5449949a67b38044d34e6180f22ffc9c1))
44
+ - add the open-api generator ([6ecf74d](https://gitlab.com/rxap/packages/commit/6ecf74d83dfb7092523fdeb6dc7e925f8aece46e))
45
+ - add the sentry generator ([567eb83](https://gitlab.com/rxap/packages/commit/567eb83f2932643f359eb844db9b104e0b6c223d))
46
+ - add the validator generator ([810ff12](https://gitlab.com/rxap/packages/commit/810ff12308a98446c37f03ae2523b1d7d7a8b7d5))
47
+ - exclude health path from global api prefix ([15a5dbe](https://gitlab.com/rxap/packages/commit/15a5dbe4581e943bd7d0775fd87f8c2b0322cc02))
48
+ - generate status registry feature ([aff8ff8](https://gitlab.com/rxap/packages/commit/aff8ff8f0e67e6181383beb93ee1f7c898c9a2ea))
49
+
50
+ # [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)
51
+
52
+ ### Reverts
53
+
54
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
55
+
56
+ # [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)
57
+
58
+ ### Bug Fixes
59
+
60
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
61
+
62
+ # [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)
63
+
64
+ ### Bug Fixes
65
+
66
+ - soft fail for library generation ([109f456](https://gitlab.com/rxap/packages/commit/109f456e74f048942a09d2c579539b80ea620134))
67
+
68
+ # [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)
69
+
70
+ ### Bug Fixes
71
+
72
+ - expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
73
+
74
+ # [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)
75
+
76
+ ### Bug Fixes
77
+
78
+ - only skip swagger configuration if explicit disabled ([97435db](https://gitlab.com/rxap/packages/commit/97435db71cba7c38f9821335d33e93689105b836))
79
+
80
+ # [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)
81
+
82
+ ### Bug Fixes
83
+
84
+ - add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
85
+
86
+ ### Features
87
+
88
+ - add generate-open-api target to nestjs application projects ([bcb4e9e](https://gitlab.com/rxap/packages/commit/bcb4e9e6104e1fba63a1026da8e50dda6ff172b1))
89
+ - mv swagger generator to plugin-nestjs ([cf2ecbb](https://gitlab.com/rxap/packages/commit/cf2ecbb16b681cb04d392d17bb987b24e8c9224b))
90
+
91
+ # [16.1.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.2...@rxap/plugin-nestjs@16.1.0-dev.3) (2023-08-04)
92
+
93
+ ### Bug Fixes
94
+
95
+ - ensure projects are buildable or publishable ([781a8b7](https://gitlab.com/rxap/packages/commit/781a8b77d9e7f74493347516b5e678a42e1e32df))
96
+
97
+ # [16.1.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.1...@rxap/plugin-nestjs@16.1.0-dev.2) (2023-08-03)
98
+
99
+ ### Features
100
+
101
+ - add project json generator executor ([c92ea78](https://gitlab.com/rxap/packages/commit/c92ea7800271b611894c33d243e7de0dc9031f32))
102
+
6
103
  # [16.1.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.0...@rxap/plugin-nestjs@16.1.0-dev.1) (2023-08-01)
7
104
 
8
105
  ### Bug Fixes