@elsikora/nestjs-crud-automator 1.6.3-dev.1 → 1.6.4-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 (1091) hide show
  1. package/dist/cjs/class/api/service-base.class.js +25 -0
  2. package/dist/cjs/class/api/service-base.class.js.map +1 -0
  3. package/dist/cjs/class/metadata-storage.class.js +50 -0
  4. package/dist/cjs/class/metadata-storage.class.js.map +1 -0
  5. package/dist/cjs/class/utility/dto/property/factory/boolean.class.js +17 -0
  6. package/dist/cjs/class/utility/dto/property/factory/boolean.class.js.map +1 -0
  7. package/dist/cjs/class/utility/dto/property/factory/date.class.js +17 -0
  8. package/dist/cjs/class/utility/dto/property/factory/date.class.js.map +1 -0
  9. package/dist/cjs/class/utility/dto/property/factory/enum.class.js +17 -0
  10. package/dist/cjs/class/utility/dto/property/factory/enum.class.js.map +1 -0
  11. package/dist/cjs/class/utility/dto/property/factory/number.class.d.ts +7 -0
  12. package/dist/cjs/class/utility/dto/property/factory/number.class.js +34 -0
  13. package/dist/cjs/class/utility/dto/property/factory/number.class.js.map +1 -0
  14. package/dist/cjs/class/utility/dto/property/factory/object.class.js +18 -0
  15. package/dist/cjs/class/utility/dto/property/factory/object.class.js.map +1 -0
  16. package/dist/cjs/class/utility/dto/property/factory/relation.class.js +31 -0
  17. package/dist/cjs/class/utility/dto/property/factory/relation.class.js.map +1 -0
  18. package/dist/cjs/class/utility/dto/property/factory/string.class.js +17 -0
  19. package/dist/cjs/class/utility/dto/property/factory/string.class.js.map +1 -0
  20. package/dist/cjs/class/utility/dto/property/factory/uuid.class.js +13 -0
  21. package/dist/cjs/class/utility/dto/property/factory/uuid.class.js.map +1 -0
  22. package/dist/cjs/class/utility/dto/strategy/body.class.js +49 -0
  23. package/dist/cjs/class/utility/dto/strategy/body.class.js.map +1 -0
  24. package/dist/cjs/class/utility/dto/strategy/query.class.js +46 -0
  25. package/dist/cjs/class/utility/dto/strategy/query.class.js.map +1 -0
  26. package/dist/cjs/class/utility/dto/strategy/request.class.js +49 -0
  27. package/dist/cjs/class/utility/dto/strategy/request.class.js.map +1 -0
  28. package/dist/cjs/class/utility/dto/strategy/response.class.js +49 -0
  29. package/dist/cjs/class/utility/dto/strategy/response.class.js.map +1 -0
  30. package/dist/cjs/constant/date.constant.js +11 -0
  31. package/dist/cjs/constant/date.constant.js.map +1 -0
  32. package/dist/cjs/constant/decorator/api/controller.constant.js +9 -0
  33. package/dist/cjs/constant/decorator/api/controller.constant.js.map +1 -0
  34. package/dist/cjs/constant/decorator/api/function.constant.js +26 -0
  35. package/dist/cjs/constant/decorator/api/function.constant.js.map +1 -0
  36. package/dist/cjs/constant/decorator/api/property-describe.constant.js +9 -0
  37. package/dist/cjs/constant/decorator/api/property-describe.constant.js.map +1 -0
  38. package/dist/cjs/constant/dto/exception.constant.js +15 -0
  39. package/dist/cjs/constant/dto/exception.constant.js.map +1 -0
  40. package/dist/cjs/constant/dto/list.constant.js +17 -0
  41. package/dist/cjs/constant/dto/list.constant.js.map +1 -0
  42. package/dist/cjs/constant/dto/transformer-value.constant.js +17 -0
  43. package/dist/cjs/constant/dto/transformer-value.constant.js.map +1 -0
  44. package/dist/cjs/constant/factory/dto/get-list-query.constant.js +15 -0
  45. package/dist/cjs/constant/factory/dto/get-list-query.constant.js.map +1 -0
  46. package/dist/cjs/constant/interface/api/filter.constant.js +9 -0
  47. package/dist/cjs/constant/interface/api/filter.constant.js.map +1 -0
  48. package/dist/cjs/constant/interface/api/property/string.constant.js +13 -0
  49. package/dist/cjs/constant/interface/api/property/string.constant.js.map +1 -0
  50. package/dist/cjs/constant/interface/api/property/wallet.constant.js +13 -0
  51. package/dist/cjs/constant/interface/api/property/wallet.constant.js.map +1 -0
  52. package/dist/cjs/constant/number.constant.js +39 -0
  53. package/dist/cjs/constant/number.constant.js.map +1 -0
  54. package/dist/cjs/constant/utility/dto/constant.js +55 -0
  55. package/dist/cjs/constant/utility/dto/constant.js.map +1 -0
  56. package/dist/cjs/constant/utility/dto/generate.constant.js +11 -0
  57. package/dist/cjs/constant/utility/dto/generate.constant.js.map +1 -0
  58. package/dist/cjs/decorator/api/controller.decorator.js +18 -0
  59. package/dist/cjs/decorator/api/controller.decorator.js.map +1 -0
  60. package/dist/cjs/decorator/api/function/create.decorator.js +53 -0
  61. package/dist/cjs/decorator/api/function/create.decorator.js.map +1 -0
  62. package/dist/cjs/decorator/api/function/decorator.js +71 -0
  63. package/dist/cjs/decorator/api/function/decorator.js.map +1 -0
  64. package/dist/cjs/decorator/api/function/delete.decorator.js +71 -0
  65. package/dist/cjs/decorator/api/function/delete.decorator.js.map +1 -0
  66. package/dist/cjs/decorator/api/function/get-list.decorator.js +60 -0
  67. package/dist/cjs/decorator/api/function/get-list.decorator.js.map +1 -0
  68. package/dist/cjs/decorator/api/function/get-many.decorator.js +57 -0
  69. package/dist/cjs/decorator/api/function/get-many.decorator.js.map +1 -0
  70. package/dist/cjs/decorator/api/function/get.decorator.js +57 -0
  71. package/dist/cjs/decorator/api/function/get.decorator.js.map +1 -0
  72. package/dist/cjs/decorator/api/function/update.decorator.js +82 -0
  73. package/dist/cjs/decorator/api/function/update.decorator.js.map +1 -0
  74. package/dist/cjs/decorator/api/method.decorator.js +351 -0
  75. package/dist/cjs/decorator/api/method.decorator.js.map +1 -0
  76. package/dist/cjs/decorator/api/property/boolean.decorator.js +179 -0
  77. package/dist/cjs/decorator/api/property/boolean.decorator.js.map +1 -0
  78. package/dist/cjs/decorator/api/property/date.decorator.js +206 -0
  79. package/dist/cjs/decorator/api/property/date.decorator.js.map +1 -0
  80. package/dist/cjs/decorator/api/property/describe.decorator.js +31 -0
  81. package/dist/cjs/decorator/api/property/describe.decorator.js.map +1 -0
  82. package/dist/cjs/decorator/api/property/enum.decorator.js +105 -0
  83. package/dist/cjs/decorator/api/property/enum.decorator.js.map +1 -0
  84. package/dist/cjs/decorator/api/property/number.decorator.js +215 -0
  85. package/dist/cjs/decorator/api/property/number.decorator.js.map +1 -0
  86. package/dist/cjs/decorator/api/property/object.decorator.js +104 -0
  87. package/dist/cjs/decorator/api/property/object.decorator.js.map +1 -0
  88. package/dist/cjs/decorator/api/property/string.decorator.js +234 -0
  89. package/dist/cjs/decorator/api/property/string.decorator.js.map +1 -0
  90. package/dist/cjs/decorator/api/property/uuid.decorator.js +120 -0
  91. package/dist/cjs/decorator/api/property/uuid.decorator.js.map +1 -0
  92. package/dist/cjs/decorator/api/service.decorator.js +163 -0
  93. package/dist/cjs/decorator/api/service.decorator.js.map +1 -0
  94. package/dist/cjs/enum/decorator/api/action.enum.js +34 -0
  95. package/dist/cjs/enum/decorator/api/action.enum.js.map +1 -0
  96. package/dist/cjs/enum/decorator/api/authentication-type.enum.js +10 -0
  97. package/dist/cjs/enum/decorator/api/authentication-type.enum.js.map +1 -0
  98. package/dist/cjs/enum/decorator/api/controller/load-relations-strategy.enum.js +8 -0
  99. package/dist/cjs/enum/decorator/api/controller/load-relations-strategy.enum.js.map +1 -0
  100. package/dist/cjs/enum/decorator/api/controller/request-transformer-type.enum.js +8 -0
  101. package/dist/cjs/enum/decorator/api/controller/request-transformer-type.enum.js.map +1 -0
  102. package/dist/cjs/enum/decorator/api/dto-type.enum.js +10 -0
  103. package/dist/cjs/enum/decorator/api/dto-type.enum.js.map +1 -0
  104. package/dist/cjs/enum/decorator/api/function/type.enum.js +12 -0
  105. package/dist/cjs/enum/decorator/api/function/type.enum.js.map +1 -0
  106. package/dist/cjs/enum/decorator/api/property/data-type.enum.js +22 -0
  107. package/dist/cjs/enum/decorator/api/property/data-type.enum.js.map +1 -0
  108. package/dist/cjs/enum/decorator/api/property/date/identifier.enum.js +18 -0
  109. package/dist/cjs/enum/decorator/api/property/date/identifier.enum.js.map +1 -0
  110. package/dist/cjs/enum/decorator/api/property/date/type.enum.js +11 -0
  111. package/dist/cjs/enum/decorator/api/property/date/type.enum.js.map +1 -0
  112. package/dist/cjs/enum/decorator/api/property/desribe-type.enum.js +14 -0
  113. package/dist/cjs/enum/decorator/api/property/desribe-type.enum.js.map +1 -0
  114. package/dist/cjs/enum/decorator/api/property/number-type.enum.js +10 -0
  115. package/dist/cjs/enum/decorator/api/property/number-type.enum.js.map +1 -0
  116. package/dist/cjs/enum/decorator/api/property/string-type.enum.js +17 -0
  117. package/dist/cjs/enum/decorator/api/property/string-type.enum.js.map +1 -0
  118. package/dist/cjs/enum/decorator/api/route-type.enum.js +12 -0
  119. package/dist/cjs/enum/decorator/api/route-type.enum.js.map +1 -0
  120. package/dist/cjs/enum/exception.enum.js +34 -0
  121. package/dist/cjs/enum/exception.enum.js.map +1 -0
  122. package/dist/cjs/enum/filter-operation.enum.js +123 -0
  123. package/dist/cjs/enum/filter-operation.enum.js.map +1 -0
  124. package/dist/cjs/enum/filter-order-direction.enum.js +8 -0
  125. package/dist/cjs/enum/filter-order-direction.enum.js.map +1 -0
  126. package/dist/cjs/enum/utility/error-string-action.enum.js +106 -0
  127. package/dist/cjs/enum/utility/error-string-action.enum.js.map +1 -0
  128. package/dist/cjs/external/tslib/tslib.es6.js +38 -0
  129. package/dist/cjs/external/tslib/tslib.es6.js.map +1 -0
  130. package/dist/cjs/factory/api/controller.factory.js +215 -0
  131. package/dist/cjs/factory/api/controller.factory.js.map +1 -0
  132. package/dist/cjs/index.js +219 -0
  133. package/dist/cjs/index.js.map +1 -0
  134. package/dist/cjs/interceptor/correlation-id-response-body.interceptor.js +76 -0
  135. package/dist/cjs/interceptor/correlation-id-response-body.interceptor.js.map +1 -0
  136. package/dist/cjs/interface/class/dto/strategy.interface.d.ts +5 -0
  137. package/dist/cjs/type/class/metadata.type.d.ts +2 -0
  138. package/dist/cjs/utility/api/controller/apply-decorators.utility.js +83 -0
  139. package/dist/cjs/utility/api/controller/apply-decorators.utility.js.map +1 -0
  140. package/dist/cjs/utility/api/controller/apply-metadata.utility.js +78 -0
  141. package/dist/cjs/utility/api/controller/apply-metadata.utility.js.map +1 -0
  142. package/dist/cjs/utility/api/controller/get-list/transform-filter.utility.js +48 -0
  143. package/dist/cjs/utility/api/controller/get-list/transform-filter.utility.js.map +1 -0
  144. package/dist/cjs/utility/api/controller/get-list/transform-operation.utility.js +82 -0
  145. package/dist/cjs/utility/api/controller/get-list/transform-operation.utility.js.map +1 -0
  146. package/dist/cjs/utility/api/controller/get-method-name.utility.js +11 -0
  147. package/dist/cjs/utility/api/controller/get-method-name.utility.js.map +1 -0
  148. package/dist/cjs/utility/api/controller/get-primary-column.utility.js +15 -0
  149. package/dist/cjs/utility/api/controller/get-primary-column.utility.js.map +1 -0
  150. package/dist/cjs/utility/api/controller/handle-request-relations.utility.js +72 -0
  151. package/dist/cjs/utility/api/controller/handle-request-relations.utility.js.map +1 -0
  152. package/dist/cjs/utility/api/controller/transform-data.utility.js +149 -0
  153. package/dist/cjs/utility/api/controller/transform-data.utility.js.map +1 -0
  154. package/dist/cjs/utility/api/controller/validate-request.utility.js +18 -0
  155. package/dist/cjs/utility/api/controller/validate-request.utility.js.map +1 -0
  156. package/dist/cjs/utility/api/controller/write-dto-swagger.utility.js +79 -0
  157. package/dist/cjs/utility/api/controller/write-dto-swagger.utility.js.map +1 -0
  158. package/dist/cjs/utility/api/controller/write-method.utility.js +15 -0
  159. package/dist/cjs/utility/api/controller/write-method.utility.js.map +1 -0
  160. package/dist/cjs/utility/api/filter-order-by-from-entity.utility.js +48 -0
  161. package/dist/cjs/utility/api/filter-order-by-from-entity.utility.js.map +1 -0
  162. package/dist/cjs/utility/camel-case-string.utility.js +31 -0
  163. package/dist/cjs/utility/camel-case-string.utility.js.map +1 -0
  164. package/dist/cjs/utility/capitalize-string.utility.js +8 -0
  165. package/dist/cjs/utility/capitalize-string.utility.js.map +1 -0
  166. package/dist/cjs/utility/dto/analize.utility.js +27 -0
  167. package/dist/cjs/utility/dto/analize.utility.js.map +1 -0
  168. package/dist/cjs/utility/dto/build-decorator.utility.js +51 -0
  169. package/dist/cjs/utility/dto/build-decorator.utility.js.map +1 -0
  170. package/dist/cjs/utility/dto/generate-decorator.utility.js +15 -0
  171. package/dist/cjs/utility/dto/generate-decorator.utility.js.map +1 -0
  172. package/dist/cjs/utility/dto/generate-exception.utility.js +98 -0
  173. package/dist/cjs/utility/dto/generate-exception.utility.js.map +1 -0
  174. package/dist/cjs/utility/dto/generate-filter-decorator.utility.js +52 -0
  175. package/dist/cjs/utility/dto/generate-filter-decorator.utility.js.map +1 -0
  176. package/dist/cjs/utility/dto/generate-get-list-response.utility.js +99 -0
  177. package/dist/cjs/utility/dto/generate-get-list-response.utility.js.map +1 -0
  178. package/dist/cjs/utility/dto/generate-relation-response.utility.js +20 -0
  179. package/dist/cjs/utility/dto/generate-relation-response.utility.js.map +1 -0
  180. package/dist/cjs/utility/dto/generate.utility.js +133 -0
  181. package/dist/cjs/utility/dto/generate.utility.js.map +1 -0
  182. package/dist/cjs/utility/dto/get-decorator-config.utility.js +20 -0
  183. package/dist/cjs/utility/dto/get-decorator-config.utility.js.map +1 -0
  184. package/dist/cjs/utility/dto/get-get-list-query-base-class.utility.js +93 -0
  185. package/dist/cjs/utility/dto/get-get-list-query-base-class.utility.js.map +1 -0
  186. package/dist/cjs/utility/dto/handle-date-property.utility.js +35 -0
  187. package/dist/cjs/utility/dto/handle-date-property.utility.js.map +1 -0
  188. package/dist/cjs/utility/dto/is-property-exposed-for-guard.utility.js +15 -0
  189. package/dist/cjs/utility/dto/is-property-exposed-for-guard.utility.js.map +1 -0
  190. package/dist/cjs/utility/dto/is-property-should-be-marked.utility.js +46 -0
  191. package/dist/cjs/utility/dto/is-property-should-be-marked.utility.js.map +1 -0
  192. package/dist/cjs/utility/dto/is-should-be-generated.utility.js +41 -0
  193. package/dist/cjs/utility/dto/is-should-be-generated.utility.js.map +1 -0
  194. package/dist/cjs/utility/dto/validate-property-config.utility.js +6 -0
  195. package/dist/cjs/utility/dto/validate-property-config.utility.js.map +1 -0
  196. package/dist/cjs/utility/error-exception.utility.js +8 -0
  197. package/dist/cjs/utility/error-exception.utility.js.map +1 -0
  198. package/dist/cjs/utility/error-string.utility.js +8 -0
  199. package/dist/cjs/utility/error-string.utility.js.map +1 -0
  200. package/dist/cjs/utility/generate-entity-information.utility.js +78 -0
  201. package/dist/cjs/utility/generate-entity-information.utility.js.map +1 -0
  202. package/dist/cjs/utility/get-entity-columns.utility.js +22 -0
  203. package/dist/cjs/utility/get-entity-columns.utility.js.map +1 -0
  204. package/dist/cjs/utility/is-error-of-type.utility.js +68 -0
  205. package/dist/cjs/utility/is-error-of-type.utility.js.map +1 -0
  206. package/dist/cjs/validator/all-or-none-of-listed-properties.validator.js +23 -0
  207. package/dist/cjs/validator/all-or-none-of-listed-properties.validator.js.map +1 -0
  208. package/dist/cjs/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js +33 -0
  209. package/dist/cjs/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js.map +1 -0
  210. package/dist/cjs/validator/has-at-least-one-of-listed-properties.validator.js +29 -0
  211. package/dist/cjs/validator/has-at-least-one-of-listed-properties.validator.js.map +1 -0
  212. package/dist/cjs/validator/has-at-least-one-property.validator.js +17 -0
  213. package/dist/cjs/validator/has-at-least-one-property.validator.js.map +1 -0
  214. package/dist/cjs/validator/has-paired-custom-suffixes-fields.validator.js +214 -0
  215. package/dist/cjs/validator/has-paired-custom-suffixes-fields.validator.js.map +1 -0
  216. package/dist/cjs/validator/is-regular-expression.validator.js +25 -0
  217. package/dist/cjs/validator/is-regular-expression.validator.js.map +1 -0
  218. package/dist/cjs/validator/only-one-of-listed-properties.validator.js +28 -0
  219. package/dist/cjs/validator/only-one-of-listed-properties.validator.js.map +1 -0
  220. package/dist/package.json +12 -8
  221. package/package.json +12 -8
  222. package/dist/class/api/index.js +0 -18
  223. package/dist/class/api/index.js.map +0 -1
  224. package/dist/class/api/service-base.class.js +0 -32
  225. package/dist/class/api/service-base.class.js.map +0 -1
  226. package/dist/class/index.js +0 -20
  227. package/dist/class/index.js.map +0 -1
  228. package/dist/class/metadata-storage.class.js +0 -47
  229. package/dist/class/metadata-storage.class.js.map +0 -1
  230. package/dist/class/utility/dto/index.js +0 -19
  231. package/dist/class/utility/dto/index.js.map +0 -1
  232. package/dist/class/utility/dto/property/factory/boolean.class.js +0 -16
  233. package/dist/class/utility/dto/property/factory/boolean.class.js.map +0 -1
  234. package/dist/class/utility/dto/property/factory/date.class.js +0 -16
  235. package/dist/class/utility/dto/property/factory/date.class.js.map +0 -1
  236. package/dist/class/utility/dto/property/factory/enum.class.js +0 -16
  237. package/dist/class/utility/dto/property/factory/enum.class.js.map +0 -1
  238. package/dist/class/utility/dto/property/factory/index.js +0 -23
  239. package/dist/class/utility/dto/property/factory/index.js.map +0 -1
  240. package/dist/class/utility/dto/property/factory/number.class.d.ts +0 -7
  241. package/dist/class/utility/dto/property/factory/number.class.js +0 -18
  242. package/dist/class/utility/dto/property/factory/number.class.js.map +0 -1
  243. package/dist/class/utility/dto/property/factory/object.class.js +0 -17
  244. package/dist/class/utility/dto/property/factory/object.class.js.map +0 -1
  245. package/dist/class/utility/dto/property/factory/relation.class.js +0 -15
  246. package/dist/class/utility/dto/property/factory/relation.class.js.map +0 -1
  247. package/dist/class/utility/dto/property/factory/string.class.js +0 -16
  248. package/dist/class/utility/dto/property/factory/string.class.js.map +0 -1
  249. package/dist/class/utility/dto/property/factory/uuid.class.js +0 -12
  250. package/dist/class/utility/dto/property/factory/uuid.class.js.map +0 -1
  251. package/dist/class/utility/dto/property/index.js +0 -18
  252. package/dist/class/utility/dto/property/index.js.map +0 -1
  253. package/dist/class/utility/dto/strategy/body.class.js +0 -33
  254. package/dist/class/utility/dto/strategy/body.class.js.map +0 -1
  255. package/dist/class/utility/dto/strategy/index.js +0 -21
  256. package/dist/class/utility/dto/strategy/index.js.map +0 -1
  257. package/dist/class/utility/dto/strategy/query.class.js +0 -30
  258. package/dist/class/utility/dto/strategy/query.class.js.map +0 -1
  259. package/dist/class/utility/dto/strategy/request.class.js +0 -33
  260. package/dist/class/utility/dto/strategy/request.class.js.map +0 -1
  261. package/dist/class/utility/dto/strategy/response.class.js +0 -33
  262. package/dist/class/utility/dto/strategy/response.class.js.map +0 -1
  263. package/dist/class/utility/index.js +0 -18
  264. package/dist/class/utility/index.js.map +0 -1
  265. package/dist/constant/date.constant.js +0 -10
  266. package/dist/constant/date.constant.js.map +0 -1
  267. package/dist/constant/decorator/api/controller.constant.js +0 -8
  268. package/dist/constant/decorator/api/controller.constant.js.map +0 -1
  269. package/dist/constant/decorator/api/function.constant.js +0 -9
  270. package/dist/constant/decorator/api/function.constant.js.map +0 -1
  271. package/dist/constant/decorator/api/index.js +0 -20
  272. package/dist/constant/decorator/api/index.js.map +0 -1
  273. package/dist/constant/decorator/api/property-describe.constant.js +0 -8
  274. package/dist/constant/decorator/api/property-describe.constant.js.map +0 -1
  275. package/dist/constant/decorator/index.js +0 -18
  276. package/dist/constant/decorator/index.js.map +0 -1
  277. package/dist/constant/dto/exception.constant.js +0 -14
  278. package/dist/constant/dto/exception.constant.js.map +0 -1
  279. package/dist/constant/dto/index.js +0 -20
  280. package/dist/constant/dto/index.js.map +0 -1
  281. package/dist/constant/dto/list.constant.js +0 -14
  282. package/dist/constant/dto/list.constant.js.map +0 -1
  283. package/dist/constant/dto/transformer-value.constant.js +0 -16
  284. package/dist/constant/dto/transformer-value.constant.js.map +0 -1
  285. package/dist/constant/factory/dto/get-list-query.constant.js +0 -14
  286. package/dist/constant/factory/dto/get-list-query.constant.js.map +0 -1
  287. package/dist/constant/factory/dto/index.js +0 -18
  288. package/dist/constant/factory/dto/index.js.map +0 -1
  289. package/dist/constant/factory/index.js +0 -18
  290. package/dist/constant/factory/index.js.map +0 -1
  291. package/dist/constant/index.js +0 -23
  292. package/dist/constant/index.js.map +0 -1
  293. package/dist/constant/interface/api/filter.constant.js +0 -8
  294. package/dist/constant/interface/api/filter.constant.js.map +0 -1
  295. package/dist/constant/interface/api/index.js +0 -19
  296. package/dist/constant/interface/api/index.js.map +0 -1
  297. package/dist/constant/interface/api/property/index.js +0 -19
  298. package/dist/constant/interface/api/property/index.js.map +0 -1
  299. package/dist/constant/interface/api/property/string.constant.js +0 -12
  300. package/dist/constant/interface/api/property/string.constant.js.map +0 -1
  301. package/dist/constant/interface/api/property/wallet.constant.js +0 -12
  302. package/dist/constant/interface/api/property/wallet.constant.js.map +0 -1
  303. package/dist/constant/interface/index.js +0 -18
  304. package/dist/constant/interface/index.js.map +0 -1
  305. package/dist/constant/number.constant.js +0 -38
  306. package/dist/constant/number.constant.js.map +0 -1
  307. package/dist/constant/utility/dto/constant.js +0 -29
  308. package/dist/constant/utility/dto/constant.js.map +0 -1
  309. package/dist/constant/utility/dto/generate.constant.js +0 -10
  310. package/dist/constant/utility/dto/generate.constant.js.map +0 -1
  311. package/dist/decorator/api/controller.decorator.js +0 -17
  312. package/dist/decorator/api/controller.decorator.js.map +0 -1
  313. package/dist/decorator/api/function/create.decorator.js +0 -38
  314. package/dist/decorator/api/function/create.decorator.js.map +0 -1
  315. package/dist/decorator/api/function/decorator.js +0 -54
  316. package/dist/decorator/api/function/decorator.js.map +0 -1
  317. package/dist/decorator/api/function/delete.decorator.js +0 -56
  318. package/dist/decorator/api/function/delete.decorator.js.map +0 -1
  319. package/dist/decorator/api/function/get-list.decorator.js +0 -43
  320. package/dist/decorator/api/function/get-list.decorator.js.map +0 -1
  321. package/dist/decorator/api/function/get-many.decorator.js +0 -42
  322. package/dist/decorator/api/function/get-many.decorator.js.map +0 -1
  323. package/dist/decorator/api/function/get.decorator.js +0 -42
  324. package/dist/decorator/api/function/get.decorator.js.map +0 -1
  325. package/dist/decorator/api/function/index.js +0 -24
  326. package/dist/decorator/api/function/index.js.map +0 -1
  327. package/dist/decorator/api/function/update.decorator.js +0 -67
  328. package/dist/decorator/api/function/update.decorator.js.map +0 -1
  329. package/dist/decorator/api/index.js +0 -22
  330. package/dist/decorator/api/index.js.map +0 -1
  331. package/dist/decorator/api/method.decorator.js +0 -333
  332. package/dist/decorator/api/method.decorator.js.map +0 -1
  333. package/dist/decorator/api/property/boolean.decorator.js +0 -162
  334. package/dist/decorator/api/property/boolean.decorator.js.map +0 -1
  335. package/dist/decorator/api/property/date.decorator.js +0 -189
  336. package/dist/decorator/api/property/date.decorator.js.map +0 -1
  337. package/dist/decorator/api/property/describe.decorator.js +0 -12
  338. package/dist/decorator/api/property/describe.decorator.js.map +0 -1
  339. package/dist/decorator/api/property/enum.decorator.js +0 -103
  340. package/dist/decorator/api/property/enum.decorator.js.map +0 -1
  341. package/dist/decorator/api/property/index.js +0 -24
  342. package/dist/decorator/api/property/index.js.map +0 -1
  343. package/dist/decorator/api/property/number.decorator.js +0 -200
  344. package/dist/decorator/api/property/number.decorator.js.map +0 -1
  345. package/dist/decorator/api/property/object.decorator.js +0 -102
  346. package/dist/decorator/api/property/object.decorator.js.map +0 -1
  347. package/dist/decorator/api/property/string.decorator.js +0 -211
  348. package/dist/decorator/api/property/string.decorator.js.map +0 -1
  349. package/dist/decorator/api/property/uuid.decorator.js +0 -103
  350. package/dist/decorator/api/property/uuid.decorator.js.map +0 -1
  351. package/dist/decorator/api/service.decorator.js +0 -146
  352. package/dist/decorator/api/service.decorator.js.map +0 -1
  353. package/dist/decorator/index.js +0 -18
  354. package/dist/decorator/index.js.map +0 -1
  355. package/dist/enum/decorator/api/action.enum.js +0 -35
  356. package/dist/enum/decorator/api/action.enum.js.map +0 -1
  357. package/dist/enum/decorator/api/authentication-type.enum.js +0 -11
  358. package/dist/enum/decorator/api/authentication-type.enum.js.map +0 -1
  359. package/dist/enum/decorator/api/controller/index.js +0 -19
  360. package/dist/enum/decorator/api/controller/index.js.map +0 -1
  361. package/dist/enum/decorator/api/controller/load-relations-strategy.enum.js +0 -9
  362. package/dist/enum/decorator/api/controller/load-relations-strategy.enum.js.map +0 -1
  363. package/dist/enum/decorator/api/controller/request-transformer-type.enum.js +0 -9
  364. package/dist/enum/decorator/api/controller/request-transformer-type.enum.js.map +0 -1
  365. package/dist/enum/decorator/api/dto-type.enum.js +0 -11
  366. package/dist/enum/decorator/api/dto-type.enum.js.map +0 -1
  367. package/dist/enum/decorator/api/function/index.js +0 -18
  368. package/dist/enum/decorator/api/function/index.js.map +0 -1
  369. package/dist/enum/decorator/api/function/type.enum.js +0 -13
  370. package/dist/enum/decorator/api/function/type.enum.js.map +0 -1
  371. package/dist/enum/decorator/api/index.js +0 -24
  372. package/dist/enum/decorator/api/index.js.map +0 -1
  373. package/dist/enum/decorator/api/property/data-type.enum.js +0 -23
  374. package/dist/enum/decorator/api/property/data-type.enum.js.map +0 -1
  375. package/dist/enum/decorator/api/property/date/identifier.enum.js +0 -19
  376. package/dist/enum/decorator/api/property/date/identifier.enum.js.map +0 -1
  377. package/dist/enum/decorator/api/property/date/index.js +0 -19
  378. package/dist/enum/decorator/api/property/date/index.js.map +0 -1
  379. package/dist/enum/decorator/api/property/date/type.enum.js +0 -11
  380. package/dist/enum/decorator/api/property/date/type.enum.js.map +0 -1
  381. package/dist/enum/decorator/api/property/desribe-type.enum.js +0 -15
  382. package/dist/enum/decorator/api/property/desribe-type.enum.js.map +0 -1
  383. package/dist/enum/decorator/api/property/index.js +0 -22
  384. package/dist/enum/decorator/api/property/index.js.map +0 -1
  385. package/dist/enum/decorator/api/property/number-type.enum.js +0 -10
  386. package/dist/enum/decorator/api/property/number-type.enum.js.map +0 -1
  387. package/dist/enum/decorator/api/property/string-type.enum.js +0 -17
  388. package/dist/enum/decorator/api/property/string-type.enum.js.map +0 -1
  389. package/dist/enum/decorator/api/route-type.enum.js +0 -13
  390. package/dist/enum/decorator/api/route-type.enum.js.map +0 -1
  391. package/dist/enum/decorator/index.js +0 -18
  392. package/dist/enum/decorator/index.js.map +0 -1
  393. package/dist/enum/exception.enum.js +0 -35
  394. package/dist/enum/exception.enum.js.map +0 -1
  395. package/dist/enum/filter-operation.enum.js +0 -124
  396. package/dist/enum/filter-operation.enum.js.map +0 -1
  397. package/dist/enum/filter-order-direction.enum.js +0 -9
  398. package/dist/enum/filter-order-direction.enum.js.map +0 -1
  399. package/dist/enum/index.js +0 -21
  400. package/dist/enum/index.js.map +0 -1
  401. package/dist/enum/utility/error-string-action.enum.js +0 -107
  402. package/dist/enum/utility/error-string-action.enum.js.map +0 -1
  403. package/dist/enum/utility/index.js +0 -18
  404. package/dist/enum/utility/index.js.map +0 -1
  405. package/dist/factory/api/controller.factory.js +0 -181
  406. package/dist/factory/api/controller.factory.js.map +0 -1
  407. package/dist/factory/api/index.js +0 -18
  408. package/dist/factory/api/index.js.map +0 -1
  409. package/dist/factory/index.js +0 -18
  410. package/dist/factory/index.js.map +0 -1
  411. package/dist/index.js +0 -25
  412. package/dist/index.js.map +0 -1
  413. package/dist/interceptor/correlation-id-response-body.interceptor.js +0 -82
  414. package/dist/interceptor/correlation-id-response-body.interceptor.js.map +0 -1
  415. package/dist/interceptor/index.js +0 -18
  416. package/dist/interceptor/index.js.map +0 -1
  417. package/dist/interface/api-authentication-request.interface.js +0 -3
  418. package/dist/interface/api-authentication-request.interface.js.map +0 -1
  419. package/dist/interface/api-base-entity.interface.js +0 -3
  420. package/dist/interface/api-base-entity.interface.js.map +0 -1
  421. package/dist/interface/api-dto-validator.interface.js +0 -3
  422. package/dist/interface/api-dto-validator.interface.js.map +0 -1
  423. package/dist/interface/api-request-validator.interface.js +0 -3
  424. package/dist/interface/api-request-validator.interface.js.map +0 -1
  425. package/dist/interface/class/dto/index.js +0 -3
  426. package/dist/interface/class/dto/index.js.map +0 -1
  427. package/dist/interface/class/dto/strategy.interface.d.ts +0 -5
  428. package/dist/interface/class/dto/strategy.interface.js +0 -3
  429. package/dist/interface/class/dto/strategy.interface.js.map +0 -1
  430. package/dist/interface/class/index.js +0 -3
  431. package/dist/interface/class/index.js.map +0 -1
  432. package/dist/interface/class/metadata-entry.interface.js +0 -3
  433. package/dist/interface/class/metadata-entry.interface.js.map +0 -1
  434. package/dist/interface/decorator/api/controller/base.interface.js +0 -3
  435. package/dist/interface/decorator/api/controller/base.interface.js.map +0 -1
  436. package/dist/interface/decorator/api/controller/index.js +0 -3
  437. package/dist/interface/decorator/api/controller/index.js.map +0 -1
  438. package/dist/interface/decorator/api/controller/properties/index.js +0 -3
  439. package/dist/interface/decorator/api/controller/properties/index.js.map +0 -1
  440. package/dist/interface/decorator/api/controller/properties/route/authentication.interface.js +0 -3
  441. package/dist/interface/decorator/api/controller/properties/route/authentication.interface.js.map +0 -1
  442. package/dist/interface/decorator/api/controller/properties/route/auto-dto-config.interface.js +0 -3
  443. package/dist/interface/decorator/api/controller/properties/route/auto-dto-config.interface.js.map +0 -1
  444. package/dist/interface/decorator/api/controller/properties/route/base-request.interface.js +0 -3
  445. package/dist/interface/decorator/api/controller/properties/route/base-request.interface.js.map +0 -1
  446. package/dist/interface/decorator/api/controller/properties/route/base-response.interface.js +0 -3
  447. package/dist/interface/decorator/api/controller/properties/route/base-response.interface.js.map +0 -1
  448. package/dist/interface/decorator/api/controller/properties/route/base.interface.js +0 -3
  449. package/dist/interface/decorator/api/controller/properties/route/base.interface.js.map +0 -1
  450. package/dist/interface/decorator/api/controller/properties/route/index.js +0 -3
  451. package/dist/interface/decorator/api/controller/properties/route/index.js.map +0 -1
  452. package/dist/interface/decorator/api/controller/properties/route/with-auto-dto.interface.js +0 -3
  453. package/dist/interface/decorator/api/controller/properties/route/with-auto-dto.interface.js.map +0 -1
  454. package/dist/interface/decorator/api/controller/properties/route/with-dto.interface.js +0 -3
  455. package/dist/interface/decorator/api/controller/properties/route/with-dto.interface.js.map +0 -1
  456. package/dist/interface/decorator/api/controller/properties.interface.js +0 -3
  457. package/dist/interface/decorator/api/controller/properties.interface.js.map +0 -1
  458. package/dist/interface/decorator/api/function/create-executor-properties.interface.js +0 -3
  459. package/dist/interface/decorator/api/function/create-executor-properties.interface.js.map +0 -1
  460. package/dist/interface/decorator/api/function/delete-executor-properties.interface.js +0 -3
  461. package/dist/interface/decorator/api/function/delete-executor-properties.interface.js.map +0 -1
  462. package/dist/interface/decorator/api/function/get-executor-properties.interface.js +0 -3
  463. package/dist/interface/decorator/api/function/get-executor-properties.interface.js.map +0 -1
  464. package/dist/interface/decorator/api/function/get-list-executor-properties.interface.js +0 -3
  465. package/dist/interface/decorator/api/function/get-list-executor-properties.interface.js.map +0 -1
  466. package/dist/interface/decorator/api/function/get-many-executor-properties.interface.js +0 -3
  467. package/dist/interface/decorator/api/function/get-many-executor-properties.interface.js.map +0 -1
  468. package/dist/interface/decorator/api/function/index.js +0 -3
  469. package/dist/interface/decorator/api/function/index.js.map +0 -1
  470. package/dist/interface/decorator/api/function/properties.interface.js +0 -3
  471. package/dist/interface/decorator/api/function/properties.interface.js.map +0 -1
  472. package/dist/interface/decorator/api/function/update-executor-properties.interface.js +0 -3
  473. package/dist/interface/decorator/api/function/update-executor-properties.interface.js.map +0 -1
  474. package/dist/interface/decorator/api/get-list-response-result.interface.js +0 -3
  475. package/dist/interface/decorator/api/get-list-response-result.interface.js.map +0 -1
  476. package/dist/interface/decorator/api/index.js +0 -3
  477. package/dist/interface/decorator/api/index.js.map +0 -1
  478. package/dist/interface/decorator/api/method/index.js +0 -3
  479. package/dist/interface/decorator/api/method/index.js.map +0 -1
  480. package/dist/interface/decorator/api/method/properties.interface.js +0 -3
  481. package/dist/interface/decorator/api/method/properties.interface.js.map +0 -1
  482. package/dist/interface/decorator/api/method/throttler-properties.interface.js +0 -3
  483. package/dist/interface/decorator/api/method/throttler-properties.interface.js.map +0 -1
  484. package/dist/interface/decorator/api/response-type.interface.js +0 -3
  485. package/dist/interface/decorator/api/response-type.interface.js.map +0 -1
  486. package/dist/interface/decorator/index.js +0 -3
  487. package/dist/interface/decorator/index.js.map +0 -1
  488. package/dist/interface/dto-generate-factory.interface.js +0 -3
  489. package/dist/interface/dto-generate-factory.interface.js.map +0 -1
  490. package/dist/interface/entity/column.interface.js +0 -3
  491. package/dist/interface/entity/column.interface.js.map +0 -1
  492. package/dist/interface/entity/index.js +0 -3
  493. package/dist/interface/entity/index.js.map +0 -1
  494. package/dist/interface/entity/interface.js +0 -3
  495. package/dist/interface/entity/interface.js.map +0 -1
  496. package/dist/interface/index.js +0 -3
  497. package/dist/interface/index.js.map +0 -1
  498. package/dist/interface/utility/api/controller/index.js +0 -3
  499. package/dist/interface/utility/api/controller/index.js.map +0 -1
  500. package/dist/interface/utility/api/controller/primary-column.interface.js +0 -3
  501. package/dist/interface/utility/api/controller/primary-column.interface.js.map +0 -1
  502. package/dist/interface/utility/api/index.js +0 -3
  503. package/dist/interface/utility/api/index.js.map +0 -1
  504. package/dist/interface/utility/error-string-properties.interface.js +0 -3
  505. package/dist/interface/utility/error-string-properties.interface.js.map +0 -1
  506. package/dist/interface/utility/get-entity-columns-properties.interface.js +0 -3
  507. package/dist/interface/utility/get-entity-columns-properties.interface.js.map +0 -1
  508. package/dist/interface/utility/index.js +0 -3
  509. package/dist/interface/utility/index.js.map +0 -1
  510. package/dist/type/api-request-transformer.type.js +0 -3
  511. package/dist/type/api-request-transformer.type.js.map +0 -1
  512. package/dist/type/class/api-exception.type.js +0 -3
  513. package/dist/type/class/api-exception.type.js.map +0 -1
  514. package/dist/type/class/controller/index.js +0 -3
  515. package/dist/type/class/controller/index.js.map +0 -1
  516. package/dist/type/class/controller/method.type.js +0 -3
  517. package/dist/type/class/controller/method.type.js.map +0 -1
  518. package/dist/type/class/index.js +0 -3
  519. package/dist/type/class/index.js.map +0 -1
  520. package/dist/type/class/metadata.type.d.ts +0 -2
  521. package/dist/type/class/metadata.type.js +0 -3
  522. package/dist/type/class/metadata.type.js.map +0 -1
  523. package/dist/type/decorator/api/controller/constructor.type.js +0 -3
  524. package/dist/type/decorator/api/controller/constructor.type.js.map +0 -1
  525. package/dist/type/decorator/api/controller/get-list-query.type.js +0 -3
  526. package/dist/type/decorator/api/controller/get-list-query.type.js.map +0 -1
  527. package/dist/type/decorator/api/controller/index.js +0 -3
  528. package/dist/type/decorator/api/controller/index.js.map +0 -1
  529. package/dist/type/decorator/api/controller/properties/index.js +0 -3
  530. package/dist/type/decorator/api/controller/properties/index.js.map +0 -1
  531. package/dist/type/decorator/api/controller/properties/route/base-request-relations.type.js +0 -3
  532. package/dist/type/decorator/api/controller/properties/route/base-request-relations.type.js.map +0 -1
  533. package/dist/type/decorator/api/controller/properties/route/base-request-transformers.type.js +0 -3
  534. package/dist/type/decorator/api/controller/properties/route/base-request-transformers.type.js.map +0 -1
  535. package/dist/type/decorator/api/controller/properties/route/base-response-transformers.type.js +0 -3
  536. package/dist/type/decorator/api/controller/properties/route/base-response-transformers.type.js.map +0 -1
  537. package/dist/type/decorator/api/controller/properties/route/index.js +0 -3
  538. package/dist/type/decorator/api/controller/properties/route/index.js.map +0 -1
  539. package/dist/type/decorator/api/controller/properties-route.type.js +0 -3
  540. package/dist/type/decorator/api/controller/properties-route.type.js.map +0 -1
  541. package/dist/type/decorator/api/controller/transformer-config.type.js +0 -3
  542. package/dist/type/decorator/api/controller/transformer-config.type.js.map +0 -1
  543. package/dist/type/decorator/api/filter/allowed-types.type.js +0 -3
  544. package/dist/type/decorator/api/filter/allowed-types.type.js.map +0 -1
  545. package/dist/type/decorator/api/filter/extracted-allowed-types.type.js +0 -3
  546. package/dist/type/decorator/api/filter/extracted-allowed-types.type.js.map +0 -1
  547. package/dist/type/decorator/api/filter/field-selector.type.js +0 -3
  548. package/dist/type/decorator/api/filter/field-selector.type.js.map +0 -1
  549. package/dist/type/decorator/api/filter/index.js +0 -3
  550. package/dist/type/decorator/api/filter/index.js.map +0 -1
  551. package/dist/type/decorator/api/filter/order-by.type.js +0 -3
  552. package/dist/type/decorator/api/filter/order-by.type.js.map +0 -1
  553. package/dist/type/decorator/api/function/create-properties.type.js +0 -3
  554. package/dist/type/decorator/api/function/create-properties.type.js.map +0 -1
  555. package/dist/type/decorator/api/function/delete-criteria.type.js +0 -3
  556. package/dist/type/decorator/api/function/delete-criteria.type.js.map +0 -1
  557. package/dist/type/decorator/api/function/get-list-properties-where.type.js +0 -3
  558. package/dist/type/decorator/api/function/get-list-properties-where.type.js.map +0 -1
  559. package/dist/type/decorator/api/function/get-list-properties.type.js +0 -3
  560. package/dist/type/decorator/api/function/get-list-properties.type.js.map +0 -1
  561. package/dist/type/decorator/api/function/get-many.properties.js +0 -3
  562. package/dist/type/decorator/api/function/get-many.properties.js.map +0 -1
  563. package/dist/type/decorator/api/function/get-properties.type.js +0 -3
  564. package/dist/type/decorator/api/function/get-properties.type.js.map +0 -1
  565. package/dist/type/decorator/api/function/index.js +0 -3
  566. package/dist/type/decorator/api/function/index.js.map +0 -1
  567. package/dist/type/decorator/api/function/properties.type.js +0 -3
  568. package/dist/type/decorator/api/function/properties.type.js.map +0 -1
  569. package/dist/type/decorator/api/function/update-criteria.type.js +0 -3
  570. package/dist/type/decorator/api/function/update-criteria.type.js.map +0 -1
  571. package/dist/type/decorator/api/function/update-properties.type.js +0 -3
  572. package/dist/type/decorator/api/function/update-properties.type.js.map +0 -1
  573. package/dist/type/decorator/api/index.js +0 -3
  574. package/dist/type/decorator/api/index.js.map +0 -1
  575. package/dist/type/decorator/api/property/base/array/index.js +0 -3
  576. package/dist/type/decorator/api/property/base/array/index.js.map +0 -1
  577. package/dist/type/decorator/api/property/base/array/optional-properties.type.js +0 -3
  578. package/dist/type/decorator/api/property/base/array/optional-properties.type.js.map +0 -1
  579. package/dist/type/decorator/api/property/base/array/required-properties.type.js +0 -3
  580. package/dist/type/decorator/api/property/base/array/required-properties.type.js.map +0 -1
  581. package/dist/type/decorator/api/property/base/index.js +0 -3
  582. package/dist/type/decorator/api/property/base/index.js.map +0 -1
  583. package/dist/type/decorator/api/property/base/properties.type.js +0 -3
  584. package/dist/type/decorator/api/property/base/properties.type.js.map +0 -1
  585. package/dist/type/decorator/api/property/base/request-properties.type.js +0 -3
  586. package/dist/type/decorator/api/property/base/request-properties.type.js.map +0 -1
  587. package/dist/type/decorator/api/property/base/response-properties.type.js +0 -3
  588. package/dist/type/decorator/api/property/base/response-properties.type.js.map +0 -1
  589. package/dist/type/decorator/api/property/date-properties.type.js +0 -3
  590. package/dist/type/decorator/api/property/date-properties.type.js.map +0 -1
  591. package/dist/type/decorator/api/property/describe/array/index.js +0 -3
  592. package/dist/type/decorator/api/property/describe/array/index.js.map +0 -1
  593. package/dist/type/decorator/api/property/describe/array/optional-properties.type.js +0 -3
  594. package/dist/type/decorator/api/property/describe/array/optional-properties.type.js.map +0 -1
  595. package/dist/type/decorator/api/property/describe/array/required-properties.type.js +0 -3
  596. package/dist/type/decorator/api/property/describe/array/required-properties.type.js.map +0 -1
  597. package/dist/type/decorator/api/property/describe/base-properties.type.js +0 -3
  598. package/dist/type/decorator/api/property/describe/base-properties.type.js.map +0 -1
  599. package/dist/type/decorator/api/property/describe/boolean-properties.type.js +0 -3
  600. package/dist/type/decorator/api/property/describe/boolean-properties.type.js.map +0 -1
  601. package/dist/type/decorator/api/property/describe/date-properties.type.js +0 -3
  602. package/dist/type/decorator/api/property/describe/date-properties.type.js.map +0 -1
  603. package/dist/type/decorator/api/property/describe/dto/body-properties.type.js +0 -3
  604. package/dist/type/decorator/api/property/describe/dto/body-properties.type.js.map +0 -1
  605. package/dist/type/decorator/api/property/describe/dto/guard-properties.type.js +0 -3
  606. package/dist/type/decorator/api/property/describe/dto/guard-properties.type.js.map +0 -1
  607. package/dist/type/decorator/api/property/describe/dto/index.js +0 -3
  608. package/dist/type/decorator/api/property/describe/dto/index.js.map +0 -1
  609. package/dist/type/decorator/api/property/describe/dto/properties.type.js +0 -3
  610. package/dist/type/decorator/api/property/describe/dto/properties.type.js.map +0 -1
  611. package/dist/type/decorator/api/property/describe/dto/query/get-list-properties.type.js +0 -3
  612. package/dist/type/decorator/api/property/describe/dto/query/get-list-properties.type.js.map +0 -1
  613. package/dist/type/decorator/api/property/describe/dto/query/index.js +0 -3
  614. package/dist/type/decorator/api/property/describe/dto/query/index.js.map +0 -1
  615. package/dist/type/decorator/api/property/describe/dto/query/properties.type.js +0 -3
  616. package/dist/type/decorator/api/property/describe/dto/query/properties.type.js.map +0 -1
  617. package/dist/type/decorator/api/property/describe/dto/request-properties.type.js +0 -3
  618. package/dist/type/decorator/api/property/describe/dto/request-properties.type.js.map +0 -1
  619. package/dist/type/decorator/api/property/describe/dto/response-properties.type.js +0 -3
  620. package/dist/type/decorator/api/property/describe/dto/response-properties.type.js.map +0 -1
  621. package/dist/type/decorator/api/property/describe/enum-properties.type.js +0 -3
  622. package/dist/type/decorator/api/property/describe/enum-properties.type.js.map +0 -1
  623. package/dist/type/decorator/api/property/describe/example-properties.type.js +0 -3
  624. package/dist/type/decorator/api/property/describe/example-properties.type.js.map +0 -1
  625. package/dist/type/decorator/api/property/describe/index.js +0 -3
  626. package/dist/type/decorator/api/property/describe/index.js.map +0 -1
  627. package/dist/type/decorator/api/property/describe/number-properties.type.js +0 -3
  628. package/dist/type/decorator/api/property/describe/number-properties.type.js.map +0 -1
  629. package/dist/type/decorator/api/property/describe/object-properties.type.js +0 -3
  630. package/dist/type/decorator/api/property/describe/object-properties.type.js.map +0 -1
  631. package/dist/type/decorator/api/property/describe/properties/base-dto-properties.type.js +0 -3
  632. package/dist/type/decorator/api/property/describe/properties/base-dto-properties.type.js.map +0 -1
  633. package/dist/type/decorator/api/property/describe/properties/base-properties.type.js +0 -3
  634. package/dist/type/decorator/api/property/describe/properties/base-properties.type.js.map +0 -1
  635. package/dist/type/decorator/api/property/describe/properties/index.js +0 -3
  636. package/dist/type/decorator/api/property/describe/properties/index.js.map +0 -1
  637. package/dist/type/decorator/api/property/describe/properties.type.js +0 -3
  638. package/dist/type/decorator/api/property/describe/properties.type.js.map +0 -1
  639. package/dist/type/decorator/api/property/describe/relation-properties.type.js +0 -3
  640. package/dist/type/decorator/api/property/describe/relation-properties.type.js.map +0 -1
  641. package/dist/type/decorator/api/property/describe/string-properties.type.js +0 -3
  642. package/dist/type/decorator/api/property/describe/string-properties.type.js.map +0 -1
  643. package/dist/type/decorator/api/property/describe/uuid-properties.type.js +0 -3
  644. package/dist/type/decorator/api/property/describe/uuid-properties.type.js.map +0 -1
  645. package/dist/type/decorator/api/property/enum-properties.type.js +0 -3
  646. package/dist/type/decorator/api/property/enum-properties.type.js.map +0 -1
  647. package/dist/type/decorator/api/property/index.js +0 -3
  648. package/dist/type/decorator/api/property/index.js.map +0 -1
  649. package/dist/type/decorator/api/property/number-properties.type.js +0 -3
  650. package/dist/type/decorator/api/property/number-properties.type.js.map +0 -1
  651. package/dist/type/decorator/api/property/object-properties.type.js +0 -3
  652. package/dist/type/decorator/api/property/object-properties.type.js.map +0 -1
  653. package/dist/type/decorator/api/property/string-properties.type.js +0 -3
  654. package/dist/type/decorator/api/property/string-properties.type.js.map +0 -1
  655. package/dist/type/decorator/api/property/uuid-properties.type.js +0 -3
  656. package/dist/type/decorator/api/property/uuid-properties.type.js.map +0 -1
  657. package/dist/type/decorator/api/service/index.js +0 -3
  658. package/dist/type/decorator/api/service/index.js.map +0 -1
  659. package/dist/type/decorator/api/service/keys.type.js +0 -3
  660. package/dist/type/decorator/api/service/keys.type.js.map +0 -1
  661. package/dist/type/decorator/api/service/properties.type.js +0 -3
  662. package/dist/type/decorator/api/service/properties.type.js.map +0 -1
  663. package/dist/type/decorator/index.js +0 -3
  664. package/dist/type/decorator/index.js.map +0 -1
  665. package/dist/type/factory/api/controller/index.js +0 -3
  666. package/dist/type/factory/api/controller/index.js.map +0 -1
  667. package/dist/type/factory/api/controller/method-map.type.js +0 -3
  668. package/dist/type/factory/api/controller/method-map.type.js.map +0 -1
  669. package/dist/type/factory/api/controller/method-name-map.type.js +0 -3
  670. package/dist/type/factory/api/controller/method-name-map.type.js.map +0 -1
  671. package/dist/type/factory/api/controller/method-name.type.js +0 -3
  672. package/dist/type/factory/api/controller/method-name.type.js.map +0 -1
  673. package/dist/type/factory/api/controller/target-methods.type.js +0 -3
  674. package/dist/type/factory/api/controller/target-methods.type.js.map +0 -1
  675. package/dist/type/factory/api/index.js +0 -3
  676. package/dist/type/factory/api/index.js.map +0 -1
  677. package/dist/type/factory/index.js +0 -3
  678. package/dist/type/factory/index.js.map +0 -1
  679. package/dist/type/index.js +0 -3
  680. package/dist/type/index.js.map +0 -1
  681. package/dist/type/utility/api/controller/index.js +0 -3
  682. package/dist/type/utility/api/controller/index.js.map +0 -1
  683. package/dist/type/utility/api/controller/transform-data/data.type.js +0 -3
  684. package/dist/type/utility/api/controller/transform-data/data.type.js.map +0 -1
  685. package/dist/type/utility/api/controller/transform-data/index.js +0 -3
  686. package/dist/type/utility/api/controller/transform-data/index.js.map +0 -1
  687. package/dist/type/utility/api/controller/transform-data/is-validation-properties.type.js +0 -3
  688. package/dist/type/utility/api/controller/transform-data/is-validation-properties.type.js.map +0 -1
  689. package/dist/type/utility/api/controller/transform-data/object-to-transform.type.js +0 -3
  690. package/dist/type/utility/api/controller/transform-data/object-to-transform.type.js.map +0 -1
  691. package/dist/type/utility/api/index.js +0 -3
  692. package/dist/type/utility/api/index.js.map +0 -1
  693. package/dist/type/utility/capitalize-string.type.js +0 -3
  694. package/dist/type/utility/capitalize-string.type.js.map +0 -1
  695. package/dist/type/utility/date-keys.type.js +0 -3
  696. package/dist/type/utility/date-keys.type.js.map +0 -1
  697. package/dist/type/utility/date-range-keys.type.js +0 -3
  698. package/dist/type/utility/date-range-keys.type.js.map +0 -1
  699. package/dist/type/utility/dto/generate-allowed-combination.type.js +0 -3
  700. package/dist/type/utility/dto/generate-allowed-combination.type.js.map +0 -1
  701. package/dist/type/utility/dto/generate-is-allowed-combination.type.js +0 -3
  702. package/dist/type/utility/dto/generate-is-allowed-combination.type.js.map +0 -1
  703. package/dist/type/utility/dto/index.js +0 -3
  704. package/dist/type/utility/dto/index.js.map +0 -1
  705. package/dist/type/utility/filter-keys.type.js +0 -3
  706. package/dist/type/utility/filter-keys.type.js.map +0 -1
  707. package/dist/type/utility/index.js +0 -3
  708. package/dist/type/utility/index.js.map +0 -1
  709. package/dist/type/utility/non-date-keys.type.js +0 -3
  710. package/dist/type/utility/non-date-keys.type.js.map +0 -1
  711. package/dist/utility/api/controller/apply-decorators.utility.js +0 -66
  712. package/dist/utility/api/controller/apply-decorators.utility.js.map +0 -1
  713. package/dist/utility/api/controller/apply-metadata.utility.js +0 -45
  714. package/dist/utility/api/controller/apply-metadata.utility.js.map +0 -1
  715. package/dist/utility/api/controller/get-list/index.js +0 -19
  716. package/dist/utility/api/controller/get-list/index.js.map +0 -1
  717. package/dist/utility/api/controller/get-list/transform-filter.utility.js +0 -30
  718. package/dist/utility/api/controller/get-list/transform-filter.utility.js.map +0 -1
  719. package/dist/utility/api/controller/get-list/transform-operation.utility.js +0 -80
  720. package/dist/utility/api/controller/get-list/transform-operation.utility.js.map +0 -1
  721. package/dist/utility/api/controller/get-method-name.utility.js +0 -8
  722. package/dist/utility/api/controller/get-method-name.utility.js.map +0 -1
  723. package/dist/utility/api/controller/get-primary-column.utility.js +0 -14
  724. package/dist/utility/api/controller/get-primary-column.utility.js.map +0 -1
  725. package/dist/utility/api/controller/handle-request-relations.utility.js +0 -54
  726. package/dist/utility/api/controller/handle-request-relations.utility.js.map +0 -1
  727. package/dist/utility/api/controller/index.js +0 -26
  728. package/dist/utility/api/controller/index.js.map +0 -1
  729. package/dist/utility/api/controller/transform-data.utility.js +0 -132
  730. package/dist/utility/api/controller/transform-data.utility.js.map +0 -1
  731. package/dist/utility/api/controller/validate-request.utility.js +0 -16
  732. package/dist/utility/api/controller/validate-request.utility.js.map +0 -1
  733. package/dist/utility/api/controller/write-dto-swagger.utility.js +0 -45
  734. package/dist/utility/api/controller/write-dto-swagger.utility.js.map +0 -1
  735. package/dist/utility/api/controller/write-method.utility.js +0 -13
  736. package/dist/utility/api/controller/write-method.utility.js.map +0 -1
  737. package/dist/utility/api/filter-order-by-from-entity.utility.js +0 -44
  738. package/dist/utility/api/filter-order-by-from-entity.utility.js.map +0 -1
  739. package/dist/utility/api/index.js +0 -19
  740. package/dist/utility/api/index.js.map +0 -1
  741. package/dist/utility/camel-case-string.utility.js +0 -30
  742. package/dist/utility/camel-case-string.utility.js.map +0 -1
  743. package/dist/utility/capitalize-string.utility.js +0 -7
  744. package/dist/utility/capitalize-string.utility.js.map +0 -1
  745. package/dist/utility/dto/analize.utility.js +0 -10
  746. package/dist/utility/dto/analize.utility.js.map +0 -1
  747. package/dist/utility/dto/build-decorator.utility.js +0 -34
  748. package/dist/utility/dto/build-decorator.utility.js.map +0 -1
  749. package/dist/utility/dto/generate-decorator.utility.js +0 -13
  750. package/dist/utility/dto/generate-decorator.utility.js.map +0 -1
  751. package/dist/utility/dto/generate-exception.utility.js +0 -87
  752. package/dist/utility/dto/generate-exception.utility.js.map +0 -1
  753. package/dist/utility/dto/generate-filter-decorator.utility.js +0 -35
  754. package/dist/utility/dto/generate-filter-decorator.utility.js.map +0 -1
  755. package/dist/utility/dto/generate-get-list-response.utility.js +0 -97
  756. package/dist/utility/dto/generate-get-list-response.utility.js.map +0 -1
  757. package/dist/utility/dto/generate-relation-response.utility.js +0 -27
  758. package/dist/utility/dto/generate-relation-response.utility.js.map +0 -1
  759. package/dist/utility/dto/generate.utility.js +0 -115
  760. package/dist/utility/dto/generate.utility.js.map +0 -1
  761. package/dist/utility/dto/get-decorator-config.utility.js +0 -21
  762. package/dist/utility/dto/get-decorator-config.utility.js.map +0 -1
  763. package/dist/utility/dto/get-get-list-query-base-class.utility.js +0 -83
  764. package/dist/utility/dto/get-get-list-query-base-class.utility.js.map +0 -1
  765. package/dist/utility/dto/handle-date-property.utility.js +0 -19
  766. package/dist/utility/dto/handle-date-property.utility.js.map +0 -1
  767. package/dist/utility/dto/index.js +0 -29
  768. package/dist/utility/dto/index.js.map +0 -1
  769. package/dist/utility/dto/is-property-exposed-for-guard.utility.js +0 -14
  770. package/dist/utility/dto/is-property-exposed-for-guard.utility.js.map +0 -1
  771. package/dist/utility/dto/is-property-should-be-marked.utility.js +0 -29
  772. package/dist/utility/dto/is-property-should-be-marked.utility.js.map +0 -1
  773. package/dist/utility/dto/is-should-be-generated.utility.js +0 -25
  774. package/dist/utility/dto/is-should-be-generated.utility.js.map +0 -1
  775. package/dist/utility/dto/validate-property-config.utility.js +0 -6
  776. package/dist/utility/dto/validate-property-config.utility.js.map +0 -1
  777. package/dist/utility/error-exception.utility.js +0 -7
  778. package/dist/utility/error-exception.utility.js.map +0 -1
  779. package/dist/utility/error-string.utility.js +0 -7
  780. package/dist/utility/error-string.utility.js.map +0 -1
  781. package/dist/utility/generate-entity-information.utility.js +0 -60
  782. package/dist/utility/generate-entity-information.utility.js.map +0 -1
  783. package/dist/utility/get-entity-columns.utility.js +0 -20
  784. package/dist/utility/get-entity-columns.utility.js.map +0 -1
  785. package/dist/utility/index.js +0 -26
  786. package/dist/utility/index.js.map +0 -1
  787. package/dist/utility/is-error-of-type.utility.js +0 -51
  788. package/dist/utility/is-error-of-type.utility.js.map +0 -1
  789. package/dist/validator/all-or-none-of-listed-properties.validator.js +0 -29
  790. package/dist/validator/all-or-none-of-listed-properties.validator.js.map +0 -1
  791. package/dist/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js +0 -39
  792. package/dist/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js.map +0 -1
  793. package/dist/validator/has-at-least-one-of-listed-properties.validator.js +0 -35
  794. package/dist/validator/has-at-least-one-of-listed-properties.validator.js.map +0 -1
  795. package/dist/validator/has-at-least-one-property.validator.js +0 -23
  796. package/dist/validator/has-at-least-one-property.validator.js.map +0 -1
  797. package/dist/validator/has-paired-custom-suffixes-fields.validator.js +0 -220
  798. package/dist/validator/has-paired-custom-suffixes-fields.validator.js.map +0 -1
  799. package/dist/validator/index.js +0 -23
  800. package/dist/validator/index.js.map +0 -1
  801. package/dist/validator/is-regular-expression.validator.js +0 -31
  802. package/dist/validator/is-regular-expression.validator.js.map +0 -1
  803. package/dist/validator/only-one-of-listed-properties.validator.js +0 -34
  804. package/dist/validator/only-one-of-listed-properties.validator.js.map +0 -1
  805. /package/dist/{class → cjs/class}/api/index.d.ts +0 -0
  806. /package/dist/{class → cjs/class}/api/service-base.class.d.ts +0 -0
  807. /package/dist/{class → cjs/class}/index.d.ts +0 -0
  808. /package/dist/{class → cjs/class}/metadata-storage.class.d.ts +0 -0
  809. /package/dist/{class → cjs/class}/utility/dto/index.d.ts +0 -0
  810. /package/dist/{class → cjs/class}/utility/dto/property/factory/boolean.class.d.ts +0 -0
  811. /package/dist/{class → cjs/class}/utility/dto/property/factory/date.class.d.ts +0 -0
  812. /package/dist/{class → cjs/class}/utility/dto/property/factory/enum.class.d.ts +0 -0
  813. /package/dist/{class → cjs/class}/utility/dto/property/factory/index.d.ts +0 -0
  814. /package/dist/{class → cjs/class}/utility/dto/property/factory/object.class.d.ts +0 -0
  815. /package/dist/{class → cjs/class}/utility/dto/property/factory/relation.class.d.ts +0 -0
  816. /package/dist/{class → cjs/class}/utility/dto/property/factory/string.class.d.ts +0 -0
  817. /package/dist/{class → cjs/class}/utility/dto/property/factory/uuid.class.d.ts +0 -0
  818. /package/dist/{class → cjs/class}/utility/dto/property/index.d.ts +0 -0
  819. /package/dist/{class → cjs/class}/utility/dto/strategy/body.class.d.ts +0 -0
  820. /package/dist/{class → cjs/class}/utility/dto/strategy/index.d.ts +0 -0
  821. /package/dist/{class → cjs/class}/utility/dto/strategy/query.class.d.ts +0 -0
  822. /package/dist/{class → cjs/class}/utility/dto/strategy/request.class.d.ts +0 -0
  823. /package/dist/{class → cjs/class}/utility/dto/strategy/response.class.d.ts +0 -0
  824. /package/dist/{class → cjs/class}/utility/index.d.ts +0 -0
  825. /package/dist/{constant → cjs/constant}/date.constant.d.ts +0 -0
  826. /package/dist/{constant → cjs/constant}/decorator/api/controller.constant.d.ts +0 -0
  827. /package/dist/{constant → cjs/constant}/decorator/api/function.constant.d.ts +0 -0
  828. /package/dist/{constant → cjs/constant}/decorator/api/index.d.ts +0 -0
  829. /package/dist/{constant → cjs/constant}/decorator/api/property-describe.constant.d.ts +0 -0
  830. /package/dist/{constant → cjs/constant}/decorator/index.d.ts +0 -0
  831. /package/dist/{constant → cjs/constant}/dto/exception.constant.d.ts +0 -0
  832. /package/dist/{constant → cjs/constant}/dto/index.d.ts +0 -0
  833. /package/dist/{constant → cjs/constant}/dto/list.constant.d.ts +0 -0
  834. /package/dist/{constant → cjs/constant}/dto/transformer-value.constant.d.ts +0 -0
  835. /package/dist/{constant → cjs/constant}/factory/dto/get-list-query.constant.d.ts +0 -0
  836. /package/dist/{constant → cjs/constant}/factory/dto/index.d.ts +0 -0
  837. /package/dist/{constant → cjs/constant}/factory/index.d.ts +0 -0
  838. /package/dist/{constant → cjs/constant}/index.d.ts +0 -0
  839. /package/dist/{constant → cjs/constant}/interface/api/filter.constant.d.ts +0 -0
  840. /package/dist/{constant → cjs/constant}/interface/api/index.d.ts +0 -0
  841. /package/dist/{constant → cjs/constant}/interface/api/property/index.d.ts +0 -0
  842. /package/dist/{constant → cjs/constant}/interface/api/property/string.constant.d.ts +0 -0
  843. /package/dist/{constant → cjs/constant}/interface/api/property/wallet.constant.d.ts +0 -0
  844. /package/dist/{constant → cjs/constant}/interface/index.d.ts +0 -0
  845. /package/dist/{constant → cjs/constant}/number.constant.d.ts +0 -0
  846. /package/dist/{constant → cjs/constant}/utility/dto/constant.d.ts +0 -0
  847. /package/dist/{constant → cjs/constant}/utility/dto/generate.constant.d.ts +0 -0
  848. /package/dist/{decorator → cjs/decorator}/api/controller.decorator.d.ts +0 -0
  849. /package/dist/{decorator → cjs/decorator}/api/function/create.decorator.d.ts +0 -0
  850. /package/dist/{decorator → cjs/decorator}/api/function/decorator.d.ts +0 -0
  851. /package/dist/{decorator → cjs/decorator}/api/function/delete.decorator.d.ts +0 -0
  852. /package/dist/{decorator → cjs/decorator}/api/function/get-list.decorator.d.ts +0 -0
  853. /package/dist/{decorator → cjs/decorator}/api/function/get-many.decorator.d.ts +0 -0
  854. /package/dist/{decorator → cjs/decorator}/api/function/get.decorator.d.ts +0 -0
  855. /package/dist/{decorator → cjs/decorator}/api/function/index.d.ts +0 -0
  856. /package/dist/{decorator → cjs/decorator}/api/function/update.decorator.d.ts +0 -0
  857. /package/dist/{decorator → cjs/decorator}/api/index.d.ts +0 -0
  858. /package/dist/{decorator → cjs/decorator}/api/method.decorator.d.ts +0 -0
  859. /package/dist/{decorator → cjs/decorator}/api/property/boolean.decorator.d.ts +0 -0
  860. /package/dist/{decorator → cjs/decorator}/api/property/date.decorator.d.ts +0 -0
  861. /package/dist/{decorator → cjs/decorator}/api/property/describe.decorator.d.ts +0 -0
  862. /package/dist/{decorator → cjs/decorator}/api/property/enum.decorator.d.ts +0 -0
  863. /package/dist/{decorator → cjs/decorator}/api/property/index.d.ts +0 -0
  864. /package/dist/{decorator → cjs/decorator}/api/property/number.decorator.d.ts +0 -0
  865. /package/dist/{decorator → cjs/decorator}/api/property/object.decorator.d.ts +0 -0
  866. /package/dist/{decorator → cjs/decorator}/api/property/string.decorator.d.ts +0 -0
  867. /package/dist/{decorator → cjs/decorator}/api/property/uuid.decorator.d.ts +0 -0
  868. /package/dist/{decorator → cjs/decorator}/api/service.decorator.d.ts +0 -0
  869. /package/dist/{decorator → cjs/decorator}/index.d.ts +0 -0
  870. /package/dist/{enum → cjs/enum}/decorator/api/action.enum.d.ts +0 -0
  871. /package/dist/{enum → cjs/enum}/decorator/api/authentication-type.enum.d.ts +0 -0
  872. /package/dist/{enum → cjs/enum}/decorator/api/controller/index.d.ts +0 -0
  873. /package/dist/{enum → cjs/enum}/decorator/api/controller/load-relations-strategy.enum.d.ts +0 -0
  874. /package/dist/{enum → cjs/enum}/decorator/api/controller/request-transformer-type.enum.d.ts +0 -0
  875. /package/dist/{enum → cjs/enum}/decorator/api/dto-type.enum.d.ts +0 -0
  876. /package/dist/{enum → cjs/enum}/decorator/api/function/index.d.ts +0 -0
  877. /package/dist/{enum → cjs/enum}/decorator/api/function/type.enum.d.ts +0 -0
  878. /package/dist/{enum → cjs/enum}/decorator/api/index.d.ts +0 -0
  879. /package/dist/{enum → cjs/enum}/decorator/api/property/data-type.enum.d.ts +0 -0
  880. /package/dist/{enum → cjs/enum}/decorator/api/property/date/identifier.enum.d.ts +0 -0
  881. /package/dist/{enum → cjs/enum}/decorator/api/property/date/index.d.ts +0 -0
  882. /package/dist/{enum → cjs/enum}/decorator/api/property/date/type.enum.d.ts +0 -0
  883. /package/dist/{enum → cjs/enum}/decorator/api/property/desribe-type.enum.d.ts +0 -0
  884. /package/dist/{enum → cjs/enum}/decorator/api/property/index.d.ts +0 -0
  885. /package/dist/{enum → cjs/enum}/decorator/api/property/number-type.enum.d.ts +0 -0
  886. /package/dist/{enum → cjs/enum}/decorator/api/property/string-type.enum.d.ts +0 -0
  887. /package/dist/{enum → cjs/enum}/decorator/api/route-type.enum.d.ts +0 -0
  888. /package/dist/{enum → cjs/enum}/decorator/index.d.ts +0 -0
  889. /package/dist/{enum → cjs/enum}/exception.enum.d.ts +0 -0
  890. /package/dist/{enum → cjs/enum}/filter-operation.enum.d.ts +0 -0
  891. /package/dist/{enum → cjs/enum}/filter-order-direction.enum.d.ts +0 -0
  892. /package/dist/{enum → cjs/enum}/index.d.ts +0 -0
  893. /package/dist/{enum → cjs/enum}/utility/error-string-action.enum.d.ts +0 -0
  894. /package/dist/{enum → cjs/enum}/utility/index.d.ts +0 -0
  895. /package/dist/{factory → cjs/factory}/api/controller.factory.d.ts +0 -0
  896. /package/dist/{factory → cjs/factory}/api/index.d.ts +0 -0
  897. /package/dist/{factory → cjs/factory}/index.d.ts +0 -0
  898. /package/dist/{index.d.ts → cjs/index.d.ts} +0 -0
  899. /package/dist/{interceptor → cjs/interceptor}/correlation-id-response-body.interceptor.d.ts +0 -0
  900. /package/dist/{interceptor → cjs/interceptor}/index.d.ts +0 -0
  901. /package/dist/{interface → cjs/interface}/api-authentication-request.interface.d.ts +0 -0
  902. /package/dist/{interface → cjs/interface}/api-base-entity.interface.d.ts +0 -0
  903. /package/dist/{interface → cjs/interface}/api-dto-validator.interface.d.ts +0 -0
  904. /package/dist/{interface → cjs/interface}/api-request-validator.interface.d.ts +0 -0
  905. /package/dist/{interface → cjs/interface}/class/dto/index.d.ts +0 -0
  906. /package/dist/{interface → cjs/interface}/class/index.d.ts +0 -0
  907. /package/dist/{interface → cjs/interface}/class/metadata-entry.interface.d.ts +0 -0
  908. /package/dist/{interface → cjs/interface}/decorator/api/controller/base.interface.d.ts +0 -0
  909. /package/dist/{interface → cjs/interface}/decorator/api/controller/index.d.ts +0 -0
  910. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/index.d.ts +0 -0
  911. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/authentication.interface.d.ts +0 -0
  912. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/auto-dto-config.interface.d.ts +0 -0
  913. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/base-request.interface.d.ts +0 -0
  914. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/base-response.interface.d.ts +0 -0
  915. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/base.interface.d.ts +0 -0
  916. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/index.d.ts +0 -0
  917. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/with-auto-dto.interface.d.ts +0 -0
  918. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties/route/with-dto.interface.d.ts +0 -0
  919. /package/dist/{interface → cjs/interface}/decorator/api/controller/properties.interface.d.ts +0 -0
  920. /package/dist/{interface → cjs/interface}/decorator/api/function/create-executor-properties.interface.d.ts +0 -0
  921. /package/dist/{interface → cjs/interface}/decorator/api/function/delete-executor-properties.interface.d.ts +0 -0
  922. /package/dist/{interface → cjs/interface}/decorator/api/function/get-executor-properties.interface.d.ts +0 -0
  923. /package/dist/{interface → cjs/interface}/decorator/api/function/get-list-executor-properties.interface.d.ts +0 -0
  924. /package/dist/{interface → cjs/interface}/decorator/api/function/get-many-executor-properties.interface.d.ts +0 -0
  925. /package/dist/{interface → cjs/interface}/decorator/api/function/index.d.ts +0 -0
  926. /package/dist/{interface → cjs/interface}/decorator/api/function/properties.interface.d.ts +0 -0
  927. /package/dist/{interface → cjs/interface}/decorator/api/function/update-executor-properties.interface.d.ts +0 -0
  928. /package/dist/{interface → cjs/interface}/decorator/api/get-list-response-result.interface.d.ts +0 -0
  929. /package/dist/{interface → cjs/interface}/decorator/api/index.d.ts +0 -0
  930. /package/dist/{interface → cjs/interface}/decorator/api/method/index.d.ts +0 -0
  931. /package/dist/{interface → cjs/interface}/decorator/api/method/properties.interface.d.ts +0 -0
  932. /package/dist/{interface → cjs/interface}/decorator/api/method/throttler-properties.interface.d.ts +0 -0
  933. /package/dist/{interface → cjs/interface}/decorator/api/response-type.interface.d.ts +0 -0
  934. /package/dist/{interface → cjs/interface}/decorator/index.d.ts +0 -0
  935. /package/dist/{interface → cjs/interface}/dto-generate-factory.interface.d.ts +0 -0
  936. /package/dist/{interface → cjs/interface}/entity/column.interface.d.ts +0 -0
  937. /package/dist/{interface → cjs/interface}/entity/index.d.ts +0 -0
  938. /package/dist/{interface → cjs/interface}/entity/interface.d.ts +0 -0
  939. /package/dist/{interface → cjs/interface}/index.d.ts +0 -0
  940. /package/dist/{interface → cjs/interface}/utility/api/controller/index.d.ts +0 -0
  941. /package/dist/{interface → cjs/interface}/utility/api/controller/primary-column.interface.d.ts +0 -0
  942. /package/dist/{interface → cjs/interface}/utility/api/index.d.ts +0 -0
  943. /package/dist/{interface → cjs/interface}/utility/error-string-properties.interface.d.ts +0 -0
  944. /package/dist/{interface → cjs/interface}/utility/get-entity-columns-properties.interface.d.ts +0 -0
  945. /package/dist/{interface → cjs/interface}/utility/index.d.ts +0 -0
  946. /package/dist/{type → cjs/type}/api-request-transformer.type.d.ts +0 -0
  947. /package/dist/{type → cjs/type}/class/api-exception.type.d.ts +0 -0
  948. /package/dist/{type → cjs/type}/class/controller/index.d.ts +0 -0
  949. /package/dist/{type → cjs/type}/class/controller/method.type.d.ts +0 -0
  950. /package/dist/{type → cjs/type}/class/index.d.ts +0 -0
  951. /package/dist/{type → cjs/type}/decorator/api/controller/constructor.type.d.ts +0 -0
  952. /package/dist/{type → cjs/type}/decorator/api/controller/get-list-query.type.d.ts +0 -0
  953. /package/dist/{type → cjs/type}/decorator/api/controller/index.d.ts +0 -0
  954. /package/dist/{type → cjs/type}/decorator/api/controller/properties/index.d.ts +0 -0
  955. /package/dist/{type → cjs/type}/decorator/api/controller/properties/route/base-request-relations.type.d.ts +0 -0
  956. /package/dist/{type → cjs/type}/decorator/api/controller/properties/route/base-request-transformers.type.d.ts +0 -0
  957. /package/dist/{type → cjs/type}/decorator/api/controller/properties/route/base-response-transformers.type.d.ts +0 -0
  958. /package/dist/{type → cjs/type}/decorator/api/controller/properties/route/index.d.ts +0 -0
  959. /package/dist/{type → cjs/type}/decorator/api/controller/properties-route.type.d.ts +0 -0
  960. /package/dist/{type → cjs/type}/decorator/api/controller/transformer-config.type.d.ts +0 -0
  961. /package/dist/{type → cjs/type}/decorator/api/filter/allowed-types.type.d.ts +0 -0
  962. /package/dist/{type → cjs/type}/decorator/api/filter/extracted-allowed-types.type.d.ts +0 -0
  963. /package/dist/{type → cjs/type}/decorator/api/filter/field-selector.type.d.ts +0 -0
  964. /package/dist/{type → cjs/type}/decorator/api/filter/index.d.ts +0 -0
  965. /package/dist/{type → cjs/type}/decorator/api/filter/order-by.type.d.ts +0 -0
  966. /package/dist/{type → cjs/type}/decorator/api/function/create-properties.type.d.ts +0 -0
  967. /package/dist/{type → cjs/type}/decorator/api/function/delete-criteria.type.d.ts +0 -0
  968. /package/dist/{type → cjs/type}/decorator/api/function/get-list-properties-where.type.d.ts +0 -0
  969. /package/dist/{type → cjs/type}/decorator/api/function/get-list-properties.type.d.ts +0 -0
  970. /package/dist/{type → cjs/type}/decorator/api/function/get-many.properties.d.ts +0 -0
  971. /package/dist/{type → cjs/type}/decorator/api/function/get-properties.type.d.ts +0 -0
  972. /package/dist/{type → cjs/type}/decorator/api/function/index.d.ts +0 -0
  973. /package/dist/{type → cjs/type}/decorator/api/function/properties.type.d.ts +0 -0
  974. /package/dist/{type → cjs/type}/decorator/api/function/update-criteria.type.d.ts +0 -0
  975. /package/dist/{type → cjs/type}/decorator/api/function/update-properties.type.d.ts +0 -0
  976. /package/dist/{type → cjs/type}/decorator/api/index.d.ts +0 -0
  977. /package/dist/{type → cjs/type}/decorator/api/property/base/array/index.d.ts +0 -0
  978. /package/dist/{type → cjs/type}/decorator/api/property/base/array/optional-properties.type.d.ts +0 -0
  979. /package/dist/{type → cjs/type}/decorator/api/property/base/array/required-properties.type.d.ts +0 -0
  980. /package/dist/{type → cjs/type}/decorator/api/property/base/index.d.ts +0 -0
  981. /package/dist/{type → cjs/type}/decorator/api/property/base/properties.type.d.ts +0 -0
  982. /package/dist/{type → cjs/type}/decorator/api/property/base/request-properties.type.d.ts +0 -0
  983. /package/dist/{type → cjs/type}/decorator/api/property/base/response-properties.type.d.ts +0 -0
  984. /package/dist/{type → cjs/type}/decorator/api/property/date-properties.type.d.ts +0 -0
  985. /package/dist/{type → cjs/type}/decorator/api/property/describe/array/index.d.ts +0 -0
  986. /package/dist/{type → cjs/type}/decorator/api/property/describe/array/optional-properties.type.d.ts +0 -0
  987. /package/dist/{type → cjs/type}/decorator/api/property/describe/array/required-properties.type.d.ts +0 -0
  988. /package/dist/{type → cjs/type}/decorator/api/property/describe/base-properties.type.d.ts +0 -0
  989. /package/dist/{type → cjs/type}/decorator/api/property/describe/boolean-properties.type.d.ts +0 -0
  990. /package/dist/{type → cjs/type}/decorator/api/property/describe/date-properties.type.d.ts +0 -0
  991. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/body-properties.type.d.ts +0 -0
  992. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/guard-properties.type.d.ts +0 -0
  993. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/index.d.ts +0 -0
  994. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/properties.type.d.ts +0 -0
  995. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/query/get-list-properties.type.d.ts +0 -0
  996. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/query/index.d.ts +0 -0
  997. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/query/properties.type.d.ts +0 -0
  998. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/request-properties.type.d.ts +0 -0
  999. /package/dist/{type → cjs/type}/decorator/api/property/describe/dto/response-properties.type.d.ts +0 -0
  1000. /package/dist/{type → cjs/type}/decorator/api/property/describe/enum-properties.type.d.ts +0 -0
  1001. /package/dist/{type → cjs/type}/decorator/api/property/describe/example-properties.type.d.ts +0 -0
  1002. /package/dist/{type → cjs/type}/decorator/api/property/describe/index.d.ts +0 -0
  1003. /package/dist/{type → cjs/type}/decorator/api/property/describe/number-properties.type.d.ts +0 -0
  1004. /package/dist/{type → cjs/type}/decorator/api/property/describe/object-properties.type.d.ts +0 -0
  1005. /package/dist/{type → cjs/type}/decorator/api/property/describe/properties/base-dto-properties.type.d.ts +0 -0
  1006. /package/dist/{type → cjs/type}/decorator/api/property/describe/properties/base-properties.type.d.ts +0 -0
  1007. /package/dist/{type → cjs/type}/decorator/api/property/describe/properties/index.d.ts +0 -0
  1008. /package/dist/{type → cjs/type}/decorator/api/property/describe/properties.type.d.ts +0 -0
  1009. /package/dist/{type → cjs/type}/decorator/api/property/describe/relation-properties.type.d.ts +0 -0
  1010. /package/dist/{type → cjs/type}/decorator/api/property/describe/string-properties.type.d.ts +0 -0
  1011. /package/dist/{type → cjs/type}/decorator/api/property/describe/uuid-properties.type.d.ts +0 -0
  1012. /package/dist/{type → cjs/type}/decorator/api/property/enum-properties.type.d.ts +0 -0
  1013. /package/dist/{type → cjs/type}/decorator/api/property/index.d.ts +0 -0
  1014. /package/dist/{type → cjs/type}/decorator/api/property/number-properties.type.d.ts +0 -0
  1015. /package/dist/{type → cjs/type}/decorator/api/property/object-properties.type.d.ts +0 -0
  1016. /package/dist/{type → cjs/type}/decorator/api/property/string-properties.type.d.ts +0 -0
  1017. /package/dist/{type → cjs/type}/decorator/api/property/uuid-properties.type.d.ts +0 -0
  1018. /package/dist/{type → cjs/type}/decorator/api/service/index.d.ts +0 -0
  1019. /package/dist/{type → cjs/type}/decorator/api/service/keys.type.d.ts +0 -0
  1020. /package/dist/{type → cjs/type}/decorator/api/service/properties.type.d.ts +0 -0
  1021. /package/dist/{type → cjs/type}/decorator/index.d.ts +0 -0
  1022. /package/dist/{type → cjs/type}/factory/api/controller/index.d.ts +0 -0
  1023. /package/dist/{type → cjs/type}/factory/api/controller/method-map.type.d.ts +0 -0
  1024. /package/dist/{type → cjs/type}/factory/api/controller/method-name-map.type.d.ts +0 -0
  1025. /package/dist/{type → cjs/type}/factory/api/controller/method-name.type.d.ts +0 -0
  1026. /package/dist/{type → cjs/type}/factory/api/controller/target-methods.type.d.ts +0 -0
  1027. /package/dist/{type → cjs/type}/factory/api/index.d.ts +0 -0
  1028. /package/dist/{type → cjs/type}/factory/index.d.ts +0 -0
  1029. /package/dist/{type → cjs/type}/index.d.ts +0 -0
  1030. /package/dist/{type → cjs/type}/utility/api/controller/index.d.ts +0 -0
  1031. /package/dist/{type → cjs/type}/utility/api/controller/transform-data/data.type.d.ts +0 -0
  1032. /package/dist/{type → cjs/type}/utility/api/controller/transform-data/index.d.ts +0 -0
  1033. /package/dist/{type → cjs/type}/utility/api/controller/transform-data/is-validation-properties.type.d.ts +0 -0
  1034. /package/dist/{type → cjs/type}/utility/api/controller/transform-data/object-to-transform.type.d.ts +0 -0
  1035. /package/dist/{type → cjs/type}/utility/api/index.d.ts +0 -0
  1036. /package/dist/{type → cjs/type}/utility/capitalize-string.type.d.ts +0 -0
  1037. /package/dist/{type → cjs/type}/utility/date-keys.type.d.ts +0 -0
  1038. /package/dist/{type → cjs/type}/utility/date-range-keys.type.d.ts +0 -0
  1039. /package/dist/{type → cjs/type}/utility/dto/generate-allowed-combination.type.d.ts +0 -0
  1040. /package/dist/{type → cjs/type}/utility/dto/generate-is-allowed-combination.type.d.ts +0 -0
  1041. /package/dist/{type → cjs/type}/utility/dto/index.d.ts +0 -0
  1042. /package/dist/{type → cjs/type}/utility/filter-keys.type.d.ts +0 -0
  1043. /package/dist/{type → cjs/type}/utility/index.d.ts +0 -0
  1044. /package/dist/{type → cjs/type}/utility/non-date-keys.type.d.ts +0 -0
  1045. /package/dist/{utility → cjs/utility}/api/controller/apply-decorators.utility.d.ts +0 -0
  1046. /package/dist/{utility → cjs/utility}/api/controller/apply-metadata.utility.d.ts +0 -0
  1047. /package/dist/{utility → cjs/utility}/api/controller/get-list/index.d.ts +0 -0
  1048. /package/dist/{utility → cjs/utility}/api/controller/get-list/transform-filter.utility.d.ts +0 -0
  1049. /package/dist/{utility → cjs/utility}/api/controller/get-list/transform-operation.utility.d.ts +0 -0
  1050. /package/dist/{utility → cjs/utility}/api/controller/get-method-name.utility.d.ts +0 -0
  1051. /package/dist/{utility → cjs/utility}/api/controller/get-primary-column.utility.d.ts +0 -0
  1052. /package/dist/{utility → cjs/utility}/api/controller/handle-request-relations.utility.d.ts +0 -0
  1053. /package/dist/{utility → cjs/utility}/api/controller/index.d.ts +0 -0
  1054. /package/dist/{utility → cjs/utility}/api/controller/transform-data.utility.d.ts +0 -0
  1055. /package/dist/{utility → cjs/utility}/api/controller/validate-request.utility.d.ts +0 -0
  1056. /package/dist/{utility → cjs/utility}/api/controller/write-dto-swagger.utility.d.ts +0 -0
  1057. /package/dist/{utility → cjs/utility}/api/controller/write-method.utility.d.ts +0 -0
  1058. /package/dist/{utility → cjs/utility}/api/filter-order-by-from-entity.utility.d.ts +0 -0
  1059. /package/dist/{utility → cjs/utility}/api/index.d.ts +0 -0
  1060. /package/dist/{utility → cjs/utility}/camel-case-string.utility.d.ts +0 -0
  1061. /package/dist/{utility → cjs/utility}/capitalize-string.utility.d.ts +0 -0
  1062. /package/dist/{utility → cjs/utility}/dto/analize.utility.d.ts +0 -0
  1063. /package/dist/{utility → cjs/utility}/dto/build-decorator.utility.d.ts +0 -0
  1064. /package/dist/{utility → cjs/utility}/dto/generate-decorator.utility.d.ts +0 -0
  1065. /package/dist/{utility → cjs/utility}/dto/generate-exception.utility.d.ts +0 -0
  1066. /package/dist/{utility → cjs/utility}/dto/generate-filter-decorator.utility.d.ts +0 -0
  1067. /package/dist/{utility → cjs/utility}/dto/generate-get-list-response.utility.d.ts +0 -0
  1068. /package/dist/{utility → cjs/utility}/dto/generate-relation-response.utility.d.ts +0 -0
  1069. /package/dist/{utility → cjs/utility}/dto/generate.utility.d.ts +0 -0
  1070. /package/dist/{utility → cjs/utility}/dto/get-decorator-config.utility.d.ts +0 -0
  1071. /package/dist/{utility → cjs/utility}/dto/get-get-list-query-base-class.utility.d.ts +0 -0
  1072. /package/dist/{utility → cjs/utility}/dto/handle-date-property.utility.d.ts +0 -0
  1073. /package/dist/{utility → cjs/utility}/dto/index.d.ts +0 -0
  1074. /package/dist/{utility → cjs/utility}/dto/is-property-exposed-for-guard.utility.d.ts +0 -0
  1075. /package/dist/{utility → cjs/utility}/dto/is-property-should-be-marked.utility.d.ts +0 -0
  1076. /package/dist/{utility → cjs/utility}/dto/is-should-be-generated.utility.d.ts +0 -0
  1077. /package/dist/{utility → cjs/utility}/dto/validate-property-config.utility.d.ts +0 -0
  1078. /package/dist/{utility → cjs/utility}/error-exception.utility.d.ts +0 -0
  1079. /package/dist/{utility → cjs/utility}/error-string.utility.d.ts +0 -0
  1080. /package/dist/{utility → cjs/utility}/generate-entity-information.utility.d.ts +0 -0
  1081. /package/dist/{utility → cjs/utility}/get-entity-columns.utility.d.ts +0 -0
  1082. /package/dist/{utility → cjs/utility}/index.d.ts +0 -0
  1083. /package/dist/{utility → cjs/utility}/is-error-of-type.utility.d.ts +0 -0
  1084. /package/dist/{validator → cjs/validator}/all-or-none-of-listed-properties.validator.d.ts +0 -0
  1085. /package/dist/{validator → cjs/validator}/has-at-least-one-and-only-one-of-listed-properties.validator.d.ts +0 -0
  1086. /package/dist/{validator → cjs/validator}/has-at-least-one-of-listed-properties.validator.d.ts +0 -0
  1087. /package/dist/{validator → cjs/validator}/has-at-least-one-property.validator.d.ts +0 -0
  1088. /package/dist/{validator → cjs/validator}/has-paired-custom-suffixes-fields.validator.d.ts +0 -0
  1089. /package/dist/{validator → cjs/validator}/index.d.ts +0 -0
  1090. /package/dist/{validator → cjs/validator}/is-regular-expression.validator.d.ts +0 -0
  1091. /package/dist/{validator → cjs/validator}/only-one-of-listed-properties.validator.d.ts +0 -0
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/type/index.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/type/utility/api/controller/index.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"data.type.js","sourceRoot":"","sources":["../../../../../../src/type/utility/api/controller/transform-data/data.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/type/utility/api/controller/transform-data/index.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=is-validation-properties.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"is-validation-properties.type.js","sourceRoot":"","sources":["../../../../../../src/type/utility/api/controller/transform-data/is-validation-properties.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=object-to-transform.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"object-to-transform.type.js","sourceRoot":"","sources":["../../../../../../src/type/utility/api/controller/transform-data/object-to-transform.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/type/utility/api/index.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=capitalize-string.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"capitalize-string.type.js","sourceRoot":"","sources":["../../../src/type/utility/capitalize-string.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=date-keys.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"date-keys.type.js","sourceRoot":"","sources":["../../../src/type/utility/date-keys.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=date-range-keys.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"date-range-keys.type.js","sourceRoot":"","sources":["../../../src/type/utility/date-range-keys.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=generate-allowed-combination.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"generate-allowed-combination.type.js","sourceRoot":"","sources":["../../../../src/type/utility/dto/generate-allowed-combination.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=generate-is-allowed-combination.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"generate-is-allowed-combination.type.js","sourceRoot":"","sources":["../../../../src/type/utility/dto/generate-is-allowed-combination.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/type/utility/dto/index.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=filter-keys.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"filter-keys.type.js","sourceRoot":"","sources":["../../../src/type/utility/filter-keys.type.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/type/utility/index.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=non-date-keys.type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"non-date-keys.type.js","sourceRoot":"","sources":["../../../src/type/utility/non-date-keys.type.ts"],"names":[],"mappings":""}
@@ -1,66 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiControllerApplyDecorators = ApiControllerApplyDecorators;
4
- const common_1 = require("@nestjs/common");
5
- const method_decorator_1 = require("../../../decorator/api/method.decorator");
6
- const enum_1 = require("../../../enum");
7
- const generate_utility_1 = require("../../dto/generate.utility");
8
- const error_exception_utility_1 = require("../../error-exception.utility");
9
- function ApiControllerApplyDecorators(targetMethod, entity, properties, method, methodName, routeConfig, decorators) {
10
- const responseDto = routeConfig.dto?.response ?? (0, generate_utility_1.DtoGenerate)(properties.entity, entity, method, enum_1.EApiDtoType.RESPONSE, routeConfig.autoDto?.[enum_1.EApiDtoType.RESPONSE], routeConfig.authentication?.guard);
11
- const customDecorators = [...decorators];
12
- switch (method) {
13
- case enum_1.EApiRouteType.CREATE: {
14
- customDecorators.push((0, method_decorator_1.ApiMethod)({ action: enum_1.EApiAction.CREATE, authentication: routeConfig.authentication, entity: properties.entity, httpCode: common_1.HttpStatus.CREATED, method: common_1.RequestMethod.POST, path: "", responses: { hasInternalServerError: true, hasUnauthorized: true }, responseType: responseDto }));
15
- break;
16
- }
17
- case enum_1.EApiRouteType.DELETE: {
18
- customDecorators.push((0, method_decorator_1.ApiMethod)({ action: enum_1.EApiAction.DELETE, authentication: routeConfig.authentication, entity: properties.entity, httpCode: common_1.HttpStatus.NO_CONTENT, method: common_1.RequestMethod.DELETE, path: `:${String(entity.primaryKey?.name)}`, responses: { hasInternalServerError: true, hasNotFound: true, hasUnauthorized: true }, responseType: undefined }));
19
- break;
20
- }
21
- case enum_1.EApiRouteType.GET: {
22
- customDecorators.push((0, method_decorator_1.ApiMethod)({
23
- action: enum_1.EApiAction.FETCH,
24
- authentication: routeConfig.authentication,
25
- entity: properties.entity,
26
- httpCode: common_1.HttpStatus.OK,
27
- method: common_1.RequestMethod.GET,
28
- path: `:${String(entity.primaryKey?.name)}`,
29
- responses: { hasInternalServerError: true, hasNotFound: true, hasUnauthorized: true },
30
- responseType: responseDto,
31
- }));
32
- break;
33
- }
34
- case enum_1.EApiRouteType.GET_LIST: {
35
- customDecorators.push((0, method_decorator_1.ApiMethod)({
36
- action: enum_1.EApiAction.FETCH_LIST,
37
- authentication: routeConfig.authentication,
38
- entity: properties.entity,
39
- httpCode: common_1.HttpStatus.OK,
40
- method: common_1.RequestMethod.GET,
41
- path: "",
42
- responses: { hasInternalServerError: true, hasNotFound: true, hasUnauthorized: true },
43
- responseType: responseDto,
44
- }));
45
- break;
46
- }
47
- case enum_1.EApiRouteType.PARTIAL_UPDATE: {
48
- customDecorators.push((0, method_decorator_1.ApiMethod)({ action: enum_1.EApiAction.UPDATE, authentication: routeConfig.authentication, entity: properties.entity, httpCode: common_1.HttpStatus.OK, method: common_1.RequestMethod.PATCH, path: `:${String(entity.primaryKey?.name)}`, responses: { hasBadRequest: true, hasInternalServerError: true, hasNotFound: true, hasUnauthorized: true }, responseType: responseDto }));
49
- break;
50
- }
51
- case enum_1.EApiRouteType.UPDATE: {
52
- customDecorators.push((0, method_decorator_1.ApiMethod)({ action: enum_1.EApiAction.UPDATE, authentication: routeConfig.authentication, entity: properties.entity, httpCode: common_1.HttpStatus.OK, method: common_1.RequestMethod.PUT, path: `:${String(entity.primaryKey?.name)}`, responses: { hasBadRequest: true, hasInternalServerError: true, hasNotFound: true, hasUnauthorized: true }, responseType: responseDto }));
53
- break;
54
- }
55
- default: {
56
- throw (0, error_exception_utility_1.ErrorException)(`Method ${method} not implemented`);
57
- }
58
- }
59
- if (customDecorators.length > 0) {
60
- for (const decorator of customDecorators) {
61
- const descriptor = Reflect.getOwnPropertyDescriptor(targetMethod, methodName);
62
- decorator(targetMethod, methodName, descriptor ?? { value: targetMethod });
63
- }
64
- }
65
- }
66
- //# sourceMappingURL=apply-decorators.utility.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"apply-decorators.utility.js","sourceRoot":"","sources":["../../../../src/utility/api/controller/apply-decorators.utility.ts"],"names":[],"mappings":"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"}
@@ -1,45 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiControllerApplyMetadata = ApiControllerApplyMetadata;
4
- const common_1 = require("@nestjs/common");
5
- const constants_1 = require("@nestjs/common/constants");
6
- const route_paramtypes_enum_1 = require("@nestjs/common/enums/route-paramtypes.enum");
7
- const enum_1 = require("../../../enum");
8
- const dto_1 = require("../../dto");
9
- function ApiControllerApplyMetadata(target, targetPrototype, entity, properties, method, methodName, routeConfig) {
10
- let parameterIndex = 0;
11
- let routeArgumentsMetadata = {};
12
- const parameterTypes = [];
13
- const requestDto = routeConfig.dto?.request ?? (0, dto_1.DtoGenerate)(properties.entity, entity, method, enum_1.EApiDtoType.REQUEST, routeConfig.autoDto?.[enum_1.EApiDtoType.REQUEST], routeConfig.authentication?.guard);
14
- const queryDto = routeConfig.dto?.query ?? (0, dto_1.DtoGenerate)(properties.entity, entity, method, enum_1.EApiDtoType.QUERY, routeConfig.autoDto?.[enum_1.EApiDtoType.QUERY], routeConfig.authentication?.guard);
15
- const bodyDto = routeConfig.dto?.body ?? (0, dto_1.DtoGenerate)(properties.entity, entity, method, enum_1.EApiDtoType.BODY, routeConfig.autoDto?.[enum_1.EApiDtoType.BODY], routeConfig.authentication?.guard);
16
- if (requestDto) {
17
- routeArgumentsMetadata = (0, common_1.assignMetadata)(routeArgumentsMetadata, route_paramtypes_enum_1.RouteParamtypes.PARAM, parameterIndex);
18
- parameterTypes.push(requestDto);
19
- parameterIndex++;
20
- }
21
- if (queryDto) {
22
- routeArgumentsMetadata = (0, common_1.assignMetadata)(routeArgumentsMetadata, route_paramtypes_enum_1.RouteParamtypes.QUERY, parameterIndex);
23
- parameterTypes.push(queryDto);
24
- parameterIndex++;
25
- }
26
- if (bodyDto) {
27
- routeArgumentsMetadata = (0, common_1.assignMetadata)(routeArgumentsMetadata, route_paramtypes_enum_1.RouteParamtypes.BODY, parameterIndex);
28
- parameterTypes.push(bodyDto);
29
- parameterIndex++;
30
- }
31
- routeArgumentsMetadata = (0, common_1.assignMetadata)(routeArgumentsMetadata, route_paramtypes_enum_1.RouteParamtypes.HEADERS, parameterIndex);
32
- parameterTypes.push(Object);
33
- parameterIndex++;
34
- routeArgumentsMetadata = (0, common_1.assignMetadata)(routeArgumentsMetadata, route_paramtypes_enum_1.RouteParamtypes.IP, parameterIndex);
35
- parameterTypes.push(Object);
36
- parameterIndex++;
37
- if (routeConfig.authentication) {
38
- routeArgumentsMetadata = (0, common_1.assignMetadata)(routeArgumentsMetadata, route_paramtypes_enum_1.RouteParamtypes.REQUEST, parameterIndex);
39
- parameterTypes.push(Object);
40
- parameterIndex++;
41
- }
42
- Reflect.defineMetadata(constants_1.ROUTE_ARGS_METADATA, routeArgumentsMetadata, target, methodName);
43
- Reflect.defineMetadata(constants_1.PARAMTYPES_METADATA, parameterTypes, targetPrototype, methodName);
44
- }
45
- //# sourceMappingURL=apply-metadata.utility.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"apply-metadata.utility.js","sourceRoot":"","sources":["../../../../src/utility/api/controller/apply-metadata.utility.ts"],"names":[],"mappings":"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"}
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./transform-filter.utility"), exports);
18
- __exportStar(require("./transform-filter.utility"), exports);
19
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/utility/api/controller/get-list/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,6DAA2C"}
@@ -1,30 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiControllerGetListTransformFilter = ApiControllerGetListTransformFilter;
4
- const constant_1 = require("../../../../constant");
5
- const enum_1 = require("../../../../enum");
6
- const transform_operation_utility_1 = require("./transform-operation.utility");
7
- function ApiControllerGetListTransformFilter(query, entityMetadata) {
8
- const filter = {};
9
- for (const fullKey of Object.keys(query)) {
10
- if (!fullKey.includes("["))
11
- continue;
12
- const [key, field] = fullKey.split("[");
13
- const cleanField = field.replace("]", "");
14
- if (cleanField === "value" || cleanField === "values") {
15
- const operation = query[`${key}[operator]`];
16
- const value = query[fullKey];
17
- if (!operation || !key || value === undefined || value === null)
18
- continue;
19
- const column = entityMetadata.columns.find((column) => column.name == key);
20
- if (column && column.metadata[constant_1.PROPERTY_DESCRIBE_DECORATOR_API_CONSTANT.METADATA_PROPERTY_NAME].type === enum_1.EApiPropertyDescribeType.RELATION) {
21
- filter[key] = { id: (0, transform_operation_utility_1.ApiControllerGetListTransformOperation)(operation, value) };
22
- }
23
- else {
24
- filter[key] = (0, transform_operation_utility_1.ApiControllerGetListTransformOperation)(operation, value);
25
- }
26
- }
27
- }
28
- return filter;
29
- }
30
- //# sourceMappingURL=transform-filter.utility.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"transform-filter.utility.js","sourceRoot":"","sources":["../../../../../src/utility/api/controller/get-list/transform-filter.utility.ts"],"names":[],"mappings":";;AAUA,kFA+BC;AApCD,mDAAgF;AAChF,2CAA4D;AAE5D,+EAAuF;AAEvF,SAAgB,mCAAmC,CAAI,KAA0B,EAAE,cAA6B;IAC/G,MAAM,MAAM,GAAwB,EAAE,CAAC;IAEvC,KAAK,MAAM,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAC1C,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC;YAAE,SAAS;QAErC,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,GAAkB,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACvD,MAAM,UAAU,GAAW,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;QAElD,IAAI,UAAU,KAAK,OAAO,IAAI,UAAU,KAAK,QAAQ,EAAE,CAAC;YACvD,MAAM,SAAS,GAAqB,KAAK,CAAC,GAAG,GAAG,YAAY,CAAqB,CAAC;YAElF,MAAM,KAAK,GAAQ,KAAK,CAAC,OAAO,CAAC,CAAC;YAElC,IAAI,CAAC,SAAS,IAAI,CAAC,GAAG,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI;gBAAE,SAAS;YAE1E,MAAM,MAAM,GAAoC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,MAA2B,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,IAAI,GAAG,CAAC,CAAC;YAIjI,IAAI,MAAM,IAAI,MAAM,CAAC,QAAQ,CAAC,mDAAwC,CAAC,sBAAsB,CAAC,CAAC,IAAI,KAAK,+BAAwB,CAAC,QAAQ,EAAE,CAAC;gBAE3I,MAAM,CAAC,GAAc,CAAC,GAAG,EAAE,EAAE,EAAE,IAAA,oEAAsC,EAAC,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC;YAC3F,CAAC;iBAAM,CAAC;gBAEP,MAAM,CAAC,GAAc,CAAC,GAAG,IAAA,oEAAsC,EAAC,SAAS,EAAE,KAAK,CAAC,CAAC;YACnF,CAAC;QACF,CAAC;IACF,CAAC;IAED,OAAO,MAAM,CAAC;AACf,CAAC"}
@@ -1,80 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiControllerGetListTransformOperation = ApiControllerGetListTransformOperation;
4
- const index_1 = require("typeorm/index");
5
- const filter_operation_enum_1 = require("../../../../enum/filter-operation.enum");
6
- function ApiControllerGetListTransformOperation(operation, value) {
7
- switch (operation) {
8
- case filter_operation_enum_1.EFilterOperation.BETWEEN: {
9
- const [start, end] = Array.isArray(value) ? value : [null, null];
10
- return (0, index_1.Between)(start, end);
11
- }
12
- case filter_operation_enum_1.EFilterOperation.CONT: {
13
- return (0, index_1.Like)(`%${String(value)}%`);
14
- }
15
- case filter_operation_enum_1.EFilterOperation.CONTL: {
16
- return (0, index_1.ILike)(`%${String(value)}%`);
17
- }
18
- case filter_operation_enum_1.EFilterOperation.ENDS: {
19
- return (0, index_1.Like)(`%${String(value)}`);
20
- }
21
- case filter_operation_enum_1.EFilterOperation.ENDSL: {
22
- return (0, index_1.ILike)(`%${String(value)}`);
23
- }
24
- case filter_operation_enum_1.EFilterOperation.EQ: {
25
- return (0, index_1.Equal)(String(value));
26
- }
27
- case filter_operation_enum_1.EFilterOperation.EQL: {
28
- return (0, index_1.ILike)(String(value));
29
- }
30
- case filter_operation_enum_1.EFilterOperation.EXCL: {
31
- return (0, index_1.Not)((0, index_1.Like)(`%${String(value)}%`));
32
- }
33
- case filter_operation_enum_1.EFilterOperation.EXCLL: {
34
- return (0, index_1.Not)((0, index_1.ILike)(`%${String(value)}%`));
35
- }
36
- case filter_operation_enum_1.EFilterOperation.GT: {
37
- return (0, index_1.MoreThan)(String(value));
38
- }
39
- case filter_operation_enum_1.EFilterOperation.GTE: {
40
- return (0, index_1.MoreThanOrEqual)(String(value));
41
- }
42
- case filter_operation_enum_1.EFilterOperation.IN: {
43
- return (0, index_1.In)(Array.isArray(value) ? value : [value]);
44
- }
45
- case filter_operation_enum_1.EFilterOperation.INL: {
46
- return (0, index_1.In)(Array.isArray(value) ? value.map((v) => (0, index_1.ILike)(v)) : [(0, index_1.ILike)(value)]);
47
- }
48
- case filter_operation_enum_1.EFilterOperation.ISNULL: {
49
- return (0, index_1.IsNull)();
50
- }
51
- case filter_operation_enum_1.EFilterOperation.LT: {
52
- return (0, index_1.LessThan)(String(value));
53
- }
54
- case filter_operation_enum_1.EFilterOperation.LTE: {
55
- return (0, index_1.LessThanOrEqual)(String(value));
56
- }
57
- case filter_operation_enum_1.EFilterOperation.NE: {
58
- return (0, index_1.Not)(String(value));
59
- }
60
- case filter_operation_enum_1.EFilterOperation.NEL: {
61
- return (0, index_1.Not)((0, index_1.ILike)(String(value)));
62
- }
63
- case filter_operation_enum_1.EFilterOperation.NOTIN: {
64
- return (0, index_1.Not)((0, index_1.In)(Array.isArray(value) ? value : [value]));
65
- }
66
- case filter_operation_enum_1.EFilterOperation.NOTINL: {
67
- return (0, index_1.Not)((0, index_1.In)(Array.isArray(value) ? value.map((v) => (0, index_1.ILike)(v)) : [(0, index_1.ILike)(value)]));
68
- }
69
- case filter_operation_enum_1.EFilterOperation.NOTNULL: {
70
- return (0, index_1.Not)((0, index_1.IsNull)());
71
- }
72
- case filter_operation_enum_1.EFilterOperation.STARTS: {
73
- return (0, index_1.Like)(`${String(value)}%`);
74
- }
75
- case filter_operation_enum_1.EFilterOperation.STARTSL: {
76
- return (0, index_1.ILike)(`${String(value)}%`);
77
- }
78
- }
79
- }
80
- //# sourceMappingURL=transform-operation.utility.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"transform-operation.utility.js","sourceRoot":"","sources":["../../../../../src/utility/api/controller/get-list/transform-operation.utility.ts"],"names":[],"mappings":"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"}
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiControllerGetMethodName = ApiControllerGetMethodName;
4
- const constant_1 = require("../../../constant");
5
- function ApiControllerGetMethodName(method) {
6
- return `${constant_1.CONTROLLER_API_DECORATOR_CONSTANT.RESERVED_METHOD_PREFIX}${method}`;
7
- }
8
- //# sourceMappingURL=get-method-name.utility.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-method-name.utility.js","sourceRoot":"","sources":["../../../../src/utility/api/controller/get-method-name.utility.ts"],"names":[],"mappings":";;AAIA,gEAEC;AAJD,gDAAsE;AAEtE,SAAgB,0BAA0B,CAAC,MAAqB;IAC/D,OAAO,GAAG,4CAAiC,CAAC,sBAAsB,GAAG,MAAM,EAAE,CAAC;AAC/E,CAAC"}
@@ -1,14 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiControllerGetPrimaryColumn = ApiControllerGetPrimaryColumn;
4
- function ApiControllerGetPrimaryColumn(parameters, entityMetadata) {
5
- const primaryKeyColumn = entityMetadata.columns.find((column) => column.isPrimary);
6
- if (!primaryKeyColumn) {
7
- return undefined;
8
- }
9
- return {
10
- key: primaryKeyColumn.name,
11
- value: parameters[primaryKeyColumn.name],
12
- };
13
- }
14
- //# sourceMappingURL=get-primary-column.utility.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-primary-column.utility.js","sourceRoot":"","sources":["../../../../src/utility/api/controller/get-primary-column.utility.ts"],"names":[],"mappings":";;AAIA,sEAWC;AAXD,SAAgB,6BAA6B,CAAI,UAAuC,EAAE,cAA6B;IACtH,MAAM,gBAAgB,GAAoC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,MAA2B,EAAiC,EAAE,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;IAExK,IAAI,CAAC,gBAAgB,EAAE,CAAC;QACvB,OAAO,SAAS,CAAC;IAClB,CAAC;IAED,OAAO;QACN,GAAG,EAAE,gBAAgB,CAAC,IAAI;QAC1B,KAAK,EAAE,UAAU,CAAC,gBAAgB,CAAC,IAA4B,CAAW;KAC1E,CAAC;AACH,CAAC"}
@@ -1,54 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiControllerHandleRequestRelations = ApiControllerHandleRequestRelations;
4
- const common_1 = require("@nestjs/common");
5
- const class_1 = require("../../../class");
6
- const enum_1 = require("../../../enum");
7
- const error_exception_utility_1 = require("../../error-exception.utility");
8
- const get_entity_columns_utility_1 = require("../../get-entity-columns.utility");
9
- async function ApiControllerHandleRequestRelations(controllerMethod, properties, relationConfig, parameters) {
10
- if (relationConfig?.shouldLoadRelations) {
11
- for (const propertyName of (0, get_entity_columns_utility_1.GetEntityColumns)({ entity: properties.entity, shouldTakeRelationsOnly: true })) {
12
- if (parameters[propertyName] !== undefined && typeof propertyName === "string") {
13
- if (relationConfig.relationsLoadStrategy === enum_1.EApiControllerLoadRelationsStrategy.MANUAL && !relationConfig.relationsToLoad.includes(propertyName)) {
14
- continue;
15
- }
16
- let serviceName;
17
- if (relationConfig.servicesLoadStrategy === enum_1.EApiControllerLoadRelationsStrategy.MANUAL) {
18
- const manualServiceName = relationConfig.relationsServices[propertyName];
19
- if (manualServiceName === undefined) {
20
- throw (0, error_exception_utility_1.ErrorException)(`Service name not specified for property ${propertyName} in manual mode`);
21
- }
22
- serviceName = manualServiceName;
23
- }
24
- else {
25
- serviceName = `${propertyName}Service`;
26
- }
27
- if (!serviceName) {
28
- throw (0, error_exception_utility_1.ErrorException)(`Service name not specified for property ${propertyName}`);
29
- }
30
- const service = controllerMethod[serviceName];
31
- if (!service) {
32
- if ((relationConfig.servicesLoadStrategy === enum_1.EApiControllerLoadRelationsStrategy.AUTO && relationConfig.shouldForceAllServicesToBeSpecified) || relationConfig.servicesLoadStrategy === enum_1.EApiControllerLoadRelationsStrategy.MANUAL) {
33
- throw (0, error_exception_utility_1.ErrorException)(`Service ${serviceName} not found in controller`);
34
- }
35
- continue;
36
- }
37
- if (!(service instanceof class_1.ApiServiceBase)) {
38
- throw (0, error_exception_utility_1.ErrorException)(`Service ${serviceName} is not an instance of BaseApiService`);
39
- }
40
- const requestProperties = {
41
- where: {
42
- id: parameters[propertyName],
43
- },
44
- };
45
- const entity = (await service.get(requestProperties));
46
- if (!entity) {
47
- throw new common_1.BadRequestException(`Invalid ${String(propertyName)} ID`);
48
- }
49
- parameters[propertyName] = entity;
50
- }
51
- }
52
- }
53
- }
54
- //# sourceMappingURL=handle-request-relations.utility.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"handle-request-relations.utility.js","sourceRoot":"","sources":["../../../../src/utility/api/controller/handle-request-relations.utility.ts"],"names":[],"mappings":";;AAYA,kFAwDC;AA/DD,2CAAqD;AAErD,0CAAgD;AAChD,wCAAoE;AACpE,2EAA+D;AAC/D,iFAAoE;AAE7D,KAAK,UAAU,mCAAmC,CAAI,gBAAyC,EAAE,UAAuC,EAAE,cAAgF,EAAE,UAAuE;IACzS,IAAI,cAAc,EAAE,mBAAmB,EAAE,CAAC;QACzC,KAAK,MAAM,YAAY,IAAI,IAAA,6CAAgB,EAAI,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,EAAE,uBAAuB,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;YAE9G,IAAI,UAAU,CAAC,YAAY,CAAC,KAAK,SAAS,IAAI,OAAO,YAAY,KAAK,QAAQ,EAAE,CAAC;gBAChF,IAAI,cAAc,CAAC,qBAAqB,KAAK,0CAAmC,CAAC,MAAM,IAAI,CAAC,cAAc,CAAC,eAAe,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,CAAC;oBACnJ,SAAS;gBACV,CAAC;gBAED,IAAI,WAAiD,CAAC;gBAEtD,IAAI,cAAc,CAAC,oBAAoB,KAAK,0CAAmC,CAAC,MAAM,EAAE,CAAC;oBACxF,MAAM,iBAAiB,GAAY,cAAc,CAAC,iBAAiB,CAAC,YAAY,CAAC,CAAC;oBAElF,IAAI,iBAAiB,KAAK,SAAS,EAAE,CAAC;wBACrC,MAAM,IAAA,wCAAc,EAAC,2CAA2C,YAAY,iBAAiB,CAAC,CAAC;oBAChG,CAAC;oBACD,WAAW,GAAG,iBAA6C,CAAC;gBAC7D,CAAC;qBAAM,CAAC;oBACP,WAAW,GAAG,GAAG,YAAY,SAAqC,CAAC;gBACpE,CAAC;gBAED,IAAI,CAAC,WAAW,EAAE,CAAC;oBAClB,MAAM,IAAA,wCAAc,EAAC,2CAA2C,YAAY,EAAE,CAAC,CAAC;gBACjF,CAAC;gBAED,MAAM,OAAO,GAAY,gBAAgB,CAAC,WAAW,CAAC,CAAC;gBAEvD,IAAI,CAAC,OAAO,EAAE,CAAC;oBACd,IAAI,CAAC,cAAc,CAAC,oBAAoB,KAAK,0CAAmC,CAAC,IAAI,IAAI,cAAc,CAAC,mCAAmC,CAAC,IAAI,cAAc,CAAC,oBAAoB,KAAK,0CAAmC,CAAC,MAAM,EAAE,CAAC;wBACpO,MAAM,IAAA,wCAAc,EAAC,WAAW,WAAqB,0BAA0B,CAAC,CAAC;oBAClF,CAAC;oBACD,SAAS;gBACV,CAAC;gBAED,IAAI,CAAC,CAAC,OAAO,YAAY,sBAAc,CAAC,EAAE,CAAC;oBAC1C,MAAM,IAAA,wCAAc,EAAC,WAAW,WAAqB,uCAAuC,CAAC,CAAC;gBAC/F,CAAC;gBAED,MAAM,iBAAiB,GAAiC;oBACvD,KAAK,EAAE;wBACN,EAAE,EAAE,UAAU,CAAC,YAAY,CAAC;qBACL;iBACxB,CAAC;gBAEF,MAAM,MAAM,GAAwB,CAAC,MAAM,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAwB,CAAC;gBAElG,IAAI,CAAC,MAAM,EAAE,CAAC;oBACb,MAAM,IAAI,4BAAmB,CAAC,WAAW,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;gBACrE,CAAC;gBAGD,UAAU,CAAC,YAAY,CAAC,GAAG,MAAM,CAAC;YACnC,CAAC;QACF,CAAC;IACF,CAAC;AACF,CAAC"}
@@ -1,26 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./apply-decorators.utility"), exports);
18
- __exportStar(require("./apply-metadata.utility"), exports);
19
- __exportStar(require("./get-list"), exports);
20
- __exportStar(require("./get-method-name.utility"), exports);
21
- __exportStar(require("./handle-request-relations.utility"), exports);
22
- __exportStar(require("./transform-data.utility"), exports);
23
- __exportStar(require("./validate-request.utility"), exports);
24
- __exportStar(require("./write-dto-swagger.utility"), exports);
25
- __exportStar(require("./write-method.utility"), exports);
26
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/utility/api/controller/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,2DAAyC;AACzC,6CAA2B;AAC3B,4DAA0C;AAC1C,qEAAmD;AACnD,2DAAyC;AACzC,6DAA2C;AAC3C,8DAA4C;AAC5C,yDAAuC"}