@elsikora/nestjs-crud-automator 1.6.4-dev.1 → 1.6.5-dev.1

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 (538) hide show
  1. package/README.md +381 -266
  2. package/dist/cjs/class/metadata-storage.class.js +2 -3
  3. package/dist/cjs/class/metadata-storage.class.js.map +1 -1
  4. package/dist/cjs/decorator/api/method.decorator.js +56 -56
  5. package/dist/cjs/decorator/api/method.decorator.js.map +1 -1
  6. package/dist/cjs/decorator/api/property/date.decorator.js +2 -2
  7. package/dist/cjs/decorator/api/property/date.decorator.js.map +1 -1
  8. package/dist/cjs/decorator/api/property/string.decorator.js +2 -2
  9. package/dist/cjs/decorator/api/property/string.decorator.js.map +1 -1
  10. package/dist/cjs/factory/api/controller.factory.js +3 -0
  11. package/dist/cjs/factory/api/controller.factory.js.map +1 -1
  12. package/dist/cjs/package.json +8 -0
  13. package/dist/cjs/utility/api/controller/get-list/transform-filter.utility.js +3 -1
  14. package/dist/cjs/utility/api/controller/get-list/transform-filter.utility.js.map +1 -1
  15. package/dist/cjs/utility/api/controller/write-dto-swagger.utility.js +1 -1
  16. package/dist/cjs/utility/api/controller/write-dto-swagger.utility.js.map +1 -1
  17. package/dist/cjs/utility/api/controller/write-method.utility.js +6 -1
  18. package/dist/cjs/utility/api/controller/write-method.utility.js.map +1 -1
  19. package/dist/cjs/utility/camel-case-string.utility.js +1 -1
  20. package/dist/cjs/utility/camel-case-string.utility.js.map +1 -1
  21. package/dist/cjs/utility/dto/generate-exception.utility.js +5 -5
  22. package/dist/cjs/utility/dto/generate-exception.utility.js.map +1 -1
  23. package/dist/cjs/utility/dto/generate-get-list-response.utility.js +5 -0
  24. package/dist/cjs/utility/dto/generate-get-list-response.utility.js.map +1 -1
  25. package/dist/cjs/utility/dto/generate-relation-response.utility.js +1 -0
  26. package/dist/cjs/utility/dto/generate-relation-response.utility.js.map +1 -1
  27. package/dist/cjs/utility/dto/get-get-list-query-base-class.utility.js +4 -0
  28. package/dist/cjs/utility/dto/get-get-list-query-base-class.utility.js.map +1 -1
  29. package/dist/cjs/validator/has-paired-custom-suffixes-fields.validator.js.map +1 -1
  30. package/dist/esm/class/api/index.d.ts +1 -0
  31. package/dist/esm/class/api/service-base.class.d.ts +11 -0
  32. package/dist/esm/class/index.d.ts +3 -0
  33. package/dist/esm/class/metadata-storage.class.d.ts +12 -0
  34. package/dist/esm/class/utility/dto/index.d.ts +2 -0
  35. package/dist/esm/class/utility/dto/property/factory/boolean.class.d.ts +6 -0
  36. package/dist/esm/class/utility/dto/property/factory/date.class.d.ts +6 -0
  37. package/dist/esm/class/utility/dto/property/factory/enum.class.d.ts +6 -0
  38. package/dist/esm/class/utility/dto/property/factory/index.d.ts +6 -0
  39. package/dist/esm/class/utility/dto/property/factory/number.class.d.ts +7 -0
  40. package/dist/esm/class/utility/dto/property/factory/object.class.d.ts +6 -0
  41. package/dist/esm/class/utility/dto/property/factory/relation.class.d.ts +7 -0
  42. package/dist/esm/class/utility/dto/property/factory/string.class.d.ts +6 -0
  43. package/dist/esm/class/utility/dto/property/factory/uuid.class.d.ts +6 -0
  44. package/dist/esm/class/utility/dto/property/index.d.ts +1 -0
  45. package/dist/esm/class/utility/dto/strategy/body.class.d.ts +6 -0
  46. package/dist/esm/class/utility/dto/strategy/index.d.ts +4 -0
  47. package/dist/esm/class/utility/dto/strategy/query.class.d.ts +6 -0
  48. package/dist/esm/class/utility/dto/strategy/request.class.d.ts +6 -0
  49. package/dist/esm/class/utility/dto/strategy/response.class.d.ts +6 -0
  50. package/dist/esm/class/utility/index.d.ts +1 -0
  51. package/dist/esm/constant/date.constant.d.ts +4 -0
  52. package/dist/esm/constant/decorator/api/controller.constant.d.ts +3 -0
  53. package/dist/esm/constant/decorator/api/function.constant.d.ts +4 -0
  54. package/dist/esm/constant/decorator/api/index.d.ts +3 -0
  55. package/dist/esm/constant/decorator/api/property-describe.constant.d.ts +3 -0
  56. package/dist/esm/constant/decorator/index.d.ts +1 -0
  57. package/dist/esm/constant/dto/exception.constant.d.ts +6 -0
  58. package/dist/esm/constant/dto/index.d.ts +3 -0
  59. package/dist/esm/constant/dto/list.constant.d.ts +7 -0
  60. package/dist/esm/constant/dto/transformer-value.constant.d.ts +7 -0
  61. package/dist/esm/constant/factory/dto/get-list-query.constant.d.ts +6 -0
  62. package/dist/esm/constant/factory/dto/index.d.ts +1 -0
  63. package/dist/esm/constant/factory/index.d.ts +1 -0
  64. package/dist/esm/constant/index.d.ts +6 -0
  65. package/dist/esm/constant/interface/api/filter.constant.d.ts +3 -0
  66. package/dist/esm/constant/interface/api/index.d.ts +2 -0
  67. package/dist/esm/constant/interface/api/property/index.d.ts +2 -0
  68. package/dist/esm/constant/interface/api/property/string.constant.d.ts +6 -0
  69. package/dist/esm/constant/interface/api/property/wallet.constant.d.ts +5 -0
  70. package/dist/esm/constant/interface/index.d.ts +1 -0
  71. package/dist/esm/constant/number.constant.d.ts +18 -0
  72. package/dist/esm/constant/utility/dto/constant.d.ts +6 -0
  73. package/dist/esm/constant/utility/dto/generate.constant.d.ts +4 -0
  74. package/dist/esm/decorator/api/controller.decorator.d.ts +3 -0
  75. package/dist/esm/decorator/api/function/create.decorator.d.ts +2 -0
  76. package/dist/esm/decorator/api/function/decorator.d.ts +3 -0
  77. package/dist/esm/decorator/api/function/delete.decorator.d.ts +2 -0
  78. package/dist/esm/decorator/api/function/get-list.decorator.d.ts +2 -0
  79. package/dist/esm/decorator/api/function/get-many.decorator.d.ts +2 -0
  80. package/dist/esm/decorator/api/function/get.decorator.d.ts +2 -0
  81. package/dist/esm/decorator/api/function/index.d.ts +7 -0
  82. package/dist/esm/decorator/api/function/update.decorator.d.ts +2 -0
  83. package/dist/esm/decorator/api/index.d.ts +5 -0
  84. package/dist/esm/decorator/api/method.decorator.d.ts +2 -0
  85. package/dist/esm/decorator/api/property/boolean.decorator.d.ts +2 -0
  86. package/dist/esm/decorator/api/property/date.decorator.d.ts +2 -0
  87. package/dist/esm/decorator/api/property/describe.decorator.d.ts +2 -0
  88. package/dist/esm/decorator/api/property/enum.decorator.d.ts +2 -0
  89. package/dist/esm/decorator/api/property/index.d.ts +7 -0
  90. package/dist/esm/decorator/api/property/number.decorator.d.ts +2 -0
  91. package/dist/esm/decorator/api/property/object.decorator.d.ts +2 -0
  92. package/dist/esm/decorator/api/property/string.decorator.d.ts +2 -0
  93. package/dist/esm/decorator/api/property/uuid.decorator.d.ts +2 -0
  94. package/dist/esm/decorator/api/service.decorator.d.ts +3 -0
  95. package/dist/esm/decorator/index.d.ts +1 -0
  96. package/dist/esm/enum/decorator/api/action.enum.d.ts +30 -0
  97. package/dist/esm/enum/decorator/api/authentication-type.enum.d.ts +6 -0
  98. package/dist/esm/enum/decorator/api/controller/index.d.ts +2 -0
  99. package/dist/esm/enum/decorator/api/controller/load-relations-strategy.enum.d.ts +4 -0
  100. package/dist/esm/enum/decorator/api/controller/request-transformer-type.enum.d.ts +4 -0
  101. package/dist/esm/enum/decorator/api/dto-type.enum.d.ts +6 -0
  102. package/dist/esm/enum/decorator/api/function/index.d.ts +1 -0
  103. package/dist/esm/enum/decorator/api/function/type.enum.d.ts +8 -0
  104. package/dist/esm/enum/decorator/api/index.d.ts +7 -0
  105. package/dist/esm/enum/decorator/api/property/data-type.enum.d.ts +18 -0
  106. package/dist/esm/enum/decorator/api/property/date/identifier.enum.d.ts +14 -0
  107. package/dist/esm/enum/decorator/api/property/date/index.d.ts +2 -0
  108. package/dist/esm/enum/decorator/api/property/date/type.enum.d.ts +5 -0
  109. package/dist/esm/enum/decorator/api/property/desribe-type.enum.d.ts +10 -0
  110. package/dist/esm/enum/decorator/api/property/index.d.ts +5 -0
  111. package/dist/esm/enum/decorator/api/property/number-type.enum.d.ts +4 -0
  112. package/dist/esm/enum/decorator/api/property/string-type.enum.d.ts +11 -0
  113. package/dist/esm/enum/decorator/api/route-type.enum.d.ts +8 -0
  114. package/dist/esm/enum/decorator/index.d.ts +1 -0
  115. package/dist/esm/enum/exception.enum.d.ts +30 -0
  116. package/dist/esm/enum/filter-operation.enum.d.ts +110 -0
  117. package/dist/esm/enum/filter-order-direction.enum.d.ts +4 -0
  118. package/dist/esm/enum/index.d.ts +4 -0
  119. package/dist/esm/enum/utility/error-string-action.enum.d.ts +102 -0
  120. package/dist/esm/enum/utility/index.d.ts +1 -0
  121. package/dist/esm/external/tslib/tslib.es6.js +35 -0
  122. package/dist/esm/external/tslib/tslib.es6.js.map +1 -0
  123. package/dist/esm/factory/api/controller.factory.d.ts +18 -0
  124. package/dist/esm/factory/api/index.d.ts +1 -0
  125. package/dist/esm/factory/index.d.ts +1 -0
  126. package/dist/esm/index.d.ts +10 -0
  127. package/dist/esm/interceptor/correlation-id-response-body.interceptor.d.ts +5 -0
  128. package/dist/esm/interceptor/index.d.ts +1 -0
  129. package/dist/esm/interface/api-authentication-request.interface.d.ts +4 -0
  130. package/dist/esm/interface/api-base-entity.interface.d.ts +4 -0
  131. package/dist/esm/interface/api-dto-validator.interface.d.ts +4 -0
  132. package/dist/esm/interface/api-request-validator.interface.d.ts +7 -0
  133. package/dist/esm/interface/class/dto/index.d.ts +1 -0
  134. package/dist/esm/interface/class/dto/strategy.interface.d.ts +5 -0
  135. package/dist/esm/interface/class/index.d.ts +2 -0
  136. package/dist/esm/interface/class/metadata-entry.interface.d.ts +2 -0
  137. package/dist/esm/interface/decorator/api/controller/base.interface.d.ts +4 -0
  138. package/dist/esm/interface/decorator/api/controller/index.d.ts +3 -0
  139. package/dist/esm/interface/decorator/api/controller/properties/index.d.ts +1 -0
  140. package/dist/esm/interface/decorator/api/controller/properties/route/authentication.interface.d.ts +9 -0
  141. package/dist/esm/interface/decorator/api/controller/properties/route/auto-dto-config.interface.d.ts +4 -0
  142. package/dist/esm/interface/decorator/api/controller/properties/route/base-request.interface.d.ts +8 -0
  143. package/dist/esm/interface/decorator/api/controller/properties/route/base-response.interface.d.ts +7 -0
  144. package/dist/esm/interface/decorator/api/controller/properties/route/base.interface.d.ts +11 -0
  145. package/dist/esm/interface/decorator/api/controller/properties/route/index.d.ts +7 -0
  146. package/dist/esm/interface/decorator/api/controller/properties/route/with-auto-dto.interface.d.ts +7 -0
  147. package/dist/esm/interface/decorator/api/controller/properties/route/with-dto.interface.d.ts +7 -0
  148. package/dist/esm/interface/decorator/api/controller/properties.interface.d.ts +11 -0
  149. package/dist/esm/interface/decorator/api/function/create-executor-properties.interface.d.ts +8 -0
  150. package/dist/esm/interface/decorator/api/function/delete-executor-properties.interface.d.ts +9 -0
  151. package/dist/esm/interface/decorator/api/function/get-executor-properties.interface.d.ts +8 -0
  152. package/dist/esm/interface/decorator/api/function/get-list-executor-properties.interface.d.ts +8 -0
  153. package/dist/esm/interface/decorator/api/function/get-many-executor-properties.interface.d.ts +8 -0
  154. package/dist/esm/interface/decorator/api/function/index.d.ts +7 -0
  155. package/dist/esm/interface/decorator/api/function/properties.interface.d.ts +4 -0
  156. package/dist/esm/interface/decorator/api/function/update-executor-properties.interface.d.ts +10 -0
  157. package/dist/esm/interface/decorator/api/get-list-response-result.interface.d.ts +7 -0
  158. package/dist/esm/interface/decorator/api/index.d.ts +5 -0
  159. package/dist/esm/interface/decorator/api/method/index.d.ts +2 -0
  160. package/dist/esm/interface/decorator/api/method/properties.interface.d.ts +17 -0
  161. package/dist/esm/interface/decorator/api/method/throttler-properties.interface.d.ts +4 -0
  162. package/dist/esm/interface/decorator/api/response-type.interface.d.ts +9 -0
  163. package/dist/esm/interface/decorator/index.d.ts +1 -0
  164. package/dist/esm/interface/dto-generate-factory.interface.d.ts +6 -0
  165. package/dist/esm/interface/entity/column.interface.d.ts +7 -0
  166. package/dist/esm/interface/entity/index.d.ts +2 -0
  167. package/dist/esm/interface/entity/interface.d.ts +7 -0
  168. package/dist/esm/interface/index.d.ts +8 -0
  169. package/dist/esm/interface/utility/api/controller/index.d.ts +1 -0
  170. package/dist/esm/interface/utility/api/controller/primary-column.interface.d.ts +4 -0
  171. package/dist/esm/interface/utility/api/index.d.ts +1 -0
  172. package/dist/esm/interface/utility/error-string-properties.interface.d.ts +5 -0
  173. package/dist/esm/interface/utility/get-entity-columns-properties.interface.d.ts +6 -0
  174. package/dist/esm/interface/utility/index.d.ts +2 -0
  175. package/dist/esm/package.json +8 -0
  176. package/dist/esm/src/class/api/service-base.class.js +23 -0
  177. package/dist/esm/src/class/api/service-base.class.js.map +1 -0
  178. package/dist/esm/src/class/metadata-storage.class.js +47 -0
  179. package/dist/esm/src/class/metadata-storage.class.js.map +1 -0
  180. package/dist/esm/src/class/utility/dto/property/factory/boolean.class.js +15 -0
  181. package/dist/esm/src/class/utility/dto/property/factory/boolean.class.js.map +1 -0
  182. package/dist/esm/src/class/utility/dto/property/factory/date.class.js +15 -0
  183. package/dist/esm/src/class/utility/dto/property/factory/date.class.js.map +1 -0
  184. package/dist/esm/src/class/utility/dto/property/factory/enum.class.js +15 -0
  185. package/dist/esm/src/class/utility/dto/property/factory/enum.class.js.map +1 -0
  186. package/dist/esm/src/class/utility/dto/property/factory/number.class.js +32 -0
  187. package/dist/esm/src/class/utility/dto/property/factory/number.class.js.map +1 -0
  188. package/dist/esm/src/class/utility/dto/property/factory/object.class.js +16 -0
  189. package/dist/esm/src/class/utility/dto/property/factory/object.class.js.map +1 -0
  190. package/dist/esm/src/class/utility/dto/property/factory/relation.class.js +29 -0
  191. package/dist/esm/src/class/utility/dto/property/factory/relation.class.js.map +1 -0
  192. package/dist/esm/src/class/utility/dto/property/factory/string.class.js +15 -0
  193. package/dist/esm/src/class/utility/dto/property/factory/string.class.js.map +1 -0
  194. package/dist/esm/src/class/utility/dto/property/factory/uuid.class.js +11 -0
  195. package/dist/esm/src/class/utility/dto/property/factory/uuid.class.js.map +1 -0
  196. package/dist/esm/src/class/utility/dto/strategy/body.class.js +47 -0
  197. package/dist/esm/src/class/utility/dto/strategy/body.class.js.map +1 -0
  198. package/dist/esm/src/class/utility/dto/strategy/query.class.js +44 -0
  199. package/dist/esm/src/class/utility/dto/strategy/query.class.js.map +1 -0
  200. package/dist/esm/src/class/utility/dto/strategy/request.class.js +47 -0
  201. package/dist/esm/src/class/utility/dto/strategy/request.class.js.map +1 -0
  202. package/dist/esm/src/class/utility/dto/strategy/response.class.js +47 -0
  203. package/dist/esm/src/class/utility/dto/strategy/response.class.js.map +1 -0
  204. package/dist/esm/src/constant/date.constant.js +9 -0
  205. package/dist/esm/src/constant/date.constant.js.map +1 -0
  206. package/dist/esm/src/constant/decorator/api/controller.constant.js +7 -0
  207. package/dist/esm/src/constant/decorator/api/controller.constant.js.map +1 -0
  208. package/dist/esm/src/constant/decorator/api/function.constant.js +24 -0
  209. package/dist/esm/src/constant/decorator/api/function.constant.js.map +1 -0
  210. package/dist/esm/src/constant/decorator/api/property-describe.constant.js +7 -0
  211. package/dist/esm/src/constant/decorator/api/property-describe.constant.js.map +1 -0
  212. package/dist/esm/src/constant/dto/exception.constant.js +13 -0
  213. package/dist/esm/src/constant/dto/exception.constant.js.map +1 -0
  214. package/dist/esm/src/constant/dto/list.constant.js +13 -0
  215. package/dist/esm/src/constant/dto/list.constant.js.map +1 -0
  216. package/dist/esm/src/constant/dto/transformer-value.constant.js +15 -0
  217. package/dist/esm/src/constant/dto/transformer-value.constant.js.map +1 -0
  218. package/dist/esm/src/constant/factory/dto/get-list-query.constant.js +13 -0
  219. package/dist/esm/src/constant/factory/dto/get-list-query.constant.js.map +1 -0
  220. package/dist/esm/src/constant/interface/api/filter.constant.js +7 -0
  221. package/dist/esm/src/constant/interface/api/filter.constant.js.map +1 -0
  222. package/dist/esm/src/constant/interface/api/property/string.constant.js +11 -0
  223. package/dist/esm/src/constant/interface/api/property/string.constant.js.map +1 -0
  224. package/dist/esm/src/constant/interface/api/property/wallet.constant.js +11 -0
  225. package/dist/esm/src/constant/interface/api/property/wallet.constant.js.map +1 -0
  226. package/dist/esm/src/constant/number.constant.js +37 -0
  227. package/dist/esm/src/constant/number.constant.js.map +1 -0
  228. package/dist/esm/src/constant/utility/dto/constant.js +53 -0
  229. package/dist/esm/src/constant/utility/dto/constant.js.map +1 -0
  230. package/dist/esm/src/constant/utility/dto/generate.constant.js +9 -0
  231. package/dist/esm/src/constant/utility/dto/generate.constant.js.map +1 -0
  232. package/dist/esm/src/decorator/api/controller.decorator.js +16 -0
  233. package/dist/esm/src/decorator/api/controller.decorator.js.map +1 -0
  234. package/dist/esm/src/decorator/api/function/create.decorator.js +51 -0
  235. package/dist/esm/src/decorator/api/function/create.decorator.js.map +1 -0
  236. package/dist/esm/src/decorator/api/function/decorator.js +69 -0
  237. package/dist/esm/src/decorator/api/function/decorator.js.map +1 -0
  238. package/dist/esm/src/decorator/api/function/delete.decorator.js +69 -0
  239. package/dist/esm/src/decorator/api/function/delete.decorator.js.map +1 -0
  240. package/dist/esm/src/decorator/api/function/get-list.decorator.js +58 -0
  241. package/dist/esm/src/decorator/api/function/get-list.decorator.js.map +1 -0
  242. package/dist/esm/src/decorator/api/function/get-many.decorator.js +55 -0
  243. package/dist/esm/src/decorator/api/function/get-many.decorator.js.map +1 -0
  244. package/dist/esm/src/decorator/api/function/get.decorator.js +55 -0
  245. package/dist/esm/src/decorator/api/function/get.decorator.js.map +1 -0
  246. package/dist/esm/src/decorator/api/function/update.decorator.js +80 -0
  247. package/dist/esm/src/decorator/api/function/update.decorator.js.map +1 -0
  248. package/dist/esm/src/decorator/api/method.decorator.js +349 -0
  249. package/dist/esm/src/decorator/api/method.decorator.js.map +1 -0
  250. package/dist/esm/src/decorator/api/property/boolean.decorator.js +177 -0
  251. package/dist/esm/src/decorator/api/property/boolean.decorator.js.map +1 -0
  252. package/dist/esm/src/decorator/api/property/date.decorator.js +204 -0
  253. package/dist/esm/src/decorator/api/property/date.decorator.js.map +1 -0
  254. package/dist/esm/src/decorator/api/property/describe.decorator.js +29 -0
  255. package/dist/esm/src/decorator/api/property/describe.decorator.js.map +1 -0
  256. package/dist/esm/src/decorator/api/property/enum.decorator.js +103 -0
  257. package/dist/esm/src/decorator/api/property/enum.decorator.js.map +1 -0
  258. package/dist/esm/src/decorator/api/property/number.decorator.js +213 -0
  259. package/dist/esm/src/decorator/api/property/number.decorator.js.map +1 -0
  260. package/dist/esm/src/decorator/api/property/object.decorator.js +102 -0
  261. package/dist/esm/src/decorator/api/property/object.decorator.js.map +1 -0
  262. package/dist/esm/src/decorator/api/property/string.decorator.js +232 -0
  263. package/dist/esm/src/decorator/api/property/string.decorator.js.map +1 -0
  264. package/dist/esm/src/decorator/api/property/uuid.decorator.js +118 -0
  265. package/dist/esm/src/decorator/api/property/uuid.decorator.js.map +1 -0
  266. package/dist/esm/src/decorator/api/service.decorator.js +161 -0
  267. package/dist/esm/src/decorator/api/service.decorator.js.map +1 -0
  268. package/dist/esm/src/enum/decorator/api/action.enum.js +34 -0
  269. package/dist/esm/src/enum/decorator/api/action.enum.js.map +1 -0
  270. package/dist/esm/src/enum/decorator/api/authentication-type.enum.js +10 -0
  271. package/dist/esm/src/enum/decorator/api/authentication-type.enum.js.map +1 -0
  272. package/dist/esm/src/enum/decorator/api/controller/load-relations-strategy.enum.js +8 -0
  273. package/dist/esm/src/enum/decorator/api/controller/load-relations-strategy.enum.js.map +1 -0
  274. package/dist/esm/src/enum/decorator/api/controller/request-transformer-type.enum.js +8 -0
  275. package/dist/esm/src/enum/decorator/api/controller/request-transformer-type.enum.js.map +1 -0
  276. package/dist/esm/src/enum/decorator/api/dto-type.enum.js +10 -0
  277. package/dist/esm/src/enum/decorator/api/dto-type.enum.js.map +1 -0
  278. package/dist/esm/src/enum/decorator/api/function/type.enum.js +12 -0
  279. package/dist/esm/src/enum/decorator/api/function/type.enum.js.map +1 -0
  280. package/dist/esm/src/enum/decorator/api/property/data-type.enum.js +22 -0
  281. package/dist/esm/src/enum/decorator/api/property/data-type.enum.js.map +1 -0
  282. package/dist/esm/src/enum/decorator/api/property/date/identifier.enum.js +18 -0
  283. package/dist/esm/src/enum/decorator/api/property/date/identifier.enum.js.map +1 -0
  284. package/dist/esm/src/enum/decorator/api/property/date/type.enum.js +11 -0
  285. package/dist/esm/src/enum/decorator/api/property/date/type.enum.js.map +1 -0
  286. package/dist/esm/src/enum/decorator/api/property/desribe-type.enum.js +14 -0
  287. package/dist/esm/src/enum/decorator/api/property/desribe-type.enum.js.map +1 -0
  288. package/dist/esm/src/enum/decorator/api/property/number-type.enum.js +10 -0
  289. package/dist/esm/src/enum/decorator/api/property/number-type.enum.js.map +1 -0
  290. package/dist/esm/src/enum/decorator/api/property/string-type.enum.js +17 -0
  291. package/dist/esm/src/enum/decorator/api/property/string-type.enum.js.map +1 -0
  292. package/dist/esm/src/enum/decorator/api/route-type.enum.js +12 -0
  293. package/dist/esm/src/enum/decorator/api/route-type.enum.js.map +1 -0
  294. package/dist/esm/src/enum/exception.enum.js +34 -0
  295. package/dist/esm/src/enum/exception.enum.js.map +1 -0
  296. package/dist/esm/src/enum/filter-operation.enum.js +123 -0
  297. package/dist/esm/src/enum/filter-operation.enum.js.map +1 -0
  298. package/dist/esm/src/enum/filter-order-direction.enum.js +8 -0
  299. package/dist/esm/src/enum/filter-order-direction.enum.js.map +1 -0
  300. package/dist/esm/src/enum/utility/error-string-action.enum.js +106 -0
  301. package/dist/esm/src/enum/utility/error-string-action.enum.js.map +1 -0
  302. package/dist/esm/src/factory/api/controller.factory.js +216 -0
  303. package/dist/esm/src/factory/api/controller.factory.js.map +1 -0
  304. package/dist/esm/src/index.js +82 -0
  305. package/dist/esm/src/index.js.map +1 -0
  306. package/dist/esm/src/interceptor/correlation-id-response-body.interceptor.js +76 -0
  307. package/dist/esm/src/interceptor/correlation-id-response-body.interceptor.js.map +1 -0
  308. package/dist/esm/src/utility/api/controller/apply-decorators.utility.js +81 -0
  309. package/dist/esm/src/utility/api/controller/apply-decorators.utility.js.map +1 -0
  310. package/dist/esm/src/utility/api/controller/apply-metadata.utility.js +76 -0
  311. package/dist/esm/src/utility/api/controller/apply-metadata.utility.js.map +1 -0
  312. package/dist/esm/src/utility/api/controller/get-list/transform-filter.utility.js +48 -0
  313. package/dist/esm/src/utility/api/controller/get-list/transform-filter.utility.js.map +1 -0
  314. package/dist/esm/src/utility/api/controller/get-list/transform-operation.utility.js +80 -0
  315. package/dist/esm/src/utility/api/controller/get-list/transform-operation.utility.js.map +1 -0
  316. package/dist/esm/src/utility/api/controller/get-method-name.utility.js +9 -0
  317. package/dist/esm/src/utility/api/controller/get-method-name.utility.js.map +1 -0
  318. package/dist/esm/src/utility/api/controller/get-primary-column.utility.js +13 -0
  319. package/dist/esm/src/utility/api/controller/get-primary-column.utility.js.map +1 -0
  320. package/dist/esm/src/utility/api/controller/handle-request-relations.utility.js +70 -0
  321. package/dist/esm/src/utility/api/controller/handle-request-relations.utility.js.map +1 -0
  322. package/dist/esm/src/utility/api/controller/transform-data.utility.js +147 -0
  323. package/dist/esm/src/utility/api/controller/transform-data.utility.js.map +1 -0
  324. package/dist/esm/src/utility/api/controller/validate-request.utility.js +16 -0
  325. package/dist/esm/src/utility/api/controller/validate-request.utility.js.map +1 -0
  326. package/dist/esm/src/utility/api/controller/write-dto-swagger.utility.js +77 -0
  327. package/dist/esm/src/utility/api/controller/write-dto-swagger.utility.js.map +1 -0
  328. package/dist/esm/src/utility/api/controller/write-method.utility.js +18 -0
  329. package/dist/esm/src/utility/api/controller/write-method.utility.js.map +1 -0
  330. package/dist/esm/src/utility/api/filter-order-by-from-entity.utility.js +46 -0
  331. package/dist/esm/src/utility/api/filter-order-by-from-entity.utility.js.map +1 -0
  332. package/dist/esm/src/utility/camel-case-string.utility.js +29 -0
  333. package/dist/esm/src/utility/camel-case-string.utility.js.map +1 -0
  334. package/dist/esm/src/utility/capitalize-string.utility.js +6 -0
  335. package/dist/esm/src/utility/capitalize-string.utility.js.map +1 -0
  336. package/dist/esm/src/utility/dto/analize.utility.js +25 -0
  337. package/dist/esm/src/utility/dto/analize.utility.js.map +1 -0
  338. package/dist/esm/src/utility/dto/build-decorator.utility.js +49 -0
  339. package/dist/esm/src/utility/dto/build-decorator.utility.js.map +1 -0
  340. package/dist/esm/src/utility/dto/generate-decorator.utility.js +13 -0
  341. package/dist/esm/src/utility/dto/generate-decorator.utility.js.map +1 -0
  342. package/dist/esm/src/utility/dto/generate-exception.utility.js +96 -0
  343. package/dist/esm/src/utility/dto/generate-exception.utility.js.map +1 -0
  344. package/dist/esm/src/utility/dto/generate-filter-decorator.utility.js +50 -0
  345. package/dist/esm/src/utility/dto/generate-filter-decorator.utility.js.map +1 -0
  346. package/dist/esm/src/utility/dto/generate-get-list-response.utility.js +102 -0
  347. package/dist/esm/src/utility/dto/generate-get-list-response.utility.js.map +1 -0
  348. package/dist/esm/src/utility/dto/generate-relation-response.utility.js +19 -0
  349. package/dist/esm/src/utility/dto/generate-relation-response.utility.js.map +1 -0
  350. package/dist/esm/src/utility/dto/generate.utility.js +131 -0
  351. package/dist/esm/src/utility/dto/generate.utility.js.map +1 -0
  352. package/dist/esm/src/utility/dto/get-decorator-config.utility.js +18 -0
  353. package/dist/esm/src/utility/dto/get-decorator-config.utility.js.map +1 -0
  354. package/dist/esm/src/utility/dto/get-get-list-query-base-class.utility.js +95 -0
  355. package/dist/esm/src/utility/dto/get-get-list-query-base-class.utility.js.map +1 -0
  356. package/dist/esm/src/utility/dto/handle-date-property.utility.js +33 -0
  357. package/dist/esm/src/utility/dto/handle-date-property.utility.js.map +1 -0
  358. package/dist/esm/src/utility/dto/is-property-exposed-for-guard.utility.js +13 -0
  359. package/dist/esm/src/utility/dto/is-property-exposed-for-guard.utility.js.map +1 -0
  360. package/dist/esm/src/utility/dto/is-property-should-be-marked.utility.js +44 -0
  361. package/dist/esm/src/utility/dto/is-property-should-be-marked.utility.js.map +1 -0
  362. package/dist/esm/src/utility/dto/is-should-be-generated.utility.js +39 -0
  363. package/dist/esm/src/utility/dto/is-should-be-generated.utility.js.map +1 -0
  364. package/dist/esm/src/utility/dto/validate-property-config.utility.js +4 -0
  365. package/dist/esm/src/utility/dto/validate-property-config.utility.js.map +1 -0
  366. package/dist/esm/src/utility/error-exception.utility.js +6 -0
  367. package/dist/esm/src/utility/error-exception.utility.js.map +1 -0
  368. package/dist/esm/src/utility/error-string.utility.js +6 -0
  369. package/dist/esm/src/utility/error-string.utility.js.map +1 -0
  370. package/dist/esm/src/utility/generate-entity-information.utility.js +76 -0
  371. package/dist/esm/src/utility/generate-entity-information.utility.js.map +1 -0
  372. package/dist/esm/src/utility/get-entity-columns.utility.js +20 -0
  373. package/dist/esm/src/utility/get-entity-columns.utility.js.map +1 -0
  374. package/dist/esm/src/utility/is-error-of-type.utility.js +66 -0
  375. package/dist/esm/src/utility/is-error-of-type.utility.js.map +1 -0
  376. package/dist/esm/src/validator/all-or-none-of-listed-properties.validator.js +23 -0
  377. package/dist/esm/src/validator/all-or-none-of-listed-properties.validator.js.map +1 -0
  378. package/dist/esm/src/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js +33 -0
  379. package/dist/esm/src/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js.map +1 -0
  380. package/dist/esm/src/validator/has-at-least-one-of-listed-properties.validator.js +29 -0
  381. package/dist/esm/src/validator/has-at-least-one-of-listed-properties.validator.js.map +1 -0
  382. package/dist/esm/src/validator/has-at-least-one-property.validator.js +17 -0
  383. package/dist/esm/src/validator/has-at-least-one-property.validator.js.map +1 -0
  384. package/dist/esm/src/validator/has-paired-custom-suffixes-fields.validator.js +214 -0
  385. package/dist/esm/src/validator/has-paired-custom-suffixes-fields.validator.js.map +1 -0
  386. package/dist/esm/src/validator/is-regular-expression.validator.js +25 -0
  387. package/dist/esm/src/validator/is-regular-expression.validator.js.map +1 -0
  388. package/dist/esm/src/validator/only-one-of-listed-properties.validator.js +28 -0
  389. package/dist/esm/src/validator/only-one-of-listed-properties.validator.js.map +1 -0
  390. package/dist/esm/type/api-request-transformer.type.d.ts +15 -0
  391. package/dist/esm/type/class/api-exception.type.d.ts +2 -0
  392. package/dist/esm/type/class/controller/index.d.ts +1 -0
  393. package/dist/esm/type/class/controller/method.type.d.ts +5 -0
  394. package/dist/esm/type/class/index.d.ts +3 -0
  395. package/dist/esm/type/class/metadata.type.d.ts +2 -0
  396. package/dist/esm/type/decorator/api/controller/constructor.type.d.ts +4 -0
  397. package/dist/esm/type/decorator/api/controller/get-list-query.type.d.ts +8 -0
  398. package/dist/esm/type/decorator/api/controller/index.d.ts +5 -0
  399. package/dist/esm/type/decorator/api/controller/properties/index.d.ts +1 -0
  400. package/dist/esm/type/decorator/api/controller/properties/route/base-request-relations.type.d.ts +18 -0
  401. package/dist/esm/type/decorator/api/controller/properties/route/base-request-transformers.type.d.ts +10 -0
  402. package/dist/esm/type/decorator/api/controller/properties/route/base-response-transformers.type.d.ts +10 -0
  403. package/dist/esm/type/decorator/api/controller/properties/route/index.d.ts +3 -0
  404. package/dist/esm/type/decorator/api/controller/properties-route.type.d.ts +3 -0
  405. package/dist/esm/type/decorator/api/controller/transformer-config.type.d.ts +8 -0
  406. package/dist/esm/type/decorator/api/filter/allowed-types.type.d.ts +1 -0
  407. package/dist/esm/type/decorator/api/filter/extracted-allowed-types.type.d.ts +2 -0
  408. package/dist/esm/type/decorator/api/filter/field-selector.type.d.ts +3 -0
  409. package/dist/esm/type/decorator/api/filter/index.d.ts +4 -0
  410. package/dist/esm/type/decorator/api/filter/order-by.type.d.ts +4 -0
  411. package/dist/esm/type/decorator/api/function/create-properties.type.d.ts +2 -0
  412. package/dist/esm/type/decorator/api/function/delete-criteria.type.d.ts +2 -0
  413. package/dist/esm/type/decorator/api/function/get-list-properties-where.type.d.ts +7 -0
  414. package/dist/esm/type/decorator/api/function/get-list-properties.type.d.ts +2 -0
  415. package/dist/esm/type/decorator/api/function/get-many.properties.d.ts +2 -0
  416. package/dist/esm/type/decorator/api/function/get-properties.type.d.ts +2 -0
  417. package/dist/esm/type/decorator/api/function/index.d.ts +9 -0
  418. package/dist/esm/type/decorator/api/function/properties.type.d.ts +7 -0
  419. package/dist/esm/type/decorator/api/function/update-criteria.type.d.ts +2 -0
  420. package/dist/esm/type/decorator/api/function/update-properties.type.d.ts +2 -0
  421. package/dist/esm/type/decorator/api/index.d.ts +5 -0
  422. package/dist/esm/type/decorator/api/property/base/array/index.d.ts +2 -0
  423. package/dist/esm/type/decorator/api/property/base/array/optional-properties.type.d.ts +3 -0
  424. package/dist/esm/type/decorator/api/property/base/array/required-properties.type.d.ts +6 -0
  425. package/dist/esm/type/decorator/api/property/base/index.d.ts +4 -0
  426. package/dist/esm/type/decorator/api/property/base/properties.type.d.ts +9 -0
  427. package/dist/esm/type/decorator/api/property/base/request-properties.type.d.ts +4 -0
  428. package/dist/esm/type/decorator/api/property/base/response-properties.type.d.ts +4 -0
  429. package/dist/esm/type/decorator/api/property/date-properties.type.d.ts +6 -0
  430. package/dist/esm/type/decorator/api/property/describe/array/index.d.ts +2 -0
  431. package/dist/esm/type/decorator/api/property/describe/array/optional-properties.type.d.ts +3 -0
  432. package/dist/esm/type/decorator/api/property/describe/array/required-properties.type.d.ts +6 -0
  433. package/dist/esm/type/decorator/api/property/describe/base-properties.type.d.ts +5 -0
  434. package/dist/esm/type/decorator/api/property/describe/boolean-properties.type.d.ts +7 -0
  435. package/dist/esm/type/decorator/api/property/describe/date-properties.type.d.ts +8 -0
  436. package/dist/esm/type/decorator/api/property/describe/dto/body-properties.type.d.ts +5 -0
  437. package/dist/esm/type/decorator/api/property/describe/dto/guard-properties.type.d.ts +6 -0
  438. package/dist/esm/type/decorator/api/property/describe/dto/index.d.ts +5 -0
  439. package/dist/esm/type/decorator/api/property/describe/dto/properties.type.d.ts +11 -0
  440. package/dist/esm/type/decorator/api/property/describe/dto/query/get-list-properties.type.d.ts +3 -0
  441. package/dist/esm/type/decorator/api/property/describe/dto/query/index.d.ts +2 -0
  442. package/dist/esm/type/decorator/api/property/describe/dto/query/properties.type.d.ts +6 -0
  443. package/dist/esm/type/decorator/api/property/describe/dto/request-properties.type.d.ts +5 -0
  444. package/dist/esm/type/decorator/api/property/describe/dto/response-properties.type.d.ts +5 -0
  445. package/dist/esm/type/decorator/api/property/describe/enum-properties.type.d.ts +9 -0
  446. package/dist/esm/type/decorator/api/property/describe/example-properties.type.d.ts +7 -0
  447. package/dist/esm/type/decorator/api/property/describe/index.d.ts +13 -0
  448. package/dist/esm/type/decorator/api/property/describe/number-properties.type.d.ts +12 -0
  449. package/dist/esm/type/decorator/api/property/describe/object-properties.type.d.ts +12 -0
  450. package/dist/esm/type/decorator/api/property/describe/properties/base-dto-properties.type.d.ts +2 -0
  451. package/dist/esm/type/decorator/api/property/describe/properties/base-properties.type.d.ts +10 -0
  452. package/dist/esm/type/decorator/api/property/describe/properties/index.d.ts +2 -0
  453. package/dist/esm/type/decorator/api/property/describe/properties.type.d.ts +9 -0
  454. package/dist/esm/type/decorator/api/property/describe/relation-properties.type.d.ts +6 -0
  455. package/dist/esm/type/decorator/api/property/describe/string-properties.type.d.ts +12 -0
  456. package/dist/esm/type/decorator/api/property/describe/uuid-properties.type.d.ts +7 -0
  457. package/dist/esm/type/decorator/api/property/enum-properties.type.d.ts +6 -0
  458. package/dist/esm/type/decorator/api/property/index.d.ts +6 -0
  459. package/dist/esm/type/decorator/api/property/number-properties.type.d.ts +9 -0
  460. package/dist/esm/type/decorator/api/property/object-properties.type.d.ts +8 -0
  461. package/dist/esm/type/decorator/api/property/string-properties.type.d.ts +9 -0
  462. package/dist/esm/type/decorator/api/property/uuid-properties.type.d.ts +2 -0
  463. package/dist/esm/type/decorator/api/service/index.d.ts +2 -0
  464. package/dist/esm/type/decorator/api/service/keys.type.d.ts +4 -0
  465. package/dist/esm/type/decorator/api/service/properties.type.d.ts +3 -0
  466. package/dist/esm/type/decorator/index.d.ts +1 -0
  467. package/dist/esm/type/factory/api/controller/index.d.ts +4 -0
  468. package/dist/esm/type/factory/api/controller/method-map.type.d.ts +12 -0
  469. package/dist/esm/type/factory/api/controller/method-name-map.type.d.ts +5 -0
  470. package/dist/esm/type/factory/api/controller/method-name.type.d.ts +4 -0
  471. package/dist/esm/type/factory/api/controller/target-methods.type.d.ts +9 -0
  472. package/dist/esm/type/factory/api/index.d.ts +1 -0
  473. package/dist/esm/type/factory/index.d.ts +1 -0
  474. package/dist/esm/type/index.d.ts +5 -0
  475. package/dist/esm/type/utility/api/controller/index.d.ts +1 -0
  476. package/dist/esm/type/utility/api/controller/transform-data/data.type.d.ts +6 -0
  477. package/dist/esm/type/utility/api/controller/transform-data/index.d.ts +3 -0
  478. package/dist/esm/type/utility/api/controller/transform-data/is-validation-properties.type.d.ts +3 -0
  479. package/dist/esm/type/utility/api/controller/transform-data/object-to-transform.type.d.ts +9 -0
  480. package/dist/esm/type/utility/api/index.d.ts +1 -0
  481. package/dist/esm/type/utility/capitalize-string.type.d.ts +1 -0
  482. package/dist/esm/type/utility/date-keys.type.d.ts +2 -0
  483. package/dist/esm/type/utility/date-range-keys.type.d.ts +4 -0
  484. package/dist/esm/type/utility/dto/generate-allowed-combination.type.d.ts +9 -0
  485. package/dist/esm/type/utility/dto/generate-is-allowed-combination.type.d.ts +3 -0
  486. package/dist/esm/type/utility/dto/index.d.ts +2 -0
  487. package/dist/esm/type/utility/filter-keys.type.d.ts +7 -0
  488. package/dist/esm/type/utility/index.d.ts +7 -0
  489. package/dist/esm/type/utility/non-date-keys.type.d.ts +2 -0
  490. package/dist/esm/utility/api/controller/apply-decorators.utility.d.ts +4 -0
  491. package/dist/esm/utility/api/controller/apply-metadata.utility.d.ts +4 -0
  492. package/dist/esm/utility/api/controller/get-list/index.d.ts +2 -0
  493. package/dist/esm/utility/api/controller/get-list/transform-filter.utility.d.ts +3 -0
  494. package/dist/esm/utility/api/controller/get-list/transform-operation.utility.d.ts +3 -0
  495. package/dist/esm/utility/api/controller/get-method-name.utility.d.ts +2 -0
  496. package/dist/esm/utility/api/controller/get-primary-column.utility.d.ts +3 -0
  497. package/dist/esm/utility/api/controller/handle-request-relations.utility.d.ts +4 -0
  498. package/dist/esm/utility/api/controller/index.d.ts +9 -0
  499. package/dist/esm/utility/api/controller/transform-data.utility.d.ts +4 -0
  500. package/dist/esm/utility/api/controller/validate-request.utility.d.ts +3 -0
  501. package/dist/esm/utility/api/controller/write-dto-swagger.utility.d.ts +4 -0
  502. package/dist/esm/utility/api/controller/write-method.utility.d.ts +3 -0
  503. package/dist/esm/utility/api/filter-order-by-from-entity.utility.d.ts +6 -0
  504. package/dist/esm/utility/api/index.d.ts +2 -0
  505. package/dist/esm/utility/camel-case-string.utility.d.ts +1 -0
  506. package/dist/esm/utility/capitalize-string.utility.d.ts +1 -0
  507. package/dist/esm/utility/dto/analize.utility.d.ts +2 -0
  508. package/dist/esm/utility/dto/build-decorator.utility.d.ts +6 -0
  509. package/dist/esm/utility/dto/generate-decorator.utility.d.ts +4 -0
  510. package/dist/esm/utility/dto/generate-exception.utility.d.ts +2 -0
  511. package/dist/esm/utility/dto/generate-filter-decorator.utility.d.ts +3 -0
  512. package/dist/esm/utility/dto/generate-get-list-response.utility.d.ts +4 -0
  513. package/dist/esm/utility/dto/generate-relation-response.utility.d.ts +4 -0
  514. package/dist/esm/utility/dto/generate.utility.d.ts +6 -0
  515. package/dist/esm/utility/dto/get-decorator-config.utility.d.ts +3 -0
  516. package/dist/esm/utility/dto/get-get-list-query-base-class.utility.d.ts +5 -0
  517. package/dist/esm/utility/dto/handle-date-property.utility.d.ts +5 -0
  518. package/dist/esm/utility/dto/index.d.ts +12 -0
  519. package/dist/esm/utility/dto/is-property-exposed-for-guard.utility.d.ts +5 -0
  520. package/dist/esm/utility/dto/is-property-should-be-marked.utility.d.ts +5 -0
  521. package/dist/esm/utility/dto/is-should-be-generated.utility.d.ts +2 -0
  522. package/dist/esm/utility/dto/validate-property-config.utility.d.ts +2 -0
  523. package/dist/esm/utility/error-exception.utility.d.ts +1 -0
  524. package/dist/esm/utility/error-string.utility.d.ts +2 -0
  525. package/dist/esm/utility/generate-entity-information.utility.d.ts +2 -0
  526. package/dist/esm/utility/get-entity-columns.utility.d.ts +2 -0
  527. package/dist/esm/utility/index.d.ts +9 -0
  528. package/dist/esm/utility/is-error-of-type.utility.d.ts +2 -0
  529. package/dist/esm/validator/all-or-none-of-listed-properties.validator.d.ts +5 -0
  530. package/dist/esm/validator/has-at-least-one-and-only-one-of-listed-properties.validator.d.ts +5 -0
  531. package/dist/esm/validator/has-at-least-one-of-listed-properties.validator.d.ts +5 -0
  532. package/dist/esm/validator/has-at-least-one-property.validator.d.ts +5 -0
  533. package/dist/esm/validator/has-paired-custom-suffixes-fields.validator.d.ts +7 -0
  534. package/dist/esm/validator/index.d.ts +6 -0
  535. package/dist/esm/validator/is-regular-expression.validator.d.ts +4 -0
  536. package/dist/esm/validator/only-one-of-listed-properties.validator.d.ts +5 -0
  537. package/package.json +22 -14
  538. package/dist/package.json +0 -97
@@ -4,9 +4,8 @@ require('../constant/decorator/api/function.constant.js');
4
4
  var propertyDescribe_constant = require('../constant/decorator/api/property-describe.constant.js');
5
5
 
6
6
  class MetadataStorage {
7
- constructor() {
8
- this.STORAGE = new Map();
9
- }
7
+ static instance;
8
+ STORAGE = new Map();
10
9
  static getInstance() {
11
10
  if (!MetadataStorage.instance) {
12
11
  MetadataStorage.instance = new MetadataStorage();
@@ -1 +1 @@
1
- {"version":3,"file":"metadata-storage.class.js","sources":["../../../../src/class/metadata-storage.class.ts"],"sourcesContent":[null],"names":["PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT"],"mappings":";;;;;MAMa,eAAe,CAAA;AAA5B,IAAA,WAAA,GAAA;AAGkB,QAAA,IAAA,CAAA,OAAO,GAA6C,IAAI,GAAG,EAAuC;;AAE5G,IAAA,OAAO,WAAW,GAAA;AACxB,QAAA,IAAI,CAAC,eAAe,CAAC,QAAQ,EAAE;AAC9B,YAAA,eAAe,CAAC,QAAQ,GAAG,IAAI,eAAe,EAAE;;QAGjD,OAAO,eAAe,CAAC,QAAQ;;IAGzB,sBAAsB,GAAA;QAC5B,MAAM,MAAM,GAA8B,EAAE;AAE5C,QAAA,KAAK,MAAM,CAAC,UAAU,EAAE,cAAc,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAClE,MAAM,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,cAAc,CAAC;;AAGxD,QAAA,OAAO,MAAM;;AAMP,IAAA,WAAW,CAAC,UAAkB,EAAE,YAAqB,EAAE,GAA0B,EAAA;QACvF,MAAM,cAAc,GAA4C,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC;AAE5F,QAAA,IAAI,CAAC,cAAc;AAAE,YAAA,OAAO,SAAS;AAErC,QAAA,IAAI,CAAC,YAAY;AAAE,YAAA,OAAO,MAAM,CAAC,WAAW,CAAC,cAAc,CAAC;QAC5D,MAAM,gBAAgB,GAA+B,cAAc,CAAC,GAAG,CAAC,YAAY,CAAC;AAErF,QAAA,IAAI,CAAC,gBAAgB;AAAE,YAAA,OAAO,SAAS;AAEvC,QAAA,IAAI,CAAC,GAAG;AAAE,YAAA,OAAO,gBAAgB;AAEjC,QAAA,OAAO,gBAAgB,CAAC,GAAG,CAAC;;AAGtB,IAAA,WAAW,CAAiC,UAAkB,EAAE,YAAoB,EAAE,GAAM,EAAE,KAAwB,EAAA;QAC5H,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE;YAClC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,EAAE,IAAI,GAAG,EAAE,CAAC;;QAGxC,MAAM,cAAc,GAAgC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAE;QAEjF,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,YAAY,CAAC,EAAE;AACtC,YAAA,cAAc,CAAC,GAAG,CAAC,YAAY,EAAE,EAAE,CAACA,kEAAwC,CAAC,sBAAsB,GAAG,EAAE,EAAE,CAAC;;QAI5G,MAAM,gBAAgB,GAAmB,cAAc,CAAC,GAAG,CAAC,YAAY,CAAE;AAC1E,QAAA,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK;;AAE9B;;;;"}
1
+ {"version":3,"file":"metadata-storage.class.js","sources":["../../../../src/class/metadata-storage.class.ts"],"sourcesContent":[null],"names":["PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT"],"mappings":";;;;;MAMa,eAAe,CAAA;IACnB,OAAO,QAAQ;AAEN,IAAA,OAAO,GAA6C,IAAI,GAAG,EAAuC;AAE5G,IAAA,OAAO,WAAW,GAAA;AACxB,QAAA,IAAI,CAAC,eAAe,CAAC,QAAQ,EAAE;AAC9B,YAAA,eAAe,CAAC,QAAQ,GAAG,IAAI,eAAe,EAAE;;QAGjD,OAAO,eAAe,CAAC,QAAQ;;IAGzB,sBAAsB,GAAA;QAC5B,MAAM,MAAM,GAA8B,EAAE;AAE5C,QAAA,KAAK,MAAM,CAAC,UAAU,EAAE,cAAc,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAClE,MAAM,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,cAAc,CAAC;;AAGxD,QAAA,OAAO,MAAM;;AAMP,IAAA,WAAW,CAAC,UAAkB,EAAE,YAAqB,EAAE,GAA0B,EAAA;QACvF,MAAM,cAAc,GAA4C,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC;AAE5F,QAAA,IAAI,CAAC,cAAc;AAAE,YAAA,OAAO,SAAS;AAErC,QAAA,IAAI,CAAC,YAAY;AAAE,YAAA,OAAO,MAAM,CAAC,WAAW,CAAC,cAAc,CAAC;QAC5D,MAAM,gBAAgB,GAA+B,cAAc,CAAC,GAAG,CAAC,YAAY,CAAC;AAErF,QAAA,IAAI,CAAC,gBAAgB;AAAE,YAAA,OAAO,SAAS;AAEvC,QAAA,IAAI,CAAC,GAAG;AAAE,YAAA,OAAO,gBAAgB;AAEjC,QAAA,OAAO,gBAAgB,CAAC,GAAG,CAAC;;AAGtB,IAAA,WAAW,CAAiC,UAAkB,EAAE,YAAoB,EAAE,GAAM,EAAE,KAAwB,EAAA;QAC5H,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE;YAClC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,EAAE,IAAI,GAAG,EAAE,CAAC;;QAGxC,MAAM,cAAc,GAAgC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAE;QAEjF,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,YAAY,CAAC,EAAE;AACtC,YAAA,cAAc,CAAC,GAAG,CAAC,YAAY,EAAE,EAAE,CAACA,kEAAwC,CAAC,sBAAsB,GAAG,EAAE,EAAE,CAAC;;QAI5G,MAAM,gBAAgB,GAAmB,cAAc,CAAC,GAAG,CAAC,YAAY,CAAE;AAC1E,QAAA,gBAAgB,CAAC,GAAG,CAAC,GAAG,KAAK;;AAE9B;;;;"}
@@ -27,115 +27,115 @@ function ApiMethod(options) {
27
27
  if (options.action) {
28
28
  switch (options.action) {
29
29
  case action_enum.EApiAction.ARCHIVE: {
30
- summary = `Archiving \`${pluralizer.toPlural(String(options.entity.name))}\``;
30
+ summary = `Archiving \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
31
31
  break;
32
32
  }
33
33
  case action_enum.EApiAction.AUTHENTICATION: {
34
- summary = `Authentication of \`${pluralizer.toPlural(String(options.entity.name))}\``;
34
+ summary = `Authentication of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
35
35
  break;
36
36
  }
37
37
  case action_enum.EApiAction.BULK_CREATE: {
38
- summary = `Bulk creating \`${String(options.entity.name)}s\``;
38
+ summary = `Bulk creating \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
39
39
  break;
40
40
  }
41
41
  case action_enum.EApiAction.BULK_DELETE: {
42
- summary = `Bulk deleting \`${String(options.entity.name)}s\``;
42
+ summary = `Bulk deleting \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
43
43
  break;
44
44
  }
45
45
  case action_enum.EApiAction.BULK_UPDATE: {
46
- summary = `Bulk updating \`${String(options.entity.name)}s\``;
46
+ summary = `Bulk updating \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
47
47
  break;
48
48
  }
49
49
  case action_enum.EApiAction.CONFIRMATION: {
50
- summary = `Confirmation of \`${pluralizer.toPlural(String(options.entity.name))}\``;
50
+ summary = `Confirmation of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
51
51
  break;
52
52
  }
53
53
  case action_enum.EApiAction.CREATE: {
54
- summary = `Creating \`${pluralizer.toPlural(String(options.entity.name))}\``;
54
+ summary = `Creating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
55
55
  break;
56
56
  }
57
57
  case action_enum.EApiAction.DELETE: {
58
- summary = `Deleting \`${pluralizer.toPlural(String(options.entity.name))}\``;
58
+ summary = `Deleting \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
59
59
  break;
60
60
  }
61
61
  case action_enum.EApiAction.DOWNLOAD: {
62
- summary = `Downloading \`${pluralizer.toPlural(String(options.entity.name))}\``;
62
+ summary = `Downloading \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
63
63
  break;
64
64
  }
65
65
  case action_enum.EApiAction.DUPLICATE: {
66
- summary = `Duplicating \`${pluralizer.toPlural(String(options.entity.name))}\``;
66
+ summary = `Duplicating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
67
67
  break;
68
68
  }
69
69
  case action_enum.EApiAction.EXPORT: {
70
- summary = `Exporting \`${pluralizer.toPlural(String(options.entity.name))}\``;
70
+ summary = `Exporting \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
71
71
  break;
72
72
  }
73
73
  case action_enum.EApiAction.FETCH: {
74
- summary = `Fetching \`${pluralizer.toPlural(String(options.entity.name))}\``;
74
+ summary = `Fetching \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
75
75
  break;
76
76
  }
77
77
  case action_enum.EApiAction.FETCH_LIST: {
78
- summary = `Fetching list of \`${String(options.entity.name)}s\``;
78
+ summary = `Fetching list of \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
79
79
  break;
80
80
  }
81
81
  case action_enum.EApiAction.FETCH_SIMPLE_LIST: {
82
- summary = `Fetching simple list of \`${String(options.entity.name)}s\``;
82
+ summary = `Fetching simple list of \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
83
83
  break;
84
84
  }
85
85
  case action_enum.EApiAction.FETCH_SPECIFIED: {
86
- summary = `Fetching \`${pluralizer.toPlural(String(options.entity.name))}\` of specified item`;
86
+ summary = `Fetching \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\` of specified item`;
87
87
  break;
88
88
  }
89
89
  case action_enum.EApiAction.IMPORT: {
90
- summary = `Importing \`${pluralizer.toPlural(String(options.entity.name))}\``;
90
+ summary = `Importing \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
91
91
  break;
92
92
  }
93
93
  case action_enum.EApiAction.LOGOUT: {
94
- summary = `Logout of \`${pluralizer.toPlural(String(options.entity.name))}\``;
94
+ summary = `Logout of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
95
95
  break;
96
96
  }
97
97
  case action_enum.EApiAction.PARTIAL_UPDATE: {
98
- summary = `Partial updating \`${pluralizer.toPlural(String(options.entity.name))}\``;
98
+ summary = `Partial updating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
99
99
  break;
100
100
  }
101
101
  case action_enum.EApiAction.REFRESH: {
102
- summary = `Refresh of \`${pluralizer.toPlural(String(options.entity.name))}\``;
102
+ summary = `Refresh of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
103
103
  break;
104
104
  }
105
105
  case action_enum.EApiAction.REGISTRATION: {
106
- summary = `Registration of \`${pluralizer.toPlural(String(options.entity.name))}\``;
106
+ summary = `Registration of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
107
107
  break;
108
108
  }
109
109
  case action_enum.EApiAction.RESTORE: {
110
- summary = `Restoring \`${pluralizer.toPlural(String(options.entity.name))}\``;
110
+ summary = `Restoring \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
111
111
  break;
112
112
  }
113
113
  case action_enum.EApiAction.SEARCH: {
114
- summary = `Searching for \`${pluralizer.toPlural(String(options.entity.name))}\``;
114
+ summary = `Searching for \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
115
115
  break;
116
116
  }
117
117
  case action_enum.EApiAction.SUBSCRIBE: {
118
- summary = `Subscribing to \`${pluralizer.toPlural(String(options.entity.name))}\``;
118
+ summary = `Subscribing to \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
119
119
  break;
120
120
  }
121
121
  case action_enum.EApiAction.UNSUBSCRIBE: {
122
- summary = `Unsubscribing from \`${pluralizer.toPlural(String(options.entity.name))}\``;
122
+ summary = `Unsubscribing from \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
123
123
  break;
124
124
  }
125
125
  case action_enum.EApiAction.UPDATE: {
126
- summary = `Updating \`${pluralizer.toPlural(String(options.entity.name))}\``;
126
+ summary = `Updating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
127
127
  break;
128
128
  }
129
129
  case action_enum.EApiAction.UPLOAD: {
130
- summary = `Uploading \`${pluralizer.toPlural(String(options.entity.name))}\``;
130
+ summary = `Uploading \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
131
131
  break;
132
132
  }
133
133
  case action_enum.EApiAction.VALIDATE: {
134
- summary = `Validating \`${pluralizer.toPlural(String(options.entity.name))}\``;
134
+ summary = `Validating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
135
135
  break;
136
136
  }
137
137
  case action_enum.EApiAction.VERIFY: {
138
- summary = `Verifying \`${pluralizer.toPlural(String(options.entity.name))}\``;
138
+ summary = `Verifying \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
139
139
  break;
140
140
  }
141
141
  }
@@ -143,115 +143,115 @@ function ApiMethod(options) {
143
143
  if (!options.description && options.action) {
144
144
  switch (options.action) {
145
145
  case action_enum.EApiAction.ARCHIVE: {
146
- options.description = `This method is used for archiving \`${pluralizer.toPlural(String(options.entity.name))}\``;
146
+ options.description = `This method is used for archiving \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
147
147
  break;
148
148
  }
149
149
  case action_enum.EApiAction.AUTHENTICATION: {
150
- options.description = `This method is used for authentication of \`${pluralizer.toPlural(String(options.entity.name))}\``;
150
+ options.description = `This method is used for authentication of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
151
151
  break;
152
152
  }
153
153
  case action_enum.EApiAction.BULK_CREATE: {
154
- options.description = `This method is used for bulk creating \`${String(options.entity.name)}s\``;
154
+ options.description = `This method is used for bulk creating \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
155
155
  break;
156
156
  }
157
157
  case action_enum.EApiAction.BULK_DELETE: {
158
- options.description = `This method is used for bulk deleting \`${String(options.entity.name)}s\``;
158
+ options.description = `This method is used for bulk deleting \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
159
159
  break;
160
160
  }
161
161
  case action_enum.EApiAction.BULK_UPDATE: {
162
- options.description = `This method is used for bulk updating \`${String(options.entity.name)}s\``;
162
+ options.description = `This method is used for bulk updating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
163
163
  break;
164
164
  }
165
165
  case action_enum.EApiAction.CONFIRMATION: {
166
- options.description = `This method is used for confirmation of \`${pluralizer.toPlural(String(options.entity.name))}\``;
166
+ options.description = `This method is used for confirmation of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
167
167
  break;
168
168
  }
169
169
  case action_enum.EApiAction.CREATE: {
170
- options.description = `This method is used for creating \`${pluralizer.toPlural(String(options.entity.name))}\``;
170
+ options.description = `This method is used for creating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
171
171
  break;
172
172
  }
173
173
  case action_enum.EApiAction.DELETE: {
174
- options.description = `This method is used for deleting \`${pluralizer.toPlural(String(options.entity.name))}\``;
174
+ options.description = `This method is used for deleting \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
175
175
  break;
176
176
  }
177
177
  case action_enum.EApiAction.DOWNLOAD: {
178
- options.description = `This method is used for downloading \`${pluralizer.toPlural(String(options.entity.name))}\``;
178
+ options.description = `This method is used for downloading \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
179
179
  break;
180
180
  }
181
181
  case action_enum.EApiAction.DUPLICATE: {
182
- options.description = `This method is used for duplicating \`${pluralizer.toPlural(String(options.entity.name))}\``;
182
+ options.description = `This method is used for duplicating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
183
183
  break;
184
184
  }
185
185
  case action_enum.EApiAction.EXPORT: {
186
- options.description = `This method is used for exporting \`${pluralizer.toPlural(String(options.entity.name))}\``;
186
+ options.description = `This method is used for exporting \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
187
187
  break;
188
188
  }
189
189
  case action_enum.EApiAction.FETCH: {
190
- options.description = `This method is used for fetching \`${pluralizer.toPlural(String(options.entity.name))}\``;
190
+ options.description = `This method is used for fetching \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
191
191
  break;
192
192
  }
193
193
  case action_enum.EApiAction.FETCH_LIST: {
194
- options.description = `This method is used for fetching list of \`${String(options.entity.name)}s\``;
194
+ options.description = `This method is used for fetching list of \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
195
195
  break;
196
196
  }
197
197
  case action_enum.EApiAction.FETCH_SIMPLE_LIST: {
198
- options.description = `This method is used for fetching simple list of \`${String(options.entity.name)}s\``;
198
+ options.description = `This method is used for fetching simple list of \`${pluralizer.pluralizer.toPlural(String(options.entity.name))}\``;
199
199
  break;
200
200
  }
201
201
  case action_enum.EApiAction.FETCH_SPECIFIED: {
202
- options.description = `This method is used for fetching \`${pluralizer.toPlural(String(options.entity.name))}\` of specified item`;
202
+ options.description = `This method is used for fetching \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\` of specified item`;
203
203
  break;
204
204
  }
205
205
  case action_enum.EApiAction.IMPORT: {
206
- options.description = `This method is used for importing \`${pluralizer.toPlural(String(options.entity.name))}\``;
206
+ options.description = `This method is used for importing \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
207
207
  break;
208
208
  }
209
209
  case action_enum.EApiAction.LOGOUT: {
210
- options.description = `This method is used for logout of \`${pluralizer.toPlural(String(options.entity.name))}\``;
210
+ options.description = `This method is used for logout of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
211
211
  break;
212
212
  }
213
213
  case action_enum.EApiAction.PARTIAL_UPDATE: {
214
- options.description = `This method is used for partial updating \`${pluralizer.toPlural(String(options.entity.name))}\``;
214
+ options.description = `This method is used for partial updating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
215
215
  break;
216
216
  }
217
217
  case action_enum.EApiAction.REFRESH: {
218
- options.description = `This method is used for refresh of \`${pluralizer.toPlural(String(options.entity.name))}\``;
218
+ options.description = `This method is used for refresh of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
219
219
  break;
220
220
  }
221
221
  case action_enum.EApiAction.REGISTRATION: {
222
- options.description = `This method is used for registration of \`${pluralizer.toPlural(String(options.entity.name))}\``;
222
+ options.description = `This method is used for registration of \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
223
223
  break;
224
224
  }
225
225
  case action_enum.EApiAction.RESTORE: {
226
- options.description = `This method is used for restoring \`${pluralizer.toPlural(String(options.entity.name))}\``;
226
+ options.description = `This method is used for restoring \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
227
227
  break;
228
228
  }
229
229
  case action_enum.EApiAction.SEARCH: {
230
- options.description = `This method is used for searching \`${pluralizer.toPlural(String(options.entity.name))}\``;
230
+ options.description = `This method is used for searching \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
231
231
  break;
232
232
  }
233
233
  case action_enum.EApiAction.SUBSCRIBE: {
234
- options.description = `This method is used for subscribing to \`${pluralizer.toPlural(String(options.entity.name))}\``;
234
+ options.description = `This method is used for subscribing to \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
235
235
  break;
236
236
  }
237
237
  case action_enum.EApiAction.UNSUBSCRIBE: {
238
- options.description = `This method is used for unsubscribing from \`${pluralizer.toPlural(String(options.entity.name))}\``;
238
+ options.description = `This method is used for unsubscribing from \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
239
239
  break;
240
240
  }
241
241
  case action_enum.EApiAction.UPDATE: {
242
- options.description = `This method is used for updating \`${pluralizer.toPlural(String(options.entity.name))}\``;
242
+ options.description = `This method is used for updating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
243
243
  break;
244
244
  }
245
245
  case action_enum.EApiAction.UPLOAD: {
246
- options.description = `This method is used for uploading \`${pluralizer.toPlural(String(options.entity.name))}\``;
246
+ options.description = `This method is used for uploading \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
247
247
  break;
248
248
  }
249
249
  case action_enum.EApiAction.VALIDATE: {
250
- options.description = `This method is used for validating \`${pluralizer.toPlural(String(options.entity.name))}\``;
250
+ options.description = `This method is used for validating \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
251
251
  break;
252
252
  }
253
253
  case action_enum.EApiAction.VERIFY: {
254
- options.description = `This method is used for verifying \`${pluralizer.toPlural(String(options.entity.name))}\``;
254
+ options.description = `This method is used for verifying \`${pluralizer.pluralizer.toSingular(String(options.entity.name))}\``;
255
255
  break;
256
256
  }
257
257
  }
@@ -1 +1 @@
1
- {"version":3,"file":"method.decorator.js","sources":["../../../../../src/decorator/api/method.decorator.ts"],"sourcesContent":[null],"names":["EApiAction","ApiOperation","ApiResponse","HttpCode","Throttle","ApiUnauthorizedResponse","DtoGenerateException","HttpStatus","ApiForbiddenResponse","ApiInternalServerErrorResponse","ApiNotFoundResponse","ApiBadRequestResponse","ApiTooManyRequestsResponse","RequestMethod","Delete","Get","Patch","Post","Put","ApiBearerAuth","ApiSecurity","UseGuards","applyDecorators"],"mappings":"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"}
1
+ {"version":3,"file":"method.decorator.js","sources":["../../../../../src/decorator/api/method.decorator.ts"],"sourcesContent":[null],"names":["EApiAction","pluralizer","ApiOperation","ApiResponse","HttpCode","Throttle","ApiUnauthorizedResponse","DtoGenerateException","HttpStatus","ApiForbiddenResponse","ApiInternalServerErrorResponse","ApiNotFoundResponse","ApiBadRequestResponse","ApiTooManyRequestsResponse","RequestMethod","Delete","Get","Patch","Post","Put","ApiBearerAuth","ApiSecurity","UseGuards","applyDecorators"],"mappings":"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"}
@@ -158,13 +158,13 @@ function getExample(format) {
158
158
  const startOfYearUTCDate = new Date(Date.UTC(new Date().getUTCFullYear(), 0, 1, 0, 0, 0, 0));
159
159
  switch (format) {
160
160
  case type_enum.EApiPropertyDateType.DATE: {
161
- return startOfYearUTCDate.toISOString().split("T")[0];
161
+ return startOfYearUTCDate.toISOString().split("T")[0] ?? "2025-01-01";
162
162
  }
163
163
  case type_enum.EApiPropertyDateType.DATE_TIME: {
164
164
  return startOfYearUTCDate.toISOString();
165
165
  }
166
166
  case type_enum.EApiPropertyDateType.TIME: {
167
- return startOfYearUTCDate.toISOString().split("T")[1].split(".")[0];
167
+ return startOfYearUTCDate.toISOString().split("T")[1]?.split(".")[0] ?? "00:00:00";
168
168
  }
169
169
  }
170
170
  }
@@ -1 +1 @@
1
- {"version":3,"file":"date.decorator.js","sources":["../../../../../../src/decorator/api/property/date.decorator.ts"],"sourcesContent":[null],"names":["applyDecorators","EApiPropertyDataType","ApiProperty","IsDate","IsOptional","IsArray","ArrayMinSize","ArrayMaxSize","ArrayNotEmpty","ApiResponseProperty","Expose","Exclude","Transform","EApiPropertyDateIdentifier","EApiPropertyDateType"],"mappings":"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"}
1
+ {"version":3,"file":"date.decorator.js","sources":["../../../../../../src/decorator/api/property/date.decorator.ts"],"sourcesContent":[null],"names":["applyDecorators","EApiPropertyDataType","ApiProperty","IsDate","IsOptional","IsArray","ArrayMinSize","ArrayMaxSize","ArrayNotEmpty","ApiResponseProperty","Expose","Exclude","Transform","EApiPropertyDateIdentifier","EApiPropertyDateType"],"mappings":"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"}
@@ -164,8 +164,8 @@ function validateOptions(properties) {
164
164
  if ((!properties.isResponse && (!properties.exampleValue || !properties.pattern)) || (properties.exampleValue && properties.pattern)) {
165
165
  const matches = /^\/(.*?)\/([gimuy]*)$/.exec(properties.pattern);
166
166
  if (matches) {
167
- const pattern = matches[string_constant.STRING_PROPERTY_API_INTERFACE_CONSTANT.REGEX_PATTERN_INDEX];
168
- const flags = matches[string_constant.STRING_PROPERTY_API_INTERFACE_CONSTANT.REGEX_FLAGS_INDEX];
167
+ const pattern = matches[string_constant.STRING_PROPERTY_API_INTERFACE_CONSTANT.REGEX_PATTERN_INDEX] ?? "";
168
+ const flags = matches[string_constant.STRING_PROPERTY_API_INTERFACE_CONSTANT.REGEX_FLAGS_INDEX] ?? "";
169
169
  const regex = new RegExp(pattern, flags);
170
170
  if (Array.isArray(properties.exampleValue)) {
171
171
  for (const example of properties.exampleValue) {
@@ -1 +1 @@
1
- {"version":3,"file":"string.decorator.js","sources":["../../../../../../src/decorator/api/property/string.decorator.ts"],"sourcesContent":[null],"names":["applyDecorators","EApiPropertyDataType","ApiProperty","EApiPropertyStringType","IsDate","Type","IsEmail","IsIP","STRING_PROPERTY_API_INTERFACE_CONSTANT","IsString","IsLowercase","Validate","IsRegularExpression","Matches","IsUppercase","IsUrl","IsUUID","IsOptional","IsArray","ArrayMinSize","ArrayMaxSize","ArrayNotEmpty","ApiResponseProperty","Expose","Exclude","Length"],"mappings":"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"}
1
+ {"version":3,"file":"string.decorator.js","sources":["../../../../../../src/decorator/api/property/string.decorator.ts"],"sourcesContent":[null],"names":["applyDecorators","EApiPropertyDataType","ApiProperty","EApiPropertyStringType","IsDate","Type","IsEmail","IsIP","STRING_PROPERTY_API_INTERFACE_CONSTANT","IsString","IsLowercase","Validate","IsRegularExpression","Matches","IsUppercase","IsUrl","IsUUID","IsOptional","IsArray","ArrayMinSize","ArrayMaxSize","ArrayNotEmpty","ApiResponseProperty","Expose","Exclude","Length"],"mappings":"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"}
@@ -50,9 +50,12 @@ var getPrimaryColumn_utility = require('../../utility/api/controller/get-primary
50
50
  var analize_utility = require('../../utility/dto/analize.utility.js');
51
51
 
52
52
  class ApiControllerFactory {
53
+ target;
54
+ properties;
53
55
  get targetPrototype() {
54
56
  return this.target.prototype;
55
57
  }
58
+ ENTITY;
56
59
  constructor(target, properties) {
57
60
  this.target = target;
58
61
  this.properties = properties;
@@ -1 +1 @@
1
- {"version":3,"file":"controller.factory.js","sources":["../../../../../src/factory/api/controller.factory.ts"],"sourcesContent":[null],"names":["GenerateEntityInformation","analyzeEntityMetadata","ErrorException","Controller","ApiTags","CONTROLLER_API_DECORATOR_CONSTANT","ApiControllerWriteMethod","ApiControllerApplyMetadata","ApiControllerApplyDecorators","ApiControllerWriteDtoSwagger","EApiRouteType","ApiControllerGetPrimaryColumn","ApiControllerTransformData","ApiControllerValidateRequest","ApiControllerHandleRequestRelations","DtoGenerate","EApiDtoType","plainToInstance","ApiControllerGetListTransformFilter","FUNCTION_API_DECORATOR_CONSTANT"],"mappings":"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"}
1
+ {"version":3,"file":"controller.factory.js","sources":["../../../../../src/factory/api/controller.factory.ts"],"sourcesContent":[null],"names":["GenerateEntityInformation","analyzeEntityMetadata","ErrorException","Controller","ApiTags","CONTROLLER_API_DECORATOR_CONSTANT","ApiControllerWriteMethod","ApiControllerApplyMetadata","ApiControllerApplyDecorators","ApiControllerWriteDtoSwagger","EApiRouteType","ApiControllerGetPrimaryColumn","ApiControllerTransformData","ApiControllerValidateRequest","ApiControllerHandleRequestRelations","DtoGenerate","EApiDtoType","plainToInstance","ApiControllerGetListTransformFilter","FUNCTION_API_DECORATOR_CONSTANT"],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ {
2
+ "type": "commonjs",
3
+ "dependencies": {
4
+ "@elsikora/pluralizer": "^2.0.0",
5
+ "reflect-metadata": "^0.2.2",
6
+ "rxjs": "^7.8.2"
7
+ }
8
+ }
@@ -26,9 +26,11 @@ function ApiControllerGetListTransformFilter(query, entityMetadata) {
26
26
  if (!fullKey.includes("["))
27
27
  continue;
28
28
  const [key, field] = fullKey.split("[");
29
+ if (!field)
30
+ continue;
29
31
  const cleanField = field.replace("]", "");
30
32
  if (cleanField === "value" || cleanField === "values") {
31
- const operation = query[`${key}[operator]`];
33
+ const operation = query[`${String(key)}[operator]`];
32
34
  const value = query[fullKey];
33
35
  if (!operation || !key || value === undefined || value === null)
34
36
  continue;
@@ -1 +1 @@
1
- {"version":3,"file":"transform-filter.utility.js","sources":["../../../../../../../src/utility/api/controller/get-list/transform-filter.utility.ts"],"sourcesContent":[null],"names":["PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT","EApiPropertyDescribeType","ApiControllerGetListTransformOperation"],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAUgB,SAAA,mCAAmC,CAAI,KAA0B,EAAE,cAA6B,EAAA;IAC/G,MAAM,MAAM,GAAwB,EAAE;IAEtC,KAAK,MAAM,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;AACzC,QAAA,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC;YAAE;AAE5B,QAAA,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,GAAkB,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC;QACtD,MAAM,UAAU,GAAW,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC;QAEjD,IAAI,UAAU,KAAK,OAAO,IAAI,UAAU,KAAK,QAAQ,EAAE;YACtD,MAAM,SAAS,GAAqB,KAAK,CAAC,GAAG,GAAG,CAAA,UAAA,CAAY,CAAqB;AAEjF,YAAA,MAAM,KAAK,GAAQ,KAAK,CAAC,OAAO,CAAC;AAEjC,YAAA,IAAI,CAAC,SAAS,IAAI,CAAC,GAAG,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI;gBAAE;AAEjE,YAAA,MAAM,MAAM,GAAoC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,MAA2B,KAAK,MAAM,CAAC,IAAI,IAAI,GAAG,CAAC;AAIhI,YAAA,IAAI,MAAM,IAAI,MAAM,CAAC,QAAQ,CAACA,kEAAwC,CAAC,sBAAsB,CAAC,CAAC,IAAI,KAAKC,yCAAwB,CAAC,QAAQ,EAAE;AAE1I,gBAAA,MAAM,CAAC,GAAc,CAAC,GAAG,EAAE,EAAE,EAAEC,iEAAsC,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE;;iBACnF;gBAEN,MAAM,CAAC,GAAc,CAAC,GAAGA,iEAAsC,CAAC,SAAS,EAAE,KAAK,CAAC;;;;AAKpF,IAAA,OAAO,MAAM;AACd;;;;"}
1
+ {"version":3,"file":"transform-filter.utility.js","sources":["../../../../../../../src/utility/api/controller/get-list/transform-filter.utility.ts"],"sourcesContent":[null],"names":["PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT","EApiPropertyDescribeType","ApiControllerGetListTransformOperation"],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAUgB,SAAA,mCAAmC,CAAI,KAA0B,EAAE,cAA6B,EAAA;IAC/G,MAAM,MAAM,GAAwB,EAAE;IAEtC,KAAK,MAAM,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;AACzC,QAAA,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC;YAAE;AAE5B,QAAA,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,GAAkB,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC;AAEtD,QAAA,IAAI,CAAC,KAAK;YAAE;QAEZ,MAAM,UAAU,GAAW,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC;QAEjD,IAAI,UAAU,KAAK,OAAO,IAAI,UAAU,KAAK,QAAQ,EAAE;YACtD,MAAM,SAAS,GAAqB,KAAK,CAAC,CAAA,EAAG,MAAM,CAAC,GAAG,CAAC,CAAY,UAAA,CAAA,CAAqB;AAEzF,YAAA,MAAM,KAAK,GAAQ,KAAK,CAAC,OAAO,CAAC;AAEjC,YAAA,IAAI,CAAC,SAAS,IAAI,CAAC,GAAG,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI;gBAAE;AAEjE,YAAA,MAAM,MAAM,GAAoC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,MAA2B,KAAK,MAAM,CAAC,IAAI,IAAI,GAAG,CAAC;AAIhI,YAAA,IAAI,MAAM,IAAI,MAAM,CAAC,QAAQ,CAACA,kEAAwC,CAAC,sBAAsB,CAAC,CAAC,IAAI,KAAKC,yCAAwB,CAAC,QAAQ,EAAE;AAE1I,gBAAA,MAAM,CAAC,GAAc,CAAC,GAAG,EAAE,EAAE,EAAEC,iEAAsC,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE;;iBACnF;gBAEN,MAAM,CAAC,GAAc,CAAC,GAAGA,iEAAsC,CAAC,SAAS,EAAE,KAAK,CAAC;;;;AAKpF,IAAA,OAAO,MAAM;AACd;;;;"}
@@ -53,7 +53,7 @@ function ApiControllerWriteDtoSwagger(target, entity, properties, method, routeC
53
53
  const metadata = storage.getMetadata(entityMetadata.name ?? "UnknownResource");
54
54
  if (metadata)
55
55
  for (const key of Object.keys(metadata)) {
56
- if (metadata[key]?.[propertyDescribe_constant.PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT.METADATA_PROPERTY_NAME] && metadata[key]?.[propertyDescribe_constant.PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT.METADATA_PROPERTY_NAME].type === desribeType_enum.EApiPropertyDescribeType.RELATION) {
56
+ if (metadata[key]?.[propertyDescribe_constant.PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT.METADATA_PROPERTY_NAME] && metadata[key]?.[propertyDescribe_constant.PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT.METADATA_PROPERTY_NAME]?.type === desribeType_enum.EApiPropertyDescribeType.RELATION) {
57
57
  const relationClass = class GeneratedDTO {
58
58
  constructor() {
59
59
  Object.defineProperty(this, "id", {
@@ -1 +1 @@
1
- {"version":3,"file":"write-dto-swagger.utility.js","sources":["../../../../../../src/utility/api/controller/write-dto-swagger.utility.ts"],"sourcesContent":[null],"names":["DECORATORS","DtoGenerate","EApiDtoType","MetadataStorage","PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT","EApiPropertyDescribeType","CamelCaseString"],"mappings":"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"}
1
+ {"version":3,"file":"write-dto-swagger.utility.js","sources":["../../../../../../src/utility/api/controller/write-dto-swagger.utility.ts"],"sourcesContent":[null],"names":["DECORATORS","DtoGenerate","EApiDtoType","MetadataStorage","PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT","EApiPropertyDescribeType","CamelCaseString"],"mappings":"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"}